删除:
delete 表名 where 列2 = '' and 列3 is null and 列4 is null
查询去除:
select * from 表名 where 列2 = '' and 列3 is null and 列4 is null
msyql有去掉两边 trim ,左侧 ltrim ,右侧 rtrim 的函数可以直接用
有时候不顶事可以用下面解决,去掉空格
如果excel导表不小心产生了空格
trim是mysql内置函数,可以去除字段首位空格
replace 内置函数,去除指定字符
char(9):水平制表符 (tab键 或者 \t)
char(10):换行键 (\n)
char(13):回车键 (Enter键)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)