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