🌳 에러 코드
"could not extract ResultSet; SQL [n/a]; nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet",
🌳 해결 방법
🌾 원인 :쿼리 문자열의 각 부분이 연결되어 있지 않아서 문법 오류가 발생
🌾 해결 방법 :
"FROM reservation AS A "와
"SELECT A.reservationDate AS reservationDate "
의 문자열 간 공백을 추가하고 각 부분을 연결 (\n 추가)
Before
After
'코딩 에러 및 질문' 카테고리의 다른 글
월별 성별에 따른 조회 JPA - nativeQuery (0) | 2023.09.08 |
---|---|
Mysql - (년도 + 월) 합쳐서 조회하기 (0) | 2023.09.07 |
return; 무한루프 (0) | 2023.09.07 |
could not execute statement; nested exception is org.hibernate.exception.GenericJDBCException: could not execute statement (0) | 2023.09.04 |
Cannot drop column : needed in a foreign key constraint (0) | 2023.09.02 |