Implicit Join vs. Explicit Join
Implicit JoinSELECT *FROM tableA , tableBWHERE tableA.col = tableB.colfrom 절에는 table을 나열, where 절에 join condition을 작성Inner Join만 가능최근에는 잘 사용하지 않음 Explicit JoinSELECT * FROM tableAJOIN tableB ON tableA.col = tableB.colfrom 절에 명시적으로 Join 키워드를 이용하여 join table을 명시참고자료[DB] SQL JOIN의 모든 것: Implicit VS Explicit, Inner VS Outer, Equi, Natural, Cross Join과 예시까지!