在这次的MySQL课内练习中,我们需要编写一个查询语句,来获取所有缺勤学生的姓名和缺勤次数。具体的SQL语句如下:SELECT student.student_id, student.name, count(absence.date) as absences FROM student, absence WHERE student.student_id = absence.student_id GROUP BY student.student_id; 这条语句可以帮助我们准确地获取到学生的缺勤情况。