为什么iif返回了一个字典?
date = table(2020.01.01..2020.01.10 as date)ticker = table(AB`C$SYMBOL as ticker)t = select *, iif(ticker=="A", 1, 0) as value from cj(date,…
关于DolphinDB与python的接口
请问DolphinDB的python接口,是在Python里调用DolphinDB进行查询操作等,然后在python进程中进行后续计算;还是把Python编译成数据库代码,使用内置的…
DolphinDB按时间(datetime类型)查询时有时间范围限制吗?
我在DolphinDB执行下述查询语句时出现问题:s1 = select * from tb where trading_day <= 2020.10.29 and trading_day >= 2010.10.29 s2= select …
python api s.table不支持中文列名?
Python Api中银行s.table(data=df, tableAliasName='temp') 提示'银行' is not a valid variable name, thus can not be used as a column name in Do…
为什么计算结果返回-0
我在DolphinDB GUI中执行下列代码:x=table(103.6994 103.6994 as a,`a`a as b) select 100-(first(a*100)/last(a)) as res from x group by b这个计…
pip install dolphindb一直提示找不到
为什么一直找不到,其它电脑可以正常安装.ERROR: Could not find a version that satisfies the requirement dolphindb (from versions: none) ERROR: …
报错:Cannot recognize the token setRandomSeed
DolphinDB Systems 1.10.17 64 bit Copyright (c) 2011~2020 DolphinDB, Inc. Licensed to Trial Users. Expires on 2021.03.31 (Build:2020.10.22)lo…
怎么更新DolphinDB中的分布式表数据?
我想更新已经存入DolphinDB数据库的一个分布式表的数据,如下图所示:返回如下错误:The table is not allowed to update.DolphinDB中不可以更新分布…
如何用命令行开启数据节点
官方手册上看到的关于启动数据节点的方式是,进入到localhost:8848控制节点的web页面,通过页面启动.https://github.com/dolphindb/... 上述链接中给出…
GUI怎么读取本地路径的数据写入到远程节点
在GUI中操作,已经通过add server添加了远程的数据节点,此时运行路径是读取远程服务器的路径,但是我想读取本地文件里的数据,然后写入到远程服务器上的…