항상 사용할 때마다 헷갈리게 하는 부분이 조인이다.
기본적으로 조인은 중복에 대한 내용을 사용할때, 많이 사용한다.
그러나, RIGHT JOIN 도 생각보다 많이 사용되는 패턴이다.
간단히 정리된 내용을 메모해 둔다.
(default) 기본 JOIN의 은 INNER조인입니다.
INNER조인 = 중복된 값만 나타내는 것을 의미합니다.
LEFT 조인 = 왼쪽 테이블에 있는 항목에 맞춰서 값을 가져옴
( from A left join B on A.a=B.a /* A테이블 기준으로 B테이블 값가져온다*/ )
As per the documentation: FROM (Transact-SQL):
<join_type> ::=
[ { INNER | { { LEFT | RIGHT | FULL } [ OUTER ] } } [ <join_hint> ] ]
JOIN
The keyword OUTER
is marked as optional (enclosed in square brackets), and what this means in this case is that whether you specify it or not makes no difference. Note that while the other elements of the join clause is also marked as optional, leaving them out will of course make a difference.
For instance, the entire type-part of the JOIN
clause is optional, in which case the default is INNER
if you just specify JOIN
. In other words, this is legal: (기본 JOIN은 INNER 조인)
기본적인 조인 쿼리 방법
SELECT *
FROM A JOIN B ON A.X = B.Y
Here's a list of equivalent syntaxes:
A LEFT JOIN B A LEFT OUTER JOIN B
A RIGHT JOIN B A RIGHT OUTER JOIN B
A FULL JOIN B A FULL OUTER JOIN B
A INNER JOIN B A JOIN B
Also take a look at the answer I left on this other SO question: SQL left join vs multiple tables on FROM line?.
'DB관련 > SQL Server' 카테고리의 다른 글
MSSQL 특정 테이블 백업하기 (0) | 2017.01.26 |
---|---|
MSSQL 소숫점 자리수 맞추기 (0) | 2016.02.20 |
[error 메모] String or binary data would be truncated. (0) | 2016.02.17 |
MS SQL SERVER 버전별 + Version List (0) | 2015.12.30 |
Update sql bit field in database (0) | 2015.11.12 |
localhost로 사용하기 (0) | 2015.08.21 |
Convert a date 를 yyyymmdd format 형식으로 변경 (0) | 2015.07.31 |
Gender로 사용할 data type? (0) | 2015.07.31 |
(로그인하지 않으셔도 가능)