250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mro()
- HTML
- shutil
- MySqlDB
- View
- fnmatch
- 오버라이딩
- items()
- glob
- JS
- shuffle()
- randrange()
- zipfile
- remove()
- 파이썬
- count()
- __getitem__
- fileinput
- CSS
- __sub__
- discard()
- locals()
- __annotations__
- inplace()
- decode()
- MySQL
- Database
- __len__
- node.js
- choice()
Archives
- Today
- Total
목록FOREIGN KEY (1)
흰둥이는 코드를 짤 때 짖어 (왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!)

member 테이블 select * from member; profile 테이블 생성 create table profile( userid varchar(20) not null, height double, weight double, blood varchar(10), mbti varchar(10), foreign key(userid) references member(userid) ); profile의 userid를 member의 userid와 외래키로 묶었다. insert into profile values('ryuzy', 180, 70, 'AAA', 'ISTP'); # Error Code: 1452. Cannot add or update a child row: a foreign key constraint ..
MySQL
2023. 3. 20. 15:43