SV_SCHOOL
NAME,
ADDRESS,
PRESIDENT,
PHONE,
REMARK,
ID
#{NAME},
#{ADDRESS},
#{PRESIDENT},
#{PHONE},
#{REMARK},
#{ID}
insert into
(
NAME,
ADDRESS,
PRESIDENT,
PHONE,
REMARK
) values (
#{NAME},
#{ADDRESS},
#{PRESIDENT},
#{PHONE},
#{REMARK}
)
delete from
where
ID = #{ID}
update
set
NAME = #{NAME},
ADDRESS = #{ADDRESS},
PRESIDENT = #{PRESIDENT},
PHONE = #{PHONE},
REMARK = #{REMARK},
ID = ID
where
ID = #{ID}
delete from
where
ID in
#{item}