Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何从表中选择所有项目,比如说书籍(表名),其中类别(字段)不为空。
我用过 where = 运算符 ?? 有没有办法
select * from books where category is not null
比较某些东西null会导致unknown. 这就是为什么您必须将is运算符与nulls 一起使用。
null
unknown
is