你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
The int data type
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
The int
data type represents a signed, 32-bit wide, integer.
int
literals
To specify an int
literal, use one of the following syntax options:
Syntax | Description | Example |
---|---|---|
int( number) |
A positive integer. | int(2) |
int(- number) |
A negative integer. | int(-2) |
int(null) |
Represents the null value. |
Learn more about syntax conventions.