GitHub在 GitHub中添加内容: 在线编辑

isempty ()

如果自变量为空字符串或为 NULL ,那么返回 true

isempty("") == true

语法

isempty([value])

退货

指示自变量是空字符串还是 isnull。

x isempty (x)
""
"x"
parsejson ("")
parsejson ("[]")
parsejson ("{}")

示例

View
| where isempty(fieldName)
| count