Hi mr_vodka and welcome to DaniWeb
Love the username btw!
If all you want from the budget table is the budget_name field, you could just try this:
SELECT
fundinfo.fk_budget_ID,
fundinfo.fk_tiertwo_ID,
Sum(fundlink.fundlink_amt),
budget.budget_name
FROM fundinfo
LEFT JOIN fundlink
ON fundinfo.pk_fund_ID = fundlink.fk_fund_ID
LEFT JOIN budget
ON budget.pk_budget_ID = fundinfo.fk_budget_ID
WHERE fundlink.date_create <= '2009-03-15' AND fundlink.date_create >= '2009-01-01' AND fundinfo.fundinfo_budg_yr = '2009'
GROUP BY fundinfo.fk_tiertwo_ID, budget.budget_name
Hope this helps,
darkagn
Reputation Points: 395
Solved Threads: 192
Veteran Poster
Offline 1,136 posts
since Aug 2007