跳到主要内容

jsonb_type

jsonb_type

description

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

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

Syntax

STRING jsonb_type(JSONB j, VARCHAR json_path)

example

参考 jsonb tutorial 中的示例

keywords

jsonb_type