Board index » delphi » Please help!!! Left Outer Join problems
Scott Slater
![]() Delphi Developer |
Mon, 28 Apr 2003 03:00:00 GMT
Please help!!! Left Outer Join problems
I have a SQL query that when executed under the BDE 2.52 works perfectly and
when executed under BDE 5.1.1 returns a results set that is not only incorrect it contains garbage in the results set. I used the same exact tables when performing the queries. Here is the query In trying to figure out what was causing the problems with BDE 5.1.1, I have Table1 Table2 If you performed the following query on these tables: select * from Table1 left outer join Table2 on Table1.ID = Table2.ID You SHOULD get the following result set: ID Name ID_1 Amount But what I am seeing when I run this is the following: ID Name ID_1 Amount Notice that ID 2 is NOT listed. It's as if the "outer" is not even being Anyone have any clues, help, suggestions, etc...?? Thanks |