gettype()
適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft Sentinel
1 つの引数のランタイム型を返します。
ランタイム型は、名目的な型が dynamic
である名目的 (静的) な型とは異なる場合があります。このような場合は、gettype()
は、実際の値の型 (値がメモリでどのようにエンコードされているか) を明らかにするのに役立ちます。
構文
gettype(
value)
構文規則について詳しく知る。
パラメーター
件名 | タイプ | Required | Description |
---|---|---|---|
value | スカラー型 | ✔️ | 型を検索する値。 |
返品
value のランタイム型を表す文字列。
例
Expression | 返品 |
---|---|
gettype("a") |
string |
gettype(111) |
long |
gettype(1==1) |
bool |
gettype(now()) |
datetime |
gettype(1s) |
timespan |
gettype(parse_json('1')) |
int |
gettype(parse_json(' "abc" ')) |
string |
gettype(parse_json(' {"abc":1} ')) |
dictionary |
gettype(parse_json(' [1, 2, 3] ')) |
array |
gettype(123.45) |
real |
gettype(guid(12e8b78d-55b4-46ae-b068-26d7a0080254)) |
guid |
gettype(parse_json('')) |
null |