change row sql code example

Example 1: sql update from select

UPDATE
    Table_A
SET
    Table_A.col1 = Table_B.col1,
    Table_A.col2 = Table_B.col2
FROM
    Some_Table AS Table_A
    INNER JOIN Other_Table AS Table_B
        ON Table_A.id = Table_B.id
WHERE
    Table_A.col3 = 'cool'

Example 2: sql update record

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

Example 3: how to update row in sql

UPDATING ROW
Update TableName set ColumnName = value where condition;
update scrumteam set firstname =‘Martin' where EmployeeID='1';
update scrumteam set lastname =‘Murtin' where firstname='Tom’;

Tags:

Sql Example