1) sqlite3 실행하기
> ./manage.py dbshell
2) 주요 명령어
#테이블 보기
sqlite> .tables
# users 테이블 보기
sqlite> select * from users;
# 유저별로 남긴 코멘트 조회 (join문)
sqlite> select users.naeme, comments.content
from users join comments
on comments.author_id = users.id;
# 유저ID 1번이 남긴 코멘트 조회
sqlite> select users.naeme, comments.content
from users join comments
on comments.author_id = users.id
where users.id=1;
추가로 참고할 내용 : https://coding-factory.tistory.com/81