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