活动
ISLOGICAL
检查 value 是否为逻辑 value(TRUE
orFALSE
),and 返回 TRUE
orFALSE
。
ISLOGICAL(<value>)
术语 | 定义 |
---|---|
value |
要测试的 value。 |
TRUE
if
value 是逻辑 value;FALSE
if 除 TRUE
ORFALSE
以外的任何 value。
在计算列 or 行级别安全性 (RLS) 规则中使用时,not 支持在 DirectQuery 模式下使用此函数。
以下三个示例显示了 ISLOGICAL的行为。
//RETURNS: Is Boolean type or Logical
= IF(ISLOGICAL(true), "Is Boolean type or Logical", "Is different type")
//RETURNS: Is Boolean type or Logical
= IF(ISLOGICAL(false), "Is Boolean type or Logical", "Is different type")
//RETURNS: Is different type
= IF(ISLOGICAL(25), "Is Boolean type or Logical", "Is different type")