简答题

select count(*) from student和select count(id) from student之间的区别是什么?

正确答案

select count(*)统计所有学生的记录个数,包括空记录。
select count(Id)统计所有学生的记录个数,不包括null记录。

答案解析