MariaDB에 데이터를 입력하려고 하는데 에러가 났다.
에러
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 \'order
원인은?
칼럼, 필드명에 order란 예약어를 썼기 때문이다.
힌트는 use near 다음에 나오는 단어에 있었다.
MariaDB Reserved Words: 마리아DB 예약어
MySQL Resverd Words: MySQL 예약어
해결책
칼럼명에 쓴 order를 다른 것으로 바꾸었다.