mysql清除内容是null或者是字符串null的数据

mysql清除内容是null或者是字符串null的数据,第1张

DELETE FROM table_name WHERE some_column=null

table_name替换为表名。

some_column替换为所要清楚数据的列。

删除还是替换

删除

delete from table where column is null

替换

update table

set column=''

where column is null


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存