게시일: Sep 06, 2015 6:52:53 AM
-- 테이블 삭제
drop table TABLE_NAME;
-- 제약조건도 함께 삭제
drop table TABLE_NAME cascade constraints;
-- 윈도우로 치자면 휴지통에 안넣고 영구삭제
drop table TABLE_NAME cascade constraints purge;
-- 휴지통에 있는 내용 확인
select * from recyclebin;