I'm wondering wether I understood outer joins or not. I'm working with Access 97. When I try the following query, I have 39 rows :
SELECT ev.* FROM ev.
But when I use an left outer join this way, I have many, many rows more:
SELECT ev.*, gt.KEY2A
FROM ev LEFT JOIN gt ON ev.STATUS1=gt.KEY2A
Is it normal ? I thought when you use a left join, I would have the same number of rows. It would just add gt fields corresponding or not to the criteria ev.STATUS1=gt.KEY2A.
Am I right ?
Thanks. Alain TSARAFIDY
To think about the person you would like to be is to waste your time. Just be yourself
-Anonymous
SELECT ev.* FROM ev.
But when I use an left outer join this way, I have many, many rows more:
SELECT ev.*, gt.KEY2A
FROM ev LEFT JOIN gt ON ev.STATUS1=gt.KEY2A
Is it normal ? I thought when you use a left join, I would have the same number of rows. It would just add gt fields corresponding or not to the criteria ev.STATUS1=gt.KEY2A.
Am I right ?
Thanks. Alain TSARAFIDY
To think about the person you would like to be is to waste your time. Just be yourself
-Anonymous