Mysql中将一行数据移动(剪切)到另一个表

Mysql中将一行数据移动(剪切)到另一个表,第1张

写sql脚本实现,然后执行该脚本。

如test.sql 脚本编写如下:

insert into B select * from A where 条件=‘条件’

delete from A where 条件=‘条件’

然后执行该test.sql脚本

mysql -u test -p123456 <test.sql

mysql没有换行一说

你要是想实现,只能update

例如

update 表 set newcolum=18 where sid=1

update 表 set newcolum=null where sid=4

只能这样一个个 *** 作


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存