d) UPDATE Users SET LastName = 'Michel' WHERE LastName = 'Thomas'
The UPDATE statement is used for modifying the table data by using the SET and WHERE clause. The SET clause is used to change the values of the column specified in the WHERE clause. See the below syntax:
UPDATE table SET column1 = expression1, column2 = expression2,... WHERE conditions