0

我想做以下事情 select * from t1 where y > (select y from t2 where x=t1.x):具体来说,对于 t1 中的每一行,选择 y 值高于 t2 中与 t1 中的行相同 x 值的行的 y 值的行。有没有办法在 DolphinDB 中做到这一点而不合并 t1 和 t2?

4

1 回答 1

0
d = dict(t2.x, t2.y)
select * from t1 where y > d[x]
于 2019-04-29T06:31:22.067 回答