프로그래밍/PHP

MySQL 3개 테이블 조인 SAMPLE

개발왕자 2020. 7. 10. 13:31
반응형

SELECT * FROM Country

    JOIN CountryLanguage ON Country.Code=CountryLanguage.CountryCode

    JOIN City ON Country.Code=City.CountryCode

 

[출처] blog.naver.com/my0biho/220411576884

반응형