Question: For this question, refer as needed to the PostgreSQL database for this course. Which of the following UPDATE statements would successfully update the customer table

For this question, refer as needed to the PostgreSQL database for this course.
Which of the following UPDATE statements would successfully update the customer table where the customer_id is 9 to set the company to Telus and the support_rep_id to 6?
LAUNCH DATABASE
a.)
UPDATE customer
SET company='Telus' AND support_rep_id=6
WHERE customer_id =9;
b.)
UPDATE customer
SET company=Telus, support_rep_id=6
WHERE customer_id =9;
c.)
UPDATE customer
SET company='Telus', support_rep_id=6
WHERE customer_id =9;
d.)
UPDATE customer
SET company='Telus', support_rep_id=6;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!