how to rename table in sql code example
Example 1: sql change table name
ALTER TABLE exampletable RENAME TO new_table_name;
Example 2: rename table sql
ALTER TABLE STUDENTS
RENAME TO ARTISTS;
Example 3: rename table sql server
USE AdventureWorks2012;
GO
EXEC sp_rename 'Sales.SalesTerritory', 'SalesTerr';
Example 4: sql rename column
EXEC SP_RENAME 'TABLE_NAME.OLD_COLUMN_NAME','NEW_COLUMN_NAME'
Example 5: rename column sql
ALTER TABLE nom_table
RENAME COLUMN colonne_ancien_nom TO colonne_nouveau_nom
Example 6: how to rename columns in sql server
EXEC sp_rename 'Sales.SalesTerritory.TerritoryID', 'TerrID', 'COLUMN';