如何使用section和year_level作为参数来获取学生的姓名?以下是我的数据库的ERD。
答案 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
您甚至不需要加入关卡表。实际上,你根本不需要那张桌子。