例如:
select name from clase where address != null
这样的话查询语句不会报错,但是永远不会有可用的选项
SQL中要想实现这个功能有另外一个表达的方式
select name from clase where address IS NOT NULL
例如:
select name from clase where address != null
这样的话查询语句不会报错,但是永远不会有可用的选项
SQL中要想实现这个功能有另外一个表达的方式
select name from clase where address IS NOT NULL