George Brink
2009-06-26 18:35:24 UTC
I'd like to do a report in InfoMaker 11.5 which will show all rows from
first table and only rows which satisfy some pre-join filtering from
second table. In a normal SQL I'll write this query like this:
select *
from Customers cust
left join Addresses addr on
cust.PersonID=addr.PersonID and
addr.AddressType=2
where cust.PersonType=1
How can I tell InfoMaker that the condition addr.AddressType=2 should go
into JOIN clause not into WHERE?
first table and only rows which satisfy some pre-join filtering from
second table. In a normal SQL I'll write this query like this:
select *
from Customers cust
left join Addresses addr on
cust.PersonID=addr.PersonID and
addr.AddressType=2
where cust.PersonType=1
How can I tell InfoMaker that the condition addr.AddressType=2 should go
into JOIN clause not into WHERE?