----------------------------------------------------------------------------------------------
@ SELECT title,name FROM topic LEFT JOIN user ON topic.author = user.id 해석
topic테이블과 user테이블을 왼쪽에 있는 topic테이블을 기준으로 JOIN한다.
topic테이블의 author와 user테이블의 id가 같게 정렬한다.
JOIN되어 만들어진 가상테이블에 collum이 title과 name인 것만 출력한다.
----------------------------------------------------------------------------------------------