标签: dolphindb
我想执行以下操作: select * from t1 where y > (select y from t2 where x=t1.x)。具体来说,对于t1中的每一行,选择y值高于t2中该行的y值且x值与t1中该行相同的行。是否可以在DolphinDB中做到不合并t1和t2的方法?
select * from t1 where y > (select y from t2 where x=t1.x)
答案 0 :(得分:1)
d = dict(t2.x, t2.y) select * from t1 where y > d[x]