Tags
- Tree
- Queue
- Vue
- 통계학
- M:N
- update
- Django
- outer join
- 백트래킹
- count
- 그리디
- DB
- 뷰
- regexp
- 완전검색
- drf
- 이진트리
- 트리
- delete
- SQL
- 쟝고
- Article & User
- create
- migrations
- N:1
- distinct
- 큐
- 스택
- ORM
- stack
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Notice
Recent Posts
Link
목록2024/04/18 (1)
데이터 분석 기술 블로그

1. shell_plus 실행 및 게시글 작성 python manage.py shell_plus # 게시글 생성 Article.objects.create(title='title', content='content') 2. 댓글 생성 # Comment 클래스의 인스턴스 comment 생성 comment = Comment() # 인스턴스 변수 저장 comment.content = 'first comment' # DB에 댓글 저장 comment.save() # 에러 발생 django.db.utils.IntegrityError: NOT NULL constraint failed: articles_comment.article_id # articles_comment 테이블의 ForeignKeyField, article..
SW/DB
2024. 4. 18. 09:00