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