Oracle 查询
摘要:
-- 集合操作--union 并集 苏偶有内容都查询,重复的显示一次select * from emp union select * from emp20;--union all 并集 所有内容都显示 包括重复select * from emp union all select * from emp20;--intersect 交集select * from emp intersect select * from emp20;--minus 差集 只显示对方没有的 与顺序有关select * from emp minus select * from emp20;--子查询--单行子查询 s.. 阅读全文
posted @ 2013-01-24 15:35 AlexGeng 阅读(988) 评论(0) 推荐(1) 编辑