반응형
SMALL
create table "user"(
id identity not null,
first_name varchar(255) not null,
last_name varchar(255) not null,
email varchar(255) not null,
password varchar(255) not null
);
https://velog.io/@gwichanlee/JdbcSQLSyntaxErrorException-%ED%95%B4%EA%B2%B0
table 명에 "user"로 묶어 주니 에러가 해결.
https://www.baeldung.com/spring-boot-h2-jdbcsqlsyntaxerrorexception-expected-identifier
반응형
LIST
'Programming > SpringBoot' 카테고리의 다른 글
build.gradle에 라이브러리 추가후 Java Build Path가 빠지는 현상 발생[미해결] (0) | 2023.08.26 |
---|---|
spring-boot-starter-validation (0) | 2023.08.26 |
[스프링부트 회원 프로젝트] [코딩레시피 1/17] (0) | 2023.07.18 |
Spring Boot Kotlin Multi Module로 구성해보는 헥사고날 아키텍처 (0) | 2023.07.17 |
[에러 해결] Parameter 0 of constructor in {###} required a bean of type '{###}' that could not be found. (0) | 2023.07.17 |