안녕하세요? 테이블 제약조건 관련하여 조언을 구하고자 글을 작성하게 되었습니다.
create table if not exists table_cp like table;
위처럼 테이블을 복사할때 제약조건까지 같이 복사하는데 제약조건은 제외하고 테이블을 복사하는 방법이 있을까요?
아니면
schema에서 특정 테이블을 지정하여 제약조건을 전부 삭제하는 방법이 있을까요?
delete from information_schema.table_constraints
where table_schema='aa'
and table_name like'bb';
위에는 select는 할수있지만 delete는 불가하더라구요.
혹시 위처럼 조회도 가능하면서 삭제하는 방법이 있을까요?
조언 부탁드립니다.