摘要:
2010年12月23日 12:55:46 with 查询的使用with 查询的作用:就是把一大堆重复用到的SQL语句放在with as 里面,取一个别名,后面的查询就可以用它这样对于大批量的SQL语句起到一个优化的作用create table t2(id int); create table t3(id int); insert into t2 values(1); insert into t2 values(2); insert into t3 values(3); commit; with sql1 as (select * from t2), sql2 as (select * from 阅读全文