当前位置:Gxlcms > 数据库问题 > oracle--with as

oracle--with as

时间:2021-07-01 10:21:17 帮助过:4人阅读

别名 as(select * from table)

with 别名1 as(select * from table1),

   .............

   别名n as(select * from tablen)

 

示例:

with 别名 as(select * from table where ....)
select * from 别名

ps:使用with as最后的select返回不能不写啊!!!!

oracle--with as

标签:

人气教程排行