我正在使用mysql。
我有两张桌子
Students:
stud_num
prof1
prof2
Prof
prof_id
first_name
last_name
Prof Id 是学生表中的外键。
我想将 stud_num 和 prof1 作为名字和姓氏,将 prof2 作为名字和姓氏
这是我的查询不起作用:
select s.stud_num, CONCAT(p.first_name, " ", p.last_name) as PROF1, CONCAT(p.first_name, " ", p.last_name) as PROF2
from students s
inner join prof p
on s.prof1 = p.prof
and s.prof2 = p.prof
这不起作用。是否有捷径可寻???