How do you rename a table ?
alter table table_name rename to new_table_name;
RENAME table_name new_table_name;
Dropping the table and creating once again
None of the above.