DB/MySQL (2) 썸네일형 리스트형 참조키 설정 오류(Cannot add or update a child row) 해결방법 the FOREIGN KEY clause is specified in the child table. ... Cannot add or update a child row: a foreign key constraint fails essentially means that, you are trying to add a row to your Ordrelinje table for which no matching row (OrderID) is present in Ordre table. You must first insert the row to your Ordre table.2 foreign key에 값을 삽입하거나 수정하려할 때, fk가 참조하는 primary key 외의 값을 사용하면 생기는 오류이다. 위 오.. [DB]Import data from Excel into MySQL using Python 1. Create table on my_schema database 2. 데이터 삽입(INSERT) Cursor Object 가져오기: cursor = db.cursor() SQL 실행하기: cursor.execute(SQL) 실행 mysql 서버에 확정 반영하기: db.commit() app.py 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 tumbler = xlrd.open_workbook("data/Tumbler_Factory_revision.xlsx") sheet = tumbler.sheet_by_name("ANALYSIS") database = MySQLdb.connect (host="localhost", use.. 이전 1 다음