英文:
DolphinDB: the “extra” and “comment” columns in the output table colDefs of schema
问题
使用函数schema
,我获得了一组信息,其中包括以下colDefs表格。
在表格中,我注意到了两个额外的列:“extra”和“comment”。有人可以解释它们的用途吗?此外,如果我想要插入值到这些列,我应该使用哪个函数?
英文:
Using the function schema
, I got a set of information including the following colDefs table.
Within the table, I noticed two additional columns: “extra” and “comment”. Can anyone explain what they are used for? Furthermore, if I want to insert values to these columns, which function should I use?
答案1
得分: 2
- extra: 显示 DECIMAL 类型列的小数位数
- comment: 提供关于特定列的附加详细信息
要向特定列添加注释,您可以使用 setColumnComment
。
对于“extra”列,对于 DECIMAL 类型的列,数据会自动插入。
英文:
- extra: displays the scale of the decimal number for columns of type
DECIMAL - comment: provides additional details about a specific column
To add a comment to a specific column, you can use setColumnComment
.
For the “extra” column, data is automatically inserted in the case of a column of type DECIMAL.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论