如何通过一个表更新另一个表

比如如下操作:    

update t1, t2 set t1.xx = t2.xx, t1.yy= '11' where t1.id = t2.id and t1.zzz = 'vv'

在dolphindb里该怎么写?

请先 登录 后评论

1 个回答

logger

参考:update t1 set ... from ej(t1, t2, `id) where ...

请先 登录 后评论