select prof,max(tbirthday) from teacher group by prof;//得到了各职称最年轻的人员
select tname from teacher where tbirthday in(select prof,max(tbirthday) from teacher group by prof)
//报错,too many values
实在想不不出来怎么解决了,有没有大佬指点一下