Back End/트러블슈팅
[트러블슈팅] You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near (~~~)
DevPing9_
2024. 11. 27. 18:14
원인
- DB 예약어를 컬럼명으로 사용하여 JPA가 SQL 문을 제대로 작성하지 못함
해결
- 컬렴명 이스케이프
@Column(name="\"left\"")
728x90