SBendBuckeye
Programmer
I have 2 tables, TableOne and TableMany. There is a one to many relationship between TableOne and TableMany. The problem is that I can only link from TableMany to TableOne.
TableMany TableOne
Key1 ------->Key1
Key2 ------->Key2
This above is an equal join and returns the records I would expect. The problem is that I cannot get them to return any records if I reverse the tables as below.
TableOne TableMany
Key1 ------->Key1
Key2 ------->Key2
With an equal join it returns 0 records. I have not had this problem before. The reason I need the second situation is because there are an handful of left join situations which I need to retrieve as well (TableOne with no corresponding TableMany record).
I can do a Union query but I want to avoid that if possible since Crystal doesn't make that easy for future maintenance.
Thanks for any ideas and/or suggestions!
Have a great day!
j2consulting@yahoo.com
TableMany TableOne
Key1 ------->Key1
Key2 ------->Key2
This above is an equal join and returns the records I would expect. The problem is that I cannot get them to return any records if I reverse the tables as below.
TableOne TableMany
Key1 ------->Key1
Key2 ------->Key2
With an equal join it returns 0 records. I have not had this problem before. The reason I need the second situation is because there are an handful of left join situations which I need to retrieve as well (TableOne with no corresponding TableMany record).
I can do a Union query but I want to avoid that if possible since Crystal doesn't make that easy for future maintenance.
Thanks for any ideas and/or suggestions!
Have a great day!
j2consulting@yahoo.com