3 lines
122 B
MySQL
3 lines
122 B
MySQL
|
/*Write a SQL statement to know the maximum purchase amount of all the orders.*/
|
||
|
SELECT MAX (purch_amt)
|
||
|
FROM orders;
|