java对mysql数据库加减

java对mysql数据库加减,第1张

代码如下:

// 加

sql.executeUpdate("update classroom set seats='" + (cb.getSeats() + 1) + "' where cno="+cb.getCno()); // 减

sql.executeUpdate("update classroom set seats='" + (cb.getSeats() - 1) + "' where cno="+cb.getCno());

update语句可以搞定,但是需要join配合,

例如,有个表如下,需要将id =999对应的name改为id=1000对应的name

可以这么做

1

update person t1 join (select id,name from person where id = 1000 limit 1 ) as t2 on t1.id <= t2.id set t1.name = t2.name where t1.id = 999 and t2.id = 1000

修改后的结果

这样就可以了。。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7976346.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-12
下一篇 2023-04-12

发表评论

登录后才能评论

评论列表(0条)

保存