springboot中@update使⽤
sql中update什么意思springboot中@update使⽤
@update使⽤的两种情况
1.第⼀种情况
update操作传递⼀个参数
@Update(“update user set sex = “男” where id=#{id}”)
public int update(int id);
这种情况只有⼀个参数,参数id可以不⽤使⽤@param
2.第⼆种情况
update操作传递两个及以上参数
@Update(“update user set name =#{name} where id=#{id}”)
public int update(@Param(“id”) int id,@Param(“name”) String name);
这种情况有两个参数,需要使⽤@Param进⾏对两个参数进⾏区分,否则,在操作数据表时会报sql语句有注⼊风险。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。