column_ifexists()
采用列名作为字符串和默认值。 返回对列的引用(如果存在),否则返回默认值。
弃用的别名:columnifexists()
语法
column_ifexists(
columnName,
defaultValue)
详细了解语法约定。
参数
客户 | 类型 | 必需 | 描述 |
---|---|---|---|
columnName | string |
✔️ | 要检查是否存在的列的名称。 |
defaultValue | 标量 (scalar) | ✔️ | 列不存在时要使用的值。 此值可以是任何标量表达式。 例如,对另一个列的引用。 |
返回
如果“columnName”存在,则使用它引用的列。 否则为 defaultValue。
示例
// There's no column "Capital" in "StormEvents", therefore, the State column will be used instead
StormEvents | project column_ifexists("Capital", State)