Hi everyone!
I have a problem converting a mysql query to an access 2007 query. I am getting the "Syntax error in Join Operation" message. I can't make the join work correctly.
Here is a generic format of the query
select t1.HI,t1.name,sum(me) as Me
from H t1 left join (I t2, J t3)
on (t1.HI=t2.HI and t2.ev=t3.ev
and t2.p=t3.p) group by t1.HI
Thanks!
I have a problem converting a mysql query to an access 2007 query. I am getting the "Syntax error in Join Operation" message. I can't make the join work correctly.
Here is a generic format of the query
select t1.HI,t1.name,sum(me) as Me
from H t1 left join (I t2, J t3)
on (t1.HI=t2.HI and t2.ev=t3.ev
and t2.p=t3.p) group by t1.HI
Thanks!