展开全部
怎么批量删除mysql数据库表里字段为空的内容
清空全部数据,不写日志,不可恢复,速度极快truncate
table
表名;--
清空全部数据,写日志,数据可恢复,速度慢delete
from
表名
清空全部数据,不写日志,不可恢复,速度极快truncate
table
表名;--
清空全部数据,写日志,数据可恢复,速度慢delete
from
表名
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
假设要删除A表里B字段为空的数据
delete A where len(b)=0
delete A where len(b)=0
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
假设表名为a
字段名为s
语句为:delete
from
a
where
(s='
'
||
s=null)
字段名为s
语句为:delete
from
a
where
(s='
'
||
s=null)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
delete
from
A
where
isnull(B,'')=''
from
A
where
isnull(B,'')=''
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询