select count(*) as '所有学生' from student
select count(*) from student,student as s,course as cwhere student.id = s.student_idand student.id = c.student_idand c.course_name = '计算机系'