Login
Register
How would you update the status column of the orders table to set all orders
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?
oracle-query
asked
Jan 21, 2024
in
Oracle
by
Please
log in
or
register
to answer this question.
1
Answer
0
votes
UPDATE orders
SET status = 'High Value'
WHERE total_amount > 1000;
answered
Jan 21, 2024
by
...