728x90
### The error occurred while setting parameters
### SQL: INSERT INTO Mom_info (want_act, want_age, kids_num, kids_age, payment, payment_ok,
si, gu, dong, schedule, schedule_ok, description, sitter_gender, interview_type, care_type
, openingdate, memberno) VALUES (?, ?, ?, ?, ?, ? ?, ?, ?, ?, ?, ?, ?,?,?,?, ?);
### Cause: java.sql.SQLException: Column count doesn't match value count at row 1
; bad SQL grammar [];
nested exception is java.sql.SQLException: Column count doesn't match value count at row 1
프로젝트 중 컬럼 추가로 인해서 mapper에 컬럼 추가 한 후에 나타난 에러
Column count doesn't match value count at row 1 이 에러는 sql문에 value에서 컴마(, )가 빠졌을 때 나는 에러이다
sql문 쓸 때 주의할것!!
728x90
'study > Project 🐾' 카테고리의 다른 글
[mariaDB] 대소문자 구분 설정 (0) | 2021.03.01 |
---|---|
[JQuery] Uncaught TypeError: $(...).on is not a function (0) | 2021.02.23 |
[Spring] org.apache.ibatis.exceptions.TooManyResultsException (0) | 2021.02.16 |
[Linux] CentOS에서 SpringLegacy 프로젝트 배포시 에러 (0) | 2021.02.15 |
[JSTL] cannot convert M of type class java.lang.string to class java.lang.long (0) | 2021.02.10 |