问答题

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

【参考答案】

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

(↓↓↓ 点击下方‘点击查看答案’看完整答案 ↓↓↓)