mybatis 一次执行多条sql

1、配制文件中加入

&allowMultiQueries=true

spring.datasource.url=jdbc:mysql://localhost:3306/db?serverTimezone=UTC
&useUnicode=true&characterEncoding=utf-8&useSSL=true&allowMultiQueries=true

2、二条语句之间加入;就可以了。

@Update("UPDATE JoinInfo set isdefault=0 where id>0;UPDATE JoinInfo 
set isdefault=#{isdefault},modifyDate=now() WHERE id = #{id}
")
void update(JoinInfo joinInfo);

其实最主要就是配制文件中要加一个关键字,不然会执行报错。

 

mybatis 一次执行多条sql

上一篇:mysql之我的第一个jdbc程序


下一篇:MySQL 事务隔离级别