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

The long data type

Applies to: ✅ Microsoft FabricAzure Data ExplorerAzure MonitorMicrosoft Sentinel

The long data type represents a signed, 64-bit wide, integer.

By default, integers and integers represented with hexadecimal syntax are of type long.

long literals

To specify a long literal, use one of the following syntax options:

Syntax Description Example
number An integer. You don't need to wrap the integer with long() because integers are by default of type long. 12
0xhex An integer represented with hexadecimal syntax. 0xf is equivalent to 15
long(-number) A negative integer. long(-1)
long(null) Represents the null value.

Learn more about syntax conventions.