1--The following example renames the column TerritoryID in the table Sales.SalesTerritory to TerrID in the AdventureWorks database.
2
3EXEC sp_rename 'Sales.SalesTerritory.TerritoryID', 'TerrID', 'COLUMN';
1ALTER TABLE Student RENAME COLUMN NAME TO FIRST_NAME;
2ALTER TABLE `Table Name` MODIFY COLUMN `Column Name` Datatype(Size);