update a table in sql server code example

Example 1: update in sql

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

Example 2: how to update data 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’;

Example 3: UPDATE command in SQL

UPDATE Customers

 SET ContactName = 'Alfred Schmidt', City= 'Frankfurt'

 WHERE CustomerID = 1;
 
 Sql("UPDATE MembershipTypes SET NAME = 'Pay As You Go' WHERE Id = 1");

Tags:

Sql Example