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