I have two tables:
T1 with attributes: commonG, g1, g3,g7,g8
T2 with attributes: commonG, g2,g5,g6
WHERE T1.commonG is same as T2.commonG, for this query:
select t1.commonG, T1.g1, T2.g2
from T1 and T2
where T1.g3=777 and T1.commonG=T2.commonG
so I want to access this select data using an odataquery for some g3 value.