728x90
반응형
java.sql.SQLSyntaxErrorException: FUNCTION ~ does not exist. Check the 'Function Name Parsing and Resolution' section in the Reference Manual
쿼리에 이상이 없는데,, ? 생각하지말고 공백 체크 해보고
실제로 쿼리 던져보기.
❌
SELECT COUNT (mmd_seq) AS totalCnt
FROM ML_MODEL_DICTIONARY
WHERE mmi_seq = 12
⭕
SELECT COUNT(mmd_seq) AS totalCnt
FROM ML_MODEL_DICTIONARY
WHERE mmi_seq = 12
728x90
반응형
'개발중 > troubleshooting' 카테고리의 다른 글
Request header is too large 에러 해결 (0) | 2021.09.06 |
---|---|
mybatis 에러 해결 : java.lang.IndexOutOfBoundsException (3) | 2021.08.04 |
java.lang.NumberFormatException: For input string: "" (0) | 2021.06.01 |
mybatis vo null 처리 - NullPointerException (0) | 2021.06.01 |
org.mybatis.spring.MyBatisSystemException: nested exception is 에러 (0) | 2021.05.25 |