>>방랑자 님께서 쓰시길<<
:: 테이블 명을 바꾸고 싶을 때는 어떻게 하는지?
:: 좀 갈켜주세용...
:: 구럼 여러분 수고하시구요..
:: 답변 기다리겠습니다.&&
2가지 방법
1. sub-query
create table new_table as (select column_list from old_table);
2. rename
renmae old_table to new_table;