SELECT customer_id, payment, SUM(payment) FROM telemon_payments_data payments LEFT JOIN telemon_customer_data customer ON payments.customer_id = customer.customer_id GROUP BY 1 HAVING customer.account_created_on between 2016-01-01 and 2016-01-31
+++++++++++
evidently, my customer_id field is ambigious, because that's the error code. Thoughts? Thanks!