Small Asteroid Blog

ncorrect table definition; there can be only one auto column and it must be defined as a key 본문

백엔드/Spring

ncorrect table definition; there can be only one auto column and it must be defined as a key

작은소행성☄️ 2021. 4. 19. 13:55
728x90

 

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;

 

 

728x90
반응형