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
ALTER TABLE table_name RENAME TO new_table_name; works in MySQL as well.
Alternatively: RENAME TABLE table_name TO new_table_name;
table_name
new_table_name