Update json-functions.md

This commit is contained in:
Denny Crane 2024-11-21 09:54:57 -04:00 committed by GitHub
parent 7eee149487
commit 1cc687f3b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -488,7 +488,7 @@ JSONType(json [, indices_or_keys]...)
**Returned value**
- Returns the type of a JSON value as a string, otherwise if the value doesn't exists it returns `Null`. [String](../data-types/string.md).
- Returns the type of a JSON value as a string, otherwise if the value doesn't exists it returns `Null`. [Enum](../data-types/enum.md).
**Examples**
@ -520,7 +520,7 @@ JSONExtractUInt(json [, indices_or_keys]...)
**Returned value**
- Returns a UInt value if it exists, otherwise it returns `Null`. [UInt64](../data-types/string.md).
- Returns a UInt value if it exists, otherwise it returns `0`. [UInt64](../data-types/int-uint.md).
**Examples**
@ -560,7 +560,7 @@ JSONExtractInt(json [, indices_or_keys]...)
**Returned value**
- Returns an Int value if it exists, otherwise it returns `Null`. [Int64](../data-types/int-uint.md).
- Returns an Int value if it exists, otherwise it returns `0`. [Int64](../data-types/int-uint.md).
**Examples**
@ -600,7 +600,7 @@ JSONExtractFloat(json [, indices_or_keys]...)
**Returned value**
- Returns an Float value if it exists, otherwise it returns `Null`. [Float64](../data-types/float.md).
- Returns an Float value if it exists, otherwise it returns `0`. [Float64](../data-types/float.md).
**Examples**