Kizspy | Question: 35 (Choose 1 answer)
Which of the following commands would update a column named "name" in a table named "Users"?
A. UPDATE Users SET name='new name' WHERE
B. UPDATE Users (name) VALUES ('new name') WHERE ...
C. Users->name = 'new name' WHERE ...
D. Users.name='new name' WHERE ...