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