私は2つのテーブルを持っています:
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
そのため、g3 値のodataqueryを使用して、この選択データにアクセスしたいと考えています。