Hello. I have 3 tables.
1. payment(user_id, calculation_id)
2. user(id, user_name)
3. calculation(id, period_start_date, period_end_date)
I need to select payments
with user_name
, period_start_date
, period_end_date
. How can I do it within one query in Zend Framework?
Thanks a lot.