我有两张桌子:
T1 with attributes: commonG, g1, g3,g7,g8
T2 with attributes: commonG, g2,g5,g6
WHERE T1.commonG 与 T2.commonG 相同,对于此查询:
select t1.commonG, T1.g1, T2.g2
from T1 and T2
where T1.g3=777 and T1.commonG=T2.commonG
所以我想使用odataquery访问这个选择数据以 获得一些 g3 值。