jsonb_type
description
用来判断json_path指定的字段在JSONB数据中的类型,如果字段不存在返回NULL,如果存在返回下面的类型之一
- object
- array
- null
- bool
- int
- bigint
- largeint
- double
- string
Syntax
STRING json_type(JSON j, VARCHAR json_path)
example
参考 json tutorial 中的示例
keywords
json_type
用来判断json_path指定的字段在JSONB数据中的类型,如果字段不存在返回NULL,如果存在返回下面的类型之一
STRING json_type(JSON j, VARCHAR json_path)
参考 json tutorial 中的示例
json_type
本文档使用 BookStack 构建