你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

isnotempty()

如果参数不为空字符串且不为 null,则返回 true

弃用的别名:notempty()

语法

isnotempty(value)

详细了解语法约定

参数

名称 类型 必需 说明
value 标量 (scalar) ✔️ 要检查是否为空或 null 的值。

返回

如果不为 null,则返回 true,否则返回 false

示例

查找具有开始位置的暴风雨事件。

StormEvents
| where isnotempty(BeginLat) and isnotempty(BeginLon)