select id, dept_id, job_id, name, card_id, address, post_code, tel, phone, qq_num, email, sex, party, birthday, race, education, speciality, hobby, remark, create_date from employee
insert into employee
dept_id,
job_id,
name,
card_id,
address,
post_code,
tel,
phone,
qq_num,
email,
sex,
party,
birthday,
race,
education,
speciality,
hobby,
remark,
create_date,
#{deptId},
#{jobId},
#{name},
#{cardId},
#{address},
#{postCode},
#{tel},
#{phone},
#{qqNum},
#{email},
#{sex},
#{party},
#{birthday},
#{race},
#{education},
#{speciality},
#{hobby},
#{remark},
#{createDate},
update employee
dept_id = #{deptId},
job_id = #{jobId},
name = #{name},
card_id = #{cardId},
address = #{address},
post_code = #{postCode},
tel = #{tel},
phone = #{phone},
qq_num = #{qqNum},
email = #{email},
sex = #{sex},
party = #{party},
birthday = #{birthday},
race = #{race},
education = #{education},
speciality = #{speciality},
hobby = #{hobby},
remark = #{remark},
create_date = #{createDate},
where id = #{id}
delete from employee where id = #{id}
delete from employee where id in
#{id}