如何用sql统计所有学生人数

2025-01-19 07:12:48
推荐回答(2个)
回答1:

select count(student_id) from student

回答2:

select count(*) from student