SQL 之witn as语法

with as 是临时视图的语法:
with qry_a as (select * from table_a )
select * from qry_a ;

原文地址:https://www.cnblogs.com/bile/p/3398797.html