SQL 刪除前100條 with as

2022-09-16 17:57:18 字數 2494 閱讀 1715

with cte as(select top 50* from tablename)

delete from cte

with as短語,也叫做子查詢部分(subquery factoring),可以讓你做很多事情,定義乙個sql片斷,該sql片斷會被整個sql語句所用到。有的時候,是為了讓sql語句的可讀性更高些,也有可能是在union all的不同部分,作為提供資料的部分。 

特別對於union all比較有用。因為union all的每個部分可能相同,但是如果每個部分都去執行一遍的話,則成本太高,所以可以使用with as短語,則只要執行一遍即可。如果with as短語所定義的表名被呼叫兩次以上,則優化器會自動將with as短語所獲取的資料放入乙個temp表裡,如果只是被呼叫一次,則不會。而提示materialize則是強制將with as短語裡的資料放入乙個全域性臨時表裡。很多查詢通過這種方法都可以提高速度。

下面是cte的語法:

[ with [ ,n ] ]

::=expression_name [ ( column_name [ ,n ] ) ]

as( cte_query_definition )

with

cr as

(select countryregioncode from person.countryregion where name like 'c%'

)select * from person.stateprovince where countryregioncode in (select * from cr)

其中cr是乙個公用表表示式,該表示式在使用上與表變數類似,只是sql server 2005在處理公用表表示式的方式上有所不同。

在使用cte時應注意如下幾點:

1. cte後面必須直接跟使用cte的sql語句(如select、insert、update等),否則,cte將失效。如下面的sql語句將無法正常使用cte:

with

cr as

(select countryregioncode from person.countryregion where name like 'c%'

)select * from person.countryregion -- 應將這條sql語句去掉

-- 使用cte的sql語句應緊跟在相關的cte後面 --

select * from person.stateprovince where countryregioncode in (select * from cr)

2. cte後面也可以跟其他的cte,但只能使用乙個with,多個cte中間用逗號(,)分隔,如下面的sql語句所示:

with

cte1 as

(select * from table1 where name like 'abc%'

),cte2 as

(select * from table2 where id > 20

),cte3 as

(select * from table3 where price < 100

)select a.* from cte1 a, cte2 b, cte3 c where a.id = b.id and a.id = c.id

3. 如果cte的表示式名稱與某個資料表或檢視重名,則緊跟在該cte後面的sql語句使用的仍然是cte,當然,後面的sql語句使用的就是資料表或檢視了,如下面的sql語句所示:

-- table1是乙個實際存在的表

with

table1 as

(select * from persons where age < 30

)select * from table1 -- 使用了名為table1的公共表表示式

select * from table1 -- 使用了名為table1的資料表

4. cte 可以引用自身,也可以引用在同一 with 子句中預先定義的 cte。不允許前向引用。

5. 不能在 cte_query_definition 中使用以下子句:

(1)compute 或 compute by

(2)order by(除非指定了 top 子句)

(3)into 

(4)帶有查詢提示的 option 子句

(5)for xml

(6)for browse

6. 如果將 cte 用在屬於批處理的一部分的語句中,那麼在它之前的語句必須以分號結尾,如下面的sql所示:

declare @s nvarchar(3)

set @s = 'c%'

; -- 必須加分號

with

t_tree as

(select countryregioncode from person.countryregion where name like @s

)select * from person.stateprovince where countryregioncode in (select * from t_tree)

cte除了可以簡化巢狀sql語句外,還可以進行遞迴呼叫,

Oracle查詢前100萬條資料

oracle不支援select top語句,在oracle中經常是用order by跟rownum select 列名1 列名n from select 列名1 列名n from 表名 order by 列名1 where rownum n 抽出記錄數 order by rownum asc 如 按...

sed命令刪除前100行裡匹配的行

sed是linux系統裡非常簡單實用的文字處理小工具,配合正規表示式以及find grep等基本命令,可以非常快速實現一些日常的文字處理。舉幾個簡單的例子吧 1.將當前目錄下所有txt檔案中abc替換為xyz sed i s abc xyz g txt 解釋一下,這裡 i引數是直接修改輸入檔案,s ...

Sql 查詢每個組的前3條記錄

表 product 列 prdid,prdname,userid 乙個userid有多個product的資訊 查詢每個user的3種產品的資訊 select from product a where a.prdid in select top 3 prdid from product where u...