I tried to run this in TOAD and sqldeveloper is ok, but when I run in Access with passthrough query I got an error: "pass-through query with returnsRecords property"
hereby the code
With T1 as (select * from baasa),
T2 as (select * from lalala),
T4 as (select * from babab)
select distinct T1.C11 as something, T4.C5 as somewhere, T2.C2 as what
from T1,T2,T4
Where T1.C11=T4.C5 and T1.C10=T2.C2
or in fiddle: http://sqlfiddle.com/#!4/84c06/2 can anyone help me?

Returns Recordsproperty of the pass-through query is set toYes, correct?