0 votes
How would you update the status column of the orders table to set all orders with a total amount greater than 1,000 to High Value?
in Oracle by

1 Answer

0 votes
UPDATE orders

SET status = 'High Value'

WHERE total_amount > 1000;
by
...