Company: amdocs_1april
Difficulty: medium
Write an SQL query to select all rows from the orders table with the order_status is 'Shipped' +----------+-------------+--------------+-------------+ | order_id | customer_id | order_status | order_total | +----------+-------------+--------------+-------------+ | 1 | 101 | Pending | 250.00 | | 2 | 102 | Shipped | 150.00 | | 3 | 103 | Delivered | 300.00 | | 4 | 104 | Shipped | 450.00 | | 5 | 105 | Pending | 200.00 | +----------+-------------+--------------+-------------+ Note: the query should return all the columns