column rename in sql server code example

Example 1: 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';

Example 2: rename table sql

ALTER TABLE STUDENTS  
RENAME TO ARTISTS;

Example 3: sql rename column

EXEC SP_RENAME 'TABLE_NAME.OLD_COLUMN_NAME','NEW_COLUMN_NAME'

Example 4: how to change a collumn name in sql

ALTER TABLE `table_name` 
CHANGE `old_name` `new_name` VARCHAR(10) 
CHARACTER SET utf8 
COLLATE utf8_general_ci NULL 
DEFAULT NULL;

Example 5: change column name sql

ALTER TABLE users
 ALTER COLUMN first username varchar(20);

Tags:

Sql Example