comment on table 테이블명 is '설명하고 싶은 말 적기';
comment on table 테이블명, 컬럼명 is '설명하고 싶은 말 적기';
select *
from user_recyclebin;
purge recyclebin;
flashback table 테이블명 to before drop;
purge table 테이블명;
drop table 테이블명 purge;
-- 휴지통 조회
select *
from user_recyclebin;
-- 휴지통에 있던 테이블을 복원
flashback table 테이블명 to before drop;
-> local_hr에서작업한것