服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - PostgreSQL - 如何获取PostgreSQL数据库中的JSON值

如何获取PostgreSQL数据库中的JSON值

2021-03-14 18:55刘靖凯 PostgreSQL

这篇文章主要介绍了如何获取PostgreSQL数据库中的JSON值操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

PostgreSQL数据库中有一列为JSON,要获取JSON中得数据可以用下面sql:

?
1
2
3
4
5
6
7
8
9
select orderno as OrderNo
 ,amount as Amount
 ,ordertime as OrderTime
 , recordtype as RecordType
from jsonb_to_recordset(( --特定方法
  select array_to_json(array_agg(data)) --转换成一个数组
  from wallet_details
  where id = @id
  )::jsonb) as x(orderno text, amount numeric(16, 6), ordertime text, recordtype varchar(32));

如果你获取得数据是当前行,但是JSON中也要取出来几个值可以用下面的方式获取:

?
1
2
3
4
5
6
select pay_params::json->>'Key' as Md5Key ,
  pay_params::json->>'AppId' as Appid ,
  pay_params::json->>'MchId' as Mchid ,
  pay_params::json->>'SubMchId' as Submchid ,
  tenant_id as Tenant_Id
  from spm_wallet_settings where id='12'

补充:PostgreSql数据库sql语句取Json值

1:json字段实例:

 

?
1
2
3
4
5
{
“boxNum”: 0,
“orderNum”: 0,
“commentNum”: 0
}

A.取boxNum的值

1.1)select 字段名->‘boxNum' from 表名;

1.2)select jsonb_extract_path_text字段名, ‘boxNum') from 表名;

2:json字段实例:

 

?
1
2
3
4
5
{
“boxNum”: “0”,
“orderNum”: “0”,
“commentNum”: “0”
}

A.取boxNum的值,不带双引号。

2.1)select 字段名->>‘boxNum' from 表名;

2.2)select jsonb_extract_path_text字段名, ‘boxNum') from 表名;

3:json字段实例:

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
“unitPrices”: [{
“price”: 10.0,
“unitId”: “8”,
“unitName”: “500克”,
“unitAmount”: “0”,
“isPMDefault”: true,
“isHomeDefault”: true,
“originalPrice”: 10.0
}],
“productName”: “远洋 加拿大 螯龙虾 野生捕捞”,
“productType”: 1,
“skuPortRate”: {
“id”: “a6b83048-3878-4698-88c2-2a9de288ac56”,
“cityId”: “2bf8c60c-789d-433a-91ae-8e4ae3e587a4”,
“dynamicProperties”: [{
name”: “死亡率”,
“propertiesId”: “f05bda8c-f27c-4cc6-b97e-d4bd07272c81”,
“propertieValue”: {
“value”: “2.0”
}
}, {
name”: “失水率”,
“propertiesId”: “ee9d95d7-7e28-4d54-b572-48ae64146c46”,
“propertieValue”: {
“value”: “3.0”
}
}]
},
“quotePriceAttribute”: {
“currencyName”: “人民币”
}
}

A.取quotePriceAttribute中的currencyName币制名称

?
1
select (字段名>>‘quotePriceAttribute')::json->>‘currencyName' from 表名;

B.取unitPrices中的price单价

?
1
select jsonb_array_elements((字段名->>‘unitPrices')::jsonb)->>‘price' from 表名;

C.取skuPortRate中的dynamicProperties的name为死亡率的propertieValue里面的value;

?
1
2
select bb->‘propertieValue'->>‘value' as value from (
select jsonb_array_elements(((字段名->>‘skuPortRate')::json->>‘dynamicProperties')::jsonb) as bb from 表名) as dd where dd.bb @> ‘{“name”: “死亡率”}';

4.json字段实例:

 

?
1
2
3
4
5
6
[{“name”: “捕捞方式”, “showType”: 4, “propertiesId”: “9a14e435-9688-4e9b-b254-0e8e7cee5a65”,
“propertieValue”: {“value”: “野生捕捞”, “enValue”: “Wild”}},
{“name”: “加工方式”, “showType”: 4, “propertiesId”: “7dc101df-d262-4a75-bdca-9ef3155b7507”,
“propertieValue”: {“value”: “单冻”, “enValue”: “Individual Quick Freezing”}},
{“name”: “原产地”, “showType”: 4, “propertiesId”: “dc2b506e-6620-4e83-8ca1-a49fa5c5077a”,
“propertieValue”: {“value”: “爱尔兰”, “remark”: “”, “enValue”: “Ireland”}}]

–获取原产地

?
1
2
3
4
5
6
select
(SELECT ss->‘propertieValue' as mm FROM
(SELECT jsonb_array_elements (dynamic_properties) AS ss FROM product
where id=a.id) as dd where dd.ss @> ‘{“name”: “原产地”}')->>‘value' as cuntry,
a.*
from product as a where a.id=‘633dd80f-7250-465f-8982-7a7f01aaeeec'

5:json例子:huren:[“aaa”,“bbb”,“ccc”…]

 

需求:取值aaa去““双引号”

?
1
select replace(cast(jsonb_array_elements(huren) as text), ‘"','') from XXX limit 1

以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。如有错误或未考虑完全的地方,望不吝赐教。

原文链接:https://www.cnblogs.com/ljknlb/p/11734145.html

延伸 · 阅读

精彩推荐
  • PostgreSQLRDS PostgreSQL一键大版本升级技术解密

    RDS PostgreSQL一键大版本升级技术解密

    一、PostgreSQL行业位置 (一)行业位置 在讨论PostgreSQL(下面简称为PG)在整个数据库行业的位置之前,我们先看一下阿里云数据库在全球的数据库行业里的...

    未知1192023-05-07
  • PostgreSQLPostgresql开启远程访问的步骤全纪录

    Postgresql开启远程访问的步骤全纪录

    postgre一般默认为本地连接,不支持远程访问,所以如果要开启远程访问,需要更改安装文件的配置。下面这篇文章主要给大家介绍了关于Postgresql开启远程...

    我勒个去6812020-04-30
  • PostgreSQL分布式 PostgreSQL之Citus 架构

    分布式 PostgreSQL之Citus 架构

    节点 Citus 是一种 PostgreSQL 扩展,它允许数据库服务器(称为节点)在“无共享(shared nothing)”架构中相互协调。这些节点形成一个集群,允许 PostgreSQL 保存比单...

    未知802023-05-07
  • PostgreSQL深入理解PostgreSQL的MVCC并发处理方式

    深入理解PostgreSQL的MVCC并发处理方式

    这篇文章主要介绍了深入理解PostgreSQL的MVCC并发处理方式,文中同时介绍了MVCC的缺点,需要的朋友可以参考下 ...

    PostgreSQL教程网3622020-04-25
  • PostgreSQLpostgresql 数据库中的数据转换

    postgresql 数据库中的数据转换

    postgres8.3以后,字段数据之间的默认转换取消了。如果需要进行数据变换的话,在postgresql数据库中,我们可以用"::"来进行字段数据的类型转换。...

    postgresql教程网12482021-10-08
  • PostgreSQLPostgresql查询效率计算初探

    Postgresql查询效率计算初探

    这篇文章主要给大家介绍了关于Postgresql查询效率计算的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用Postgresql具有一定的参考学习价...

    轨迹4622020-05-03
  • PostgreSQLpostgresql 中的to_char()常用操作

    postgresql 中的to_char()常用操作

    这篇文章主要介绍了postgresql 中的to_char()常用操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    J符离13432021-04-12
  • PostgreSQLPostgreSQL标准建表语句分享

    PostgreSQL标准建表语句分享

    这篇文章主要介绍了PostgreSQL标准建表语句分享,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    码上得天下7962021-02-27