반응형
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인데 빈 값으로 설정되어 있어서 에러 발생.
반응형
'저장소이야기 > MySql' 카테고리의 다른 글
[MySql] SQL Error [1248] [42000]: Every derived table must have its own alias (0) | 2020.06.03 |
---|---|
[MySql] CASE 구문 (0) | 2020.06.03 |
[MySql] CONCAT과 CONCAT_WS 문자열 합치기 (0) | 2020.05.28 |
[MySql] SQL Error [1305] [42000]: FUNCTION TO_CHAR does not exist (0) | 2020.05.27 |
[MySql] SQL Error [1054] [42S22]: Unknown column 'SYSDATE' in 'field list' (0) | 2020.05.25 |
댓글