MySQL의 서브쿼리에 대해 연습겸 실험을 진행 해봣다. 실험 예제 위의 그림과 같이 데이터베이스에 테이블들을 생성 및 관계를 형성해주었다. category의 name이 'homework'인 content의 title, created_at 그리고 user의 name을 찾기위한 쿼리를 작성하려고한다. 1. Join 활용 select user.name as username, content.title, content.created_at from user inner join content on user.id = content.userid inner join content_category on content.id = content_category.contentid inner join category on cont..