CREATE TABLE orders (
order_id INT,
order_date DATE,
total_amount INT,
shipping_address TEXT,
status TEXT
);
INSERT INTO orders
(order_id, order_date, total_amount, shipping_address, status)
VALUES
(1001, '2024-07-13', 150.75, '123 Main St, Anytown, USA', 'Shipped'),
(1002, '2024-07-12', 200.50, '456 Elm St, Othertown, USA', 'Delivered'),
(1003, '2024-07-12', 350.25, '789 Oak St, Anotherplace, USA', 'Processing'),
(1001, '2024-07-11', 100.00, '321 Pine St, Somewhere, USA', 'Cancelled'),
(1004, '2024-07-10', 500.00, '555 Maple St, Nowhere, USA', 'Pending');