[MySQL] 테이블 다중조인

알파·2022년 11월 1일
0
post-custom-banner

여러 개의 테이블을 조인하는 구문!

아래와 같은 방식으로 작성 가능하다.

SELECT * FROM table1 AS A 
	LEFT JOIN table2 AS B ON A.idx = B.idx
    LEFT JOIN table3 AS C ON A.idx = C.idx;
profile
I am what I repeatedly do

0개의 댓글