jsonb_type

description

用来判断json_path指定的字段在JSONB数据中的类型,如果字段不存在返回NULL,如果存在返回下面的类型之一

  • object
  • array
  • null
  • bool
  • int
  • bigint
  • largeint
  • double
  • string

Syntax

  1. STRING json_type(JSON j, VARCHAR json_path)

example

参考 json tutorial 中的示例

keywords

json_type