SQL - UPDATE
Update data of a table
UPDATE
Students
SET
lname
=
'Jones'
WHERE
rollno
=
1234
;