change table name to upper case

前端 未结 4 875
别跟我提以往
别跟我提以往 2020-12-25 14:58

I need to change table name from lowercase to uppercase but using this statement the table name can be changed but the names are in lowercase..

sql> rena         


        
4条回答
  •  既然无缘
    2020-12-25 15:35

    This should give u what you are looking for...

    ALTER TABLE oldtable RENAME TO NewTable;
    

提交回复
热议问题