时间:2024-02-21 13:55作者:下载吧人气:28
在PostgreSQL数据库中有一列为JSON,要获取JSON中得数据可以用下面sql:
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));
网友评论