Database Management
Accenture Technical PrimermediumDatabase ManagementSelect Statement

Which query will change the cust_address to 'Panama' for those who are from ‘Los Angeles’?

Answer options

A
UPDATE customer SET cust_address = 'Panama' WHERE cust_address = 'Los Angeles';
B
UPDATE customer SET cust_address = 'Los Angeles' WHERE cust_address = 'Panama';
C
INSERT INTO customer (cust_address) VALUES ('Panama');
D
DELETE FROM customer WHERE cust_address = 'Los Angeles';

Correct answer: UPDATE customer SET cust_address = 'Panama' WHERE cust_address = 'Los Angeles';

Explanation

Quick AnswerThe correct answer is UPDATE customer SET cust_address = 'Panama' WHERE cust_address = 'Los Angeles'; because it directly addresses the core logic of Database Management.

UPDATE with SET and WHERE clause changes the specified rows.

Related Accenture Database Management questions

Practice more Accenture Database Management questions

PrimerPrep has 1400+ practice questions, 2026 simulations and coding hands-on — all free.

Watch Walkthroughs!