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

tolower()

Applies to: ✅ Microsoft FabricAzure Data ExplorerAzure MonitorMicrosoft Sentinel

Converts the input string to lower case.

Syntax

tolower(value)

Learn more about syntax conventions.

Parameters

Name Type Required Description
value string ✔️ The value to convert to a lowercase string.

Returns

If conversion is successful, result is a lowercase string. If conversion isn't successful, result is null.

Example

tolower("Hello") == "hello"