3 lines
127 B
SQL
3 lines
127 B
SQL
/*Write a SQL statement to find the average purchase amount of all orders.*/
|
|
SELECT AVG (purch_amt)
|
|
FROM orders; |