bool 数据类型
适用于:✅Azure 数据资源管理器✅Azure Monitor✅Microsoft Sentinel
bool
数据类型可以是 true
(1
)、false
(0
) 或 null。
bool
和 boolean
数据类型是等效的。
bool
文本
若要指定 bool 文本,请使用以下语法选项之一:
语法 |
说明 |
true 或 bool(true) |
表示真。 |
false 或 bool(false) |
表示假。 |
bool(null) |
表示 null 值。 |
详细了解语法约定。
布尔运算符
bool
数据类型支持所有逻辑运算符:equality (==
)、inequality (!=
)、logical-and (and
) 和 logical-or (or
)。
相关内容