我想在添加 一条数据的时候,同时更新一条数据。或者说,我想添加一条数据时,将id值赋值给另一个字段。
不用更新 语句去更新另一个字段,只想在添加时,同时用sql语句来将id值,赋值给另一个字段
我在用Mybatis时,用的是<insert 标签。 不知道怎样做嘞?。。
下面这样做的语句,肯定是错的,但是,还是找不到解决的办法或思路哈
<insert id="insertCommentTargetId" parameterType="java.lang.Integer">
insert into comment_global values ();
update comment_global set comment_target_id = (select max(id) from comment_global)
</insert>