Types DolphinDB数据类型转换问题

Types DolphinDB数据类型转换问题,types,dolphindb,Types,Dolphindb,我在以下脚本中遇到问题: id = id$symbol >id=`AA`BB`CC >symbol=0; >id$symbol; Please specify correct data type e.g. a$int (convert variable 'a' to integer type) 其中id是一个字符串列。我收到以下错误消息: Please specify correct data type e.g. a$int (convert variable 'a' to

我在以下脚本中遇到问题:

id = id$symbol
>id=`AA`BB`CC
>symbol=0;
>id$symbol;
Please specify correct data type e.g. a$int (convert variable 'a' to integer type)
其中id是一个字符串列。我收到以下错误消息:

Please specify correct data type e.g. a$int (convert variable 'a' to integer type)

这很奇怪,因为我以前运行过很多次这条线路,它通过了,而且我最近还没有更新DolphinDB数据库。有人知道这里发生了什么吗?

我想您可能在这个脚本之前的某个地方定义了变量“symbol”

我可以用以下脚本复制您的问题:

id = id$symbol
>id=`AA`BB`CC
>symbol=0;
>id$symbol;
Please specify correct data type e.g. a$int (convert variable 'a' to integer type)
所以只需检查代码,避免使用表示数据类型的单词作为变量名