본문 바로가기
기록/Python

[Python] 파이썬 SQL ProgrammingError 해결

by 자임 2022. 8. 8.

오류: 
ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near

해당 소스코드:
sql = 'replace INTO test(GROUP, QUESTION, ANSWER) VALUES(%s, %s, %s)'

원인:
컬럼명이 GROUP 으로 되어있어서

해결:
GROUP -> GROUP_NM 으로 변경