Primary Key 추가1 [MariaDB] 제약조건 수정 요약본 / Primary Key 추가, 삭제/ not null 설정, 해제 / unique 설정, 해제 / foregin key 설정, 해제 / 기존 생성된 테이블에 제약조건(Primary key 추가, 삭제 등) 추가할 때 사용 Primary Key 추가(괄호 주의) alter table 테이블명 add constraint primary key (컬럼명); Primary Key 삭제(괄호 주의, not null 별도 해제 필요) alter table 테이블명 drop primary key; not null 설정(자료형 명시 중요) alter table 테이블명 modify 컬럼명 자료형() not null; not null 해제(자료형 명시 중요) alter table 테이블명 modify 컬럼명 자료형(); unique 설정(괄호 주의) alter table 테이블명 add constraint unique (컬럼명); unique 해제 alt.. 2022. 10. 19. 이전 1 다음