当前位置: 代码迷 >> Oracle管理 >> oracle 别号
  详细解决方案

oracle 别号

热度:61   发布时间:2016-04-24 04:59:18.0
oracle 别名
select * from (select * from  (select * from table1 where col1=(select max (col1) from table1 ) ) as a  where col2 =(select max (col2) from a )) as b where col3 =(select max(col3) from b )
为什么里面的别名失效呢?
------最佳解决方案--------------------
你分层搞清楚啊 
------其他解决方案--------------------
只有外层能用相邻内层的别名。
------其他解决方案--------------------
sqlserver没要求所以没注意
  相关解决方案