在dolphindb中怎么实现update a,b set a.t1 = b.t1 where a.c1 = 'A' and a.t2 = b.t2 and a.t3 = b.t3

如题

请先 登录 后评论

1 个回答

wale

用ej连接表a和b:


update a set a.t1 = b.t1 from ej(a, b, `t2`t3) where a.c1='A'


请先 登录 后评论