Write SQL statement to find the total purchase amount of all orders from
a sales table taking attributes on assumption.
Answers
Answered by
1
Answer:
Select sum(amount) from sales;
Assumptions:
Amount is attribute with purchase amount of each order.
Similar questions