首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

是不是无法将使用外连接的结果集作为子查询的对象

2012-12-23 
是否无法将使用外连接的结果集作为子查询的对象是否无法将使用外连接的结果集作为子查询的对象如:select *

是否无法将使用外连接的结果集作为子查询的对象
是否无法将使用外连接的结果集作为子查询的对象

如:
select * from (select * from t1 a left join t2 b on a.id=b.id)

[最优解释]
select * from (select * from t1 a left join t2 b on a.id=b.id) as t --加个别名

热点排行