不使用连接或join的方式多表查询
Student:id,name,age
Class:id,name
通过一条sql语句查询 s.id,s.name,age,Class.name(不使用连接或join的方式多表查询)
[解决办法]
select
a.*,b.name
from
Student a
cross apply
(select Studentid,name from class where Studentid=a.id) as b
你class表里面至少得有Studentid吧。