primary key 속성을 부여하지 않아 생기는 오류
ncorrect table definition; there can be only one auto column and it must be defined as a key
sql 해결
ALTER TABLE openapi_demo.openapi_url MODIFY COLUMN id int(11) auto_increment primary key NOT NULL;
sql 오류
ALTER TABLE openapi_demo.openapi_url MODIFY COLUMN id int(11) auto_increment primary key NOT NULL;
반응형
'공부 > Spring' 카테고리의 다른 글
[spring boot] Servlet.service() for servlet [dispatcherServlet] threw exception (0) | 2021.04.19 |
---|---|
hibernate_sequence' doesn't exist (0) | 2021.04.19 |
[SpringBoot] IntelliJ IDEA :: Cannot resolve class or package 'mysql' (0) | 2021.04.15 |
spring boot db 연결 (0) | 2021.04.15 |
이클립스 오류 - 프로젝트 폴더가 실행되지 않는경우 (0) | 2021.04.13 |