SQL互换两列

SQL互换两列,第1张

update table1 set id=0 where id=12

update table1 set id=12 where id=21

update table1 set id=21 where id=0

这是查询的交换是交换的,还是生成一个两列交换了的新表若是生成新表:create table newtable(title,starttimie,endtime) as select title,endtime,starttimie from oldtable


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

原文地址: http://outofmemory.cn/sjk/6629012.html

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

发表评论

登录后才能评论

评论列表(0条)

保存