how to update values in the sql row code example
Example 1: how to update date value in sql
UPDATE TABLE
SET EndDate = CAST('2009-05-25' AS DATETIME)
WHERE Id = 1
Example 2: sql update record
UPDATE table_name
SET column1 = value1, column2 = value2...., columnN = valueN
WHERE [condition];