I'm struggling with converting this query:
select * from T t, U u1, C c, I i, S s, TY ty, U u2 where
t.id = u1.id
t.curr = c.curr
t.instanceId = i.instanceId
i.symbol = s.symbol
i.type = ty.type
t.exec *= u2.exec
I know *= is a left join but I'm not sure exactly when I do my joins how to reference the tables properly in order when I do my joins.