假如一張表中有如下的數據: 當使用select Count(*) from TableName表示獲取表中數據記錄的條數; 有時候可以通過select Count(列名) from TableName來等價於select Count(*) from TableName,但是下麵的情況就不會等價 結果 ...
假如一張表中有如下的數據:
當使用select Count(*) from TableName表示獲取表中數據記錄的條數;
有時候可以通過select Count(列名) from TableName來等價於select Count(*) from TableName,但是下麵的情況就不會等價
SELECT COUNT(*),COUNT(Name) FROM dbo.Members
結果是:
select Count(columnName) from TableName 表示查詢列名columnName不為null的記錄條數。