참고 : https://docs.djangoproject.com/ko/4.2/topics/db/queries/
- posts = Post.objects.all() : post에 있는 모든걸 가져올거다.
filter_posts = Post.objects.filter(category='news')
-> where 조건이 들어갔다.
-> category가 news인 객체를 모두 가져와줘
obj = Post.objects.get(condition)
post = Post.objects.get(id=1)
post.title = '수정할 타이틀'
post.content = '수정할 내용'
post.save()
post = Post.objects.get(id=1)
post.delete()