반응형
-
UNION 연산자는 오른쪽, 왼쪽 쿼리에 있는 모든 고유한 값을 리턴한다. UNION ALL은 중복값도 포함시켜 리턴한다. UNION operator returns all the unique rows from both the left and the right query. UNION ALL includes the duplicates as well
-
INTERSECT 연산자는 왼쪽과 오른쪽에서 공통의 고유한 행만 보여준다. 교차로의 INTERSECTION 을 떠올리면 쉽겠다. INTERSECT operator retrieves the common unique rows from both the left and the right query
-
EXCEPT 연산자는 오른쪽에 없는 왼쪽에서만 고유한 값을 결과로 가져온다. EXCEPT operator returns unique rows from the left query that aren't in the right query's results
반응형
'Database > SQL Server' 카테고리의 다른 글
SQL Server - DDL(Data Definition Language) 트리거 trigger에 대해 (0) | 2020.12.12 |
---|---|
SQL Server - Cross apply & Outer apply in SQL Server (0) | 2020.12.12 |
SQL Server - Intersect 연산자(operator) (0) | 2020.12.11 |
SQL Server - Except 연산자(operator) (0) | 2020.12.11 |
SQL Server - 데이터베이스 교착 상태 Database Deadlock (0) | 2020.12.11 |