[에러] globally_quoted_identifiers (예약어 문제) Syntax error in SQL statement ~ expected "identifier"
application.yml 파일에서 다음 설정을 추가했는데도 예약어 에러가 발생한 이유 spring.jpa.hibernate.globally_quoted_identifiers: true 에러 내용 nested exception is org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "insert into [*]user(no, user_id, name, password) values(1, 'test1', 'name1', 'test1111')"; expected "identifier"; 설명 데이터베이스에 따라 예약어를 식별자로 사용하는 경우가 있고, 사용하지 못하도록 하는 경우도 있습니다. 일반적으로 데이터베이스는 예약어를 따옴..