判断字段为空
判断字段不为空
trim可以不写,直接写(column)
参考: https://www.cnblogs.com/kingboy-xin/p/10825085.html .
在sql中空值有NULL 和''的形式
当是NULL的时候用 IS NULL判断
当是''的时候用 =''判断
比如
select * from table where enddate IS NULL
select * from table where str=''
欢迎分享,转载请注明来源:内存溢出
判断字段为空
判断字段不为空
trim可以不写,直接写(column)
参考: https://www.cnblogs.com/kingboy-xin/p/10825085.html .
在sql中空值有NULL 和''的形式
当是NULL的时候用 IS NULL判断
当是''的时候用 =''判断
比如
select * from table where enddate IS NULL
select * from table where str=''
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)