提取postgresql数据库中jsonb列的数据

Posted 沙耶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了提取postgresql数据库中jsonb列的数据相关的知识,希望对你有一定的参考价值。

SELECT t.* FROM person, jsonb_to_record(info) AS t(num text, name text, score text) WHERE person.id=1;

SELECT t.errmsg,sms_records.*  FROM sms_records, jsonb_to_record(result_json) AS t(errmsg text,sid text)


select tb_result.errmsg,* from ( select t1.*,t2.account_type,t2.account_name 
,t3.report_status,t3.errmsg,t3.user_receive_time,t3.description
 from sms_records t1 
left join accounts t2 on t1.account_id = t2.id 
left join sms_status t3 on t1.sid = t3.sid ) t, jsonb_to_record(result_json) AS tb_result(errmsg text,sid text)
where 1=1

 

以上是关于提取postgresql数据库中jsonb列的数据的主要内容,如果未能解决你的问题,请参考以下文章

jOOQ & PostgreSQL:将从复杂 jsonb 中提取的嵌套 json 对象映射到自定义类型

如何使用 Laravel Eloquent 更新 PostgresQL 中 jsonb 列的多个“键”

读取一个变量 JSONB 并将其放入 postgresql 的列中

如何加入来自 jsonb 列的嵌套值?

单个 postgresql 查询中的文本和 jsonb 连接

PostgreSQL 中 JSONB[] (JSONB ARRAY) 数据类型有啥用?