MS access refusing to combine two tables?
Posted
by Mahmoud
on Stack Overflow
See other posts from Stack Overflow
or by Mahmoud
Published on 2010-05-19T17:45:50Z
Indexed on
2010/05/19
17:50 UTC
Read the original article
Hit count: 220
hey everyone
i have an access 2007 database where i have 2 tables one is exp_cash and exp_cheque each are link to exp_cat, where exp_cat contains categories list where exp_cash contains id,cat_id,exp_date,exp_amount,exp_note same thing in exp_cheque where when i came to combine them nothing in result unless i remove the cat_name from my query i used a simple query which is
SELECT DISTINCT exp_cat.cat_name, exp_cash.exp_amount, exp_cheque.exp_amount
FROM (exp_cat INNER JOIN exp_cash ON exp_cat.ID = exp_cash.exp_cat_id) INNER JOIN exp_cheque ON exp_cat.ID = exp_cheque.exp_cat_id;
© Stack Overflow or respective owner