sql customers(id, name, email, created_at) orders(id, customer_id, total, status, placed_at)Your query should also include orders from the last 30 days only, sorted by most recent first.
-- Expected output columns: -- order_id | total | status | customer_name | customer_email -- 142 | 89.99 | shipped | Alice Chen | alice@example.com -- 139 | 24.50 | pending | Bob Park | bob@example.com