1ALTER TABLE T_PLAT_KEYWORD_STATISTIC RENAME TO T_PLAT_KEYWORD;
2create 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

 

相关文章:

  • 2022-12-23
  • 2021-10-17
  • 2022-01-20
  • 2021-12-17
  • 2021-11-18
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-07
  • 2022-12-23
  • 2022-02-21
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案