MYSQL 判断NULL 或者空的字符串(‘‘)

1、判断不能为null或者不能为空字符串:
使用trim()即可:

TRIM(Field)  !=  ''

2、判断为null或者为空字符串:
必须俩者结合:

  
或者
(Field is null or Field = '')

你可能感兴趣的:(mysql,数据库,database)