如何从DolphinDB SQL查询中的小表中提取信息

时间:2019-04-28 08:50:54

标签: dolphindb

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

1 个答案:

答案 0 :(得分:1)

d = dict(t2.x, t2.y)
select * from t1 where y > d[x]