isnull()

唯一の引数を評価して、引数が null 値と評価されるかどうかを示す bool 値を返します。

注意

文字列値を null にすることはできません。 isempty を使用して、string 型の値が空かどうかを確認します。

構文

isnull(isnull()

構文規則について詳しく知る。

パラメーター

名前 必須 説明
value スカラー (scalar) ✔️ null でない場合にチェックする値。

戻り値

truevalue が null false でない場合は 、それ以外の場合は 。

x isnull(x)
"" false
"x" false
parse_json("") true
parse_json("[]") false
parse_json("{}") false

開始場所がない Storm イベントを見つけます。

StormEvents
| where isnull(BeginLat) and isnull(BeginLon)