0 votes
in Oracle by
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?

1 Answer

0 votes
by
UPDATE orders

SET status = 'High Value'

WHERE total_amount > 1000;

Related questions

0 votes
asked Jan 23 in Oracle by SakshiSharma
0 votes
asked Mar 3, 2023 in Serverless FP by rajeshsharma
...