使用 “版本 ”下拉列表切换服务。 了解有关导航的详细信息。
适用于:✅ Azure Data Explorer
为指定表的一个或多个列设置 DocString 属性。 未显式定义的列将保留此属性的任何以前定义(如果存在)。
权限
必须至少具有 Table Admin 权限才能运行此命令。
语法
.alter-merge
table TableNamecolumn-docstrings( Col1: DocString1 [, Col2: DocString2]... )
详细了解语法约定。
参数
| 客户 | 类型 | 必需 | 说明 |
|---|---|---|---|
| TableName | string |
✔️ | 对其执行操作的表的名称。 |
| Col | string |
✔️ | 对其执行操作的列。 |
| DocString | string |
✔️ | 可以附加到表/函数/列的自由文本,用于描述实体。 此字符串显示在实体名称旁边的各种 UX 设置中。 |
示例
.alter-merge table Table1 column-docstrings (Column1:"DocString1", Column2:"DocString2")