SELECT order_date, order_amount
FROM customers
JOIN orders
   ON customers.customer_id = orders.customer_id
WHERE customer_id = 3