Start your All-Access Pass to unlock this challenge
Which of the following will update the name column for the record with id = 1?
name
id = 1
Both B and D
UPDATE customer SET name="James" WHERE id = 1;
UPDATE customer (name) SET ("James") WHERE id = 1;
UPDATE customer SET name="James";