Question: A,b,c, or d app.sophia.org Question 32 For this question, refer as needed to the PostgreSQL database for this course. In the customer table, which of
A,b,c, or d
app.sophia.org Question 32 For this question, refer as needed to the PostgreSQL database for this course. In the customer table, which of the following UPDATE statements would set the postal_code of any customer who lives in the city of Berlin to 10789 and return all columns from the changed rows? LAUNCH DATABASE (4 UPDATE customer SET postal_code WHERE city = '10789' RETURNING x; UPDATE customer SET postal_code = '10789' WHERE city = 'Berlin' RETURNING; UPDATE customer SET postal_code = '10789"' WHERE city = 'Berlin' RETURNING x; UPDATE customer WHERE city = 'Berlin' SET postal_code = '10789' RETURNING x; SAVEStep by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
