how to change column names in sql 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: change column name in sql
MySQL:
ALTER TABLE Customer CHANGE Address Addr char(50);
Oracle:
ALTER TABLE Customer RENAME COLUMN Address TO Addr;
Example 3: modify column name in tsql
sp_rename 'table_name.old_column', 'new_name', 'COLUMN';