上一页 1 ··· 336 337 338 339 340 341 342 343 344 ··· 493 下一页
  2013年11月3日
摘要: 集合操作符UNION/UNION ALLINTERSECTMINUSUnion All不排序,不去重,其余均升序且去重。create table e1 as select * from emp where deptno in (10,20);create table e2 as select * from emp where deptno in (20,30);select * from e1 union select * from e2 order by 8select * from e1 union all select * from e2 order by 8select * from 阅读全文
posted @ 2013-11-03 11:55 逝者如斯(乎) 阅读(310) 评论(0) 推荐(0)
上一页 1 ··· 336 337 338 339 340 341 342 343 344 ··· 493 下一页