with t1 as (select Id from dbo.[ECR_ProvidentPayment] order by [Id] offset 1 rows fetch next 10 rows only) select t1.* from t1; with a as (select Id from dbo.[ECR_ProvidentPayment] where ECRID=10868) select * from dbo.[ECR_ProvidentPayment_History] where ECR_ProvidentPayment_Id in(select a.* from a) 什么是with 1、WITH AS短语,也叫做子查询部分(subquery factoring),可以定义一个SQL片断,该SQL片断会被整个SQL语句用到。可以使SQL语句的可读性更高,也可以在UNION ALL的不同部分,作为提供数据的部分。 2、对于UNION ALL,使用WITH AS定义了一个UNION ALL语句,当该片断被调用2次以上,优化器会自动将该WITH AS短语所获取的数据放入一个Temp表中。而提示meterialize则是强制将WITH AS短语的数据放入一个全局临时表中。很多查询通过该方式都可以提高速度。 语法 with as 在sql server 2005以后的版本可以使用(MySQL8.0及以后的版本可以使用该函数),称之为公用表表达式(CTE)。使用with as 可以提高SQL语句的可维护性,特别是涉及多个嵌套查询时。同时,同时,CTE要比表变量的效率高。 示例 WITH cte(f1, f2) AS (SELECT 1, 2 UNION ALL SELECT 3,4) SELECT * FROM cte;
标签:UNION,sqlserver,ProvidentPayment,ECR,SQL,Id,select From: https://www.cnblogs.com/hofmann/p/16640177.html