gettype()
Si applica a: ✅Microsoft Fabric✅Azure Esplora dati✅ Azure Monitor✅Microsoft Sentinel
Restituisce il tipo di runtime del relativo singolo argomento.
Il tipo di runtime può essere diverso dal tipo nominale (statico) per le espressioni il cui tipo nominale è dynamic
. In questi casi gettype()
può essere utile per rivelare il tipo del valore effettivo (come il valore viene codificato in memoria).
Sintassi
gettype(
value)
Altre informazioni sulle convenzioni di sintassi.
Parametri
Nome | Digita | Obbligatorio | Description |
---|---|---|---|
value | scalare | ✔️ | Valore per il quale trovare il tipo. |
Valori restituiti
Stringa che rappresenta il tipo di runtime del valore.
Esempi
Espressione | Valori restituiti |
---|---|
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 |