First, you choose a correct database, then these steps will show you how to run an alter command to rename your tables.
- Click the SQL tab at the top.
- In the text box, enter the following command:
ALTER TABLE exampletable RENAME TO new_table_name;
- Replace exampletable with your table's name and replace new_table_name with the new name for your table.
- Click the Go button.
The database table should now have a new name.
Comments
Post a Comment