1、ALTER TABLE T_PLAT_KEYWORD_STATISTIC RENAME TO T_PLAT_KEYWORD; 2、create new_table as select * from old_table;drop table old_table; 3、SQL> select tname from tab; TNAME ------------------------------ TEST SQL> rename test to temp ; Table renamed. SQL> select tname from tab ; TNAME ------------------------------ TEMP
时间: 2024-10-03 05:50:41