h3_isvalid
-functie
Van toepassing op: Databricks SQL Databricks Runtime 11.3 LTS en hoger
Retourneert waar als de invoer BIGINT of STRING een geldige H3-cel-id is.
Syntaxis
h3_isvalid ( expr )
Argumenten
expr
: een BIGINT-expressie of een TEKENREEKS-expressie.
Retouren
Een waarde van het type BOOLEAANSE waarde die aangeeft of de invoer BIGINT of STRING overeenkomt met een geldige H3-cel-id of niet.
De functie retourneert NULL als de invoer NULL is.
Voorbeelden
-- Simple example taking a long as input.
> SELECT h3_isvalid(599686042433355775)
true
-- Simple example taking a valid hexadecimal string as input.
> SELECT h3_isvalid('85283473fffffff')
true
-- Example taking a long as input that is not a valid H3 cell ID.
> SELECT h3_isvalid(599686042433355776)
false
-- Example where the input is an invalid hexadecimal string.
> SELECT h3_isvalid('I am not an H3 cell ID')
false