여러 개의 테이블을 조인하는 구문!
아래와 같은 방식으로 작성 가능하다.
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;