# 不会报错,但不会有可用数据返回
select name from clase where address != null
# 这才是正确的SQL!
select name from clase where address IS NOT NULL
MySQL语法查找非空(NULL)的元素
阅读 67
2022-05-10
# 不会报错,但不会有可用数据返回
select name from clase where address != null
# 这才是正确的SQL!
select name from clase where address IS NOT NULL
相关推荐
精彩评论(0)