oracle之set運算符和練習

--創建表
create table emp01
as
select * from employees
where department_id in (70,80)

--
--創建表
create table emp02
as
select * from employees
where department_id in (80,90)
--查詢 --並集
select * from employees
where department_id in (70,80)
union all
select * from employees
where department_id in (80,90)

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章