D
Darryl
When you do a sql left outer join in Access 2000, do you have to specify the
joined fields ?
Here is my query:
SELECT newcases.*
FROM newcases LEFT JOIN t_sourcestats ON
[newcases].[sourcecode]=[t_sourcestats].[sourcecode];
Both the newcases table and the t_sourcestats tables have a field
sourcecode. In addition, I have manually viewed the table records and they
do have matching values in those fields.
Problem:
when I run the above query and look at the fields in the returned record,
none of the fields in t_sourcestats appear joined. IE, only fields from
newcases.
what am I missing here ?
thanks,
Darryl
joined fields ?
Here is my query:
SELECT newcases.*
FROM newcases LEFT JOIN t_sourcestats ON
[newcases].[sourcecode]=[t_sourcestats].[sourcecode];
Both the newcases table and the t_sourcestats tables have a field
sourcecode. In addition, I have manually viewed the table records and they
do have matching values in those fields.
Problem:
when I run the above query and look at the fields in the returned record,
none of the fields in t_sourcestats appear joined. IE, only fields from
newcases.
what am I missing here ?
thanks,
Darryl