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

isnotempty()

Applies to: ✅ Microsoft FabricAzure Data ExplorerAzure MonitorMicrosoft Sentinel

Returns true if the argument isn't an empty string, and it isn't null.

Deprecated aliases: notempty()

Syntax

isnotempty(value)

Learn more about syntax conventions.

Parameters

Name Type Required Description
value scalar ✔️ The value to check if not empty or null.

Returns

true if value isn't null and false otherwise.

Example

Find the storm events for which there's a begin location.

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