Answers for "can you change a name of a column in mssql using a command?"

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 column name in sql

ALTER TABLE Student RENAME COLUMN NAME TO FIRST_NAME;
ALTER TABLE `Table Name` MODIFY COLUMN `Column Name` Datatype(Size);
Posted by: Guest on January-07-2021

Code answers related to "can you change a name of a column in mssql using a command?"

Code answers related to "SQL"

Browse Popular Code Answers by Language