CHANGE COLUMN VALUE 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: sql update query

--update query example
 UPDATE table_name
 SET column1 = value1, column2 = value2, ...
 WHERE condition;

Example 3: update column sql server

UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;

Example 4: how to change the value of a table in sql

UPDATE employees 
SET 
    address = '1300 Carter St',
    city = 'San Jose',
    postalcode = 95125,
    region = 'CA'
WHERE
    employeeID = 3;

Example 5: alter table query sql server change column

ALTER TABLE table_name
  ALTER COLUMN column_name column_type;

Example 6: sql update record

SQL> UPDATE CUSTOMERS
SET ADDRESS = 'Pune'
WHERE ID = 6;

Tags:

Sql Example