일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- String Functions and Date Operators
- 방화벽
- Oracle
- 티베로
- 윈도우
- 전자정부 표준프레임워크
- MySQL
- HTTP
- SVN
- Date and Time Function
- Tibero
- Date and Time Functions
- Sring Functions and Operators
- String Function and Operators
- String Functions and Operators
- 전자정부표준프레임워크
- Data and Time Functions
- 오라클
- Today
- Total
웹이야기
오라클 집합 연산자 본문
SET Operators 를 집합 연산자라고 하는 것 같다.
집합 연산자의 종류
1. UNION
- All distinct rows selected by either query
- 합집합, 결과값의 중복 제거
2. UNION ALL
- All rows selected by either query, including duplicates
- 합집합, 결과값의 중복 허용
3. INTERSECT
- All distinct rows selected by both queries
- 교집합, 결과값의 중복 제거
4. INTERSECT ALL
- All rows selected by both queries including duplicates
- 교집합, 결과값의 중복 허용
5. MINUS
- All distinct rows selected by ther first query but not the second
- 차집합, 결과값의 중복 제거
6. MINUS ALL
- All rows selected by the first query but not the second including duplicates
- 차집합, 결과값의 중복 허용
7. EXCEPT
- All distinct rows selected by the first query but not the second
- 차집합, 결과값의 중복 제거
8. EXCEPT ALL
- All rows selected by the first query but not the second including duplicates
- 차집합, 결과값의 중복 허용
* MINUS 와 EXCEPT , MINUS ALL 과 EXCEPT ALL 의 차이점은 아직 잘 모르겠다.
'D > ORACLE' 카테고리의 다른 글
오라클 hr 계정 unlock , hr 계정 lock 풀기 (0) | 2020.03.22 |
---|---|
오라클 연산자 (0) | 2020.03.22 |
오라클 연산자 우선순위 (0) | 2020.03.16 |
오라클 테이블 목록 조회 (0) | 2020.03.13 |
오라클 JDBC Driver / Oracle JDBC driver 다운로드 (0) | 2020.03.10 |