zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

MySQL语法查找非空(NULL)的元素

mysql 元素 语法 查找 null 非空
2023-09-27 14:19:47 时间
# 不会报错,但不会有可用数据返回
select name from clase where address != null
# 这才是正确的SQL!
select name from clase where address IS NOT NULL