저장소이야기/MySql
[MySql] SQL Error [1064] [42000]: You have an error in your SQL syntax
사랑꾼이야
2020. 5. 25. 10:40
반응형
SQL Error [1064] [42000]: 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 ', |
단순 문법에러.
원인.
내용 중 right syntax to use near ', 20, 48, 96
해당 내용으로 쿼리 조회 해보니.(아래)
INSERT INTO ( ... ) VALUES ( ... , , 20, 48, 96, ... );
, 사이 빈 값 확인.
조치.
해당 필드는 decimal인데 빈 값으로 설정되어 있어서 에러 발생.
반응형