EricVonSkip
MIS
I want to do the following using visual linking expert:
select ....
from table1
left join table2 on table1.field1 = table2.field1
and table2.field2 = 123456
Is there a way to accomplish this in crystal without modifying the SQL directly and without using a WHERE which would force an inner join?
select ....
from table1
left join table2 on table1.field1 = table2.field1
and table2.field2 = 123456
Is there a way to accomplish this in crystal without modifying the SQL directly and without using a WHERE which would force an inner join?