-
[Oracle] SQL 테이블 컬럼 순서변경With Computer/DataBase 2020. 1. 17. 23:00
백업테이블 생성 - 기존 테이블 삭제(이때 제약조건/혹은 pk삭제를 해줘야함)
- 백업테이블 이름을 기존테이블명으로 변경
create table qa_backup as
select qa_no,qa_title,qa_content,qa_write_date,b_ref,b_level,b_step,cust_no,
man_no
from qa;
--------------------------------------------
alter table get_pass drop primary key cascade;
--------------------------------------------
drop table qa;
rename qa_backup to qa;
------------------------------------------------
PK제약조건 설정
alter table customer add primary key (cust_no);
------------------------------------------------반응형'With Computer > DataBase' 카테고리의 다른 글
[mariaDB] Connection failed Cant's connect to server on '127.0.0.1' (10061) (0) 2024.03.18 [mariaDB] Access denied for user'root'@'localhost' (using password: NO) (0) 2024.03.18 [IntelliJ] Ambiguous mapping found Error (0) 2019.12.14 h2 database 실험 (0) 2019.12.14 [H2DataBase] 설치 및 사용 (0) 2019.12.12