sql中with?
使用with子句可以讓子查詢重用相同的with查詢塊,通過select調用(with子句只能被select查詢塊引用),一般在with查詢用到多次情況下。在引用的select語句之前定義,同級只能定義with關鍵字只能使用一次,多個用逗號分割。with子句的返回結果存到用戶的臨時表空間中,只做一次查詢,反復使用,提高效率。
例1
with test_with as(select * from A) select * from B where B.id in(select id from test_with)
As 多用于字段 或表的別名 定義
例select 字段 as zd from 表 as a
下一篇公司郵箱怎么選