如何获取某一部分的学生姓名

时间:2014-09-28 02:50:12

标签: mysql sql database

如何使用section和year_level作为参数来获取学生的姓名?以下是我的数据库的ERD。

enter image description here

1 个答案:

答案 0 :(得分:0)

select u.fname
from users u
join students s on u.user_id = s.user_id
join sections sec on s.section_id = sec.section_id
where sec.section_id = 1
  and sec.year_level_section = 1

您甚至不需要加入关卡表。实际上,你根本不需要那张桌子。