To rename a table in SQL Server, you can use the sp_rename system stored procedure. This stored procedure allows you to change the name of an existing table, without having to drop and re-create the table. To use the sp_rename stored procedure, you need to specify the current name of the table and the new name you want to give …

Renaming a Table in SQL Server Read more »