G
Guest
I am doing an inner join from one table and another. The problem is that the
join is not working. By that I mean that the join is acting as if it is
equal, so I am not getting all the records from the first and only those from
the second table which match the join. Anyone else have this problem? Any
ideas why and how to get the join to work?
Here is the join:
FROM qa43srs_tbl_Sections_Status LEFT JOIN dbo_CDL ON
(qa43srs_tbl_Sections_Status.event_date = dbo_CDL.event_date) AND
(qa43srs_tbl_Sections_Status.Key = dbo_CDL.key_id_no);
join is not working. By that I mean that the join is acting as if it is
equal, so I am not getting all the records from the first and only those from
the second table which match the join. Anyone else have this problem? Any
ideas why and how to get the join to work?
Here is the join:
FROM qa43srs_tbl_Sections_Status LEFT JOIN dbo_CDL ON
(qa43srs_tbl_Sections_Status.event_date = dbo_CDL.event_date) AND
(qa43srs_tbl_Sections_Status.Key = dbo_CDL.key_id_no);