Tags
- 이진트리
- Tree
- create
- migrations
- Queue
- Django
- M:N
- 그리디
- N:1
- ORM
- update
- DB
- SQL
- Vue
- 큐
- 완전검색
- 백트래킹
- drf
- 트리
- 쟝고
- Article & User
- delete
- outer join
- regexp
- count
- 스택
- stack
- distinct
- 뷰
- 통계학
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Notice
Recent Posts
Link
목록shell_plus (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