/*Write a query to display salesman_id, salesman name, order date, order no, and purchase amount from orders table. */ SELECT ord_date, salesman_id, ord_no, purch_amt FROM orders;