써먹는 웹개발
[Mysql(Datagrip)] Incorrect table definition 해결방법 본문
728x90
반응형
에러
- Incorrect table definition; there can be only one auto column and it must be defined as a key.
해결방법 : 해당컬럼을 고유키 추가하면 됩니다.
쿼리문
1
2
3
|
alter table 테이블명
add constraint CONTENT_TBL_FILE_IDX01F
unique (FILE_ID);
|
cs |
728x90
반응형
'웹개발 > Database' 카테고리의 다른 글
[MariaDB] DB이관 (1) | 2024.01.26 |
---|---|
[Mysql] Could not load JDBC driver class [com.mysql.cj.jdbc.Driver] 해결방법 (1) | 2023.11.01 |
[MySQL] 데이터베이스에서 서브 쿼리를 사용한 경우에 "Every derived table must have its own alias" 에러가 발생하는 케이스 (0) | 2023.10.11 |
[MySQL] 일괄적으로 컬럼값의 데이터 변경하는 쿼리문 (0) | 2023.09.13 |
[MYSQL] 에러 번호 1175 Safe Update 해결방법 (0) | 2023.09.12 |
Comments