【发布时间】:2019-12-14 08:51:45
【问题描述】:
我在 DolphinDB 数据库中有一个分区表。其中两列是符号和名称。每个符号对应一个唯一的名称。我需要从分区表中选择不同的符号和名称。
我使用了以下脚本
t0 = select distinct(Symbol) as Symbol from t order by Symbol
t0 = select Symbol, Name from lj(t0, t, `Symbol)
但收到以下错误消息:
execution was completed with exception
A regular left table can't perform left join (lj), sorted left join (slj), full join (fj), asof join (aj), or window join (pwj, wj) with another distributed or segmented table.
【问题讨论】: