sql语句查询指定列的count 如果没有显示0

2024-12-01 16:57:42
推荐回答(5个)
回答1:

select isnull(count(字段名),0) from table 与上面的回答是一样的。

回答2:

SELECT ISNULL(SUM(列名),0) FROM 表名 WHERE 条件

回答3:

select isnull(count(字段名),0) from

回答4:

select isnull(count(字段名),0) from 表名

回答5:

select isnull(count(字段名),0) from 表名 与上面的回答是一样的。