我似乎记得(在 Oracle 上) utteringselect count(*) from any_table和select count(any_non_null_column) from any_table.
select count(*) from any_table
select count(any_non_null_column) from any_table
如果有的话,这两个陈述之间有什么区别?
null oracle aggregate count
aggregate ×1
count ×1
null ×1
oracle ×1