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