我正在尝试对空值进行计数,但是它不能对空值进行计数。
表格示例:
Country Id Id_typ Info
Us 123 NULL Testing
Us 124 NULL Testing
Us 125 Bob testing
这是我计算空值的脚本
select count(id_typ) from combined_a where id_typ= 'NULL' limit 1
我试过了
select count(id_typ) from table_a where id_typ is null limit 1
但是,当我将条件更改为search id\u typ=bob时,它能够进行计数。我不确定我做错了什么,有什么建议吗?
1条答案
按热度按时间06odsfpq1#
你需要
is null
以及count(*)
: