Answers for "how to change the column name in sql server"

SQL
10

change column names mssql

--The following example renames the column TerritoryID in the table Sales.SalesTerritory to TerrID in the AdventureWorks database.

EXEC sp_rename 'Sales.SalesTerritory.TerritoryID', 'TerrID', 'COLUMN';
Posted by: Guest on November-26-2019
0

how to change the column name in sql

ALTER TABLE table_name
CHANGE COLUMN old_name TO new_name;
Posted by: Guest on March-17-2021
2

modify column name in sql

ALTER TABLE `Table Name` MODIFY COLUMN `Column Name` Datatype(Size);
Posted by: Guest on July-29-2020

Code answers related to "how to change the column name in sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language