/*Write a SQL statement to arrange the orders according to the order_date in such a manner that the latest date will come first then previous dates.*/ SELECT * FROM orders ORDER BY ord_date DESC;