📄️ 箭头函数
通过 json_path 表达式在 JSON 对象中查询元素,并返回 JSON 值。
📄️ cast
在 JSON 类型和 SQL 类型之间转换值。
📄️ get_json_bool
从 JSON 字符串中指定的 JSON 路径解析并获取布尔值。
📄️ get_json_double
从 JSON 字符串中指定路径提取浮点值。
📄️ get_json_int
从 JSON 字符串中指定路径提取整数值。
📄️ get_json_string,get_json_object
从 JSON 字符串中指定路径解析并获取字符串。
📄️ json_contains
检查一个 JSON 文档是否包含特定的值或子文档。
📄️ json_each
将 JSON 对象的最外层元素展开为键值对并返回表。
📄️ json_exists
检查一个 JSON 对象是否包含通过 json_path 表达式定位的元素。
📄️ json_keys
返回 JSON 对象的顶级键作为 JSON 数组,或指定路径中的顶级键。
📄️ json_length
返回 JSON 文档的长度。
📄️ json_pretty
Formats a JSON document into an easy-to-read, indented string format.
📄️ json_query
通过 json_path 表达式查询 JSON 对象中元素值,并返回 JSON 值。
📄️ json_remove
从 JSON 文档中删除一个或多个指定 JSON 路径的数据。
📄️ json_set
Inserts or updates data in a JSON document at one or more specified JSON paths and returns the modified JSON document.
📄️ json_string
将 JSON 对象转换为 JSON 字符串。
📄️ to_json
将 Map 或 Struct 值转换为 JSON 字符串。