Skip to content
Ujjwal Gupta edited this page Oct 20, 2018 · 1 revision

Update

Update TABLE_NAME Set Column1=Value1, Column2=Value2 .. where conditions

e.g -

UPDATE Customers
SET ContactName = 'Alfred Schmidt', City= 'Frankfurt'
WHERE CustomerID = 1;
Clone this wiki locally