方法一:
insert id="insert" parameterType="Person" useGeneratedKeys="true" keyProperty="id"> insert into person(name,pswd) values(#{name},#{pswd})
方法二:
select LAST_INSERT_ID() insert into person(name,pswd) values(#{name},#{pswd})
本文共 292 字,大约阅读时间需要 1 分钟。
方法一:
insert id="insert" parameterType="Person" useGeneratedKeys="true" keyProperty="id"> insert into person(name,pswd) values(#{name},#{pswd})
方法二:
select LAST_INSERT_ID() insert into person(name,pswd) values(#{name},#{pswd})
转载地址:http://shtto.baihongyu.com/