I am using MySQL. Here's an example, I want to rename a table A to B, so what's the difference between following statement:
alter table A rename to B;
and this one:
rename table A to B;
Can anyone give a detail compare between them? Is it vary based on different engine?
As documented under ALTER TABLE Syntax:
For
ALTER TABLE tbl_name RENAME TO new_tbl_namewithout any other options, MySQL simply renames any files that correspond to the tabletbl_namewithout making a copy. (You can also use theRENAME TABLEstatement to rename tables. See Section 13.1.32, “RENAME TABLESyntax”.) Any privileges granted specifically for the renamed table are not migrated to the new name. They must be changed manually.
As documented under RENAME TABLE Syntax:
RENAME TABLE, unlikeALTER TABLE, can rename multiple tables within a single statement:RENAME TABLE old_table1 TO new_table1, old_table2 TO new_table2, old_table3 TO new_table3;
[ deletia ]
RENAME TABLEdoes not work forTEMPORARYtables. However, you can useALTER TABLEto rename temporary tables.
RENAME TABLEworks for views, except that views cannot be renamed into a different database.
There are no other differences.
来源:https://stackoverflow.com/questions/18988797/what-is-the-difference-between-alter-table-rename-and-rename-table