How to change a table name using an SQL query?

后端 未结 10 1890
北海茫月
北海茫月 2020-12-12 17:05

How can I in change the table name using a query statement?

I used the following syntax but I couldn\'t find the rename keyword in SQL server 2005.

A         


        
相关标签:
10条回答
  • 2020-12-12 17:13

    Syntex for latest MySQL versions has been changed.

    So try RENAME command without SINGLE QUOTES in table names.

    RENAME TABLE old_name_of_table TO new_name_of_table;

    0 讨论(0)
  • 2020-12-12 17:16

    In MySQL :

    RENAME TABLE template_function TO business_function;

    0 讨论(0)
  • 2020-12-12 17:25

    Please use this on SQL Server 2005:

    sp_rename old_table_name , new_table_name
    

    it will give you:

    Caution: Changing any part of an object name could break scripts and stored procedures.

    but your table name will be changed.

    0 讨论(0)
  • 2020-12-12 17:29

    In MySQL :-

    RENAME TABLE `Stu Table` TO `Stu Table_10`
    
    0 讨论(0)
  • 2020-12-12 17:31

    In Postgress SQL:

    Alter table student rename to student_details;
    
    0 讨论(0)
  • 2020-12-12 17:34

    Use sp_rename:

    EXEC sp_rename 'Stu_Table', 'Stu_Table_10'
    

    You can find documentation on this procedure on MSDN.

    If you need to include a schema name, this can only be included in the first parameter (that is, this cannot be used to move a table from one schema to another). So, for example, this is valid:

    EXEC sp_rename 'myschema.Stu_Table', 'Stu_Table_10'
    
    0 讨论(0)
提交回复
热议问题