码迷,mamicode.com
首页 > 数据库 > 详细

postgresql 字符串变json 再还原

时间:2020-06-13 09:14:54      阅读:327      评论:0      收藏:0      [点我收藏+]

标签:integer   color   div   rom   text   http   字符   record   gre   

SELECT to_json(‘some "text"‘::text)
select array[to_json(‘Some "text"‘::TEXT)] ;

select array_to_json(array[to_json(‘Some "text"‘::TEXT)]) ;

select array_to_json(array[to_json(‘Some "text"‘::TEXT)])->>0 ;

select length( array_to_json(array[to_json(‘Some "text"‘::TEXT)])->>0 );

技术图片

 技术图片

 

 

技术图片

 

-- 神奇的postgresql json 转表 与表转josn   表中列的神奇操作
select
* from json_to_record({"a":1,"b":[1,2,3],"c":"bar"}) as x(a int, b INTEGER[], c text) SELECT row_to_json( a.* ) from (select * from json_to_record({"a":1,"b":[1,2,3],"c":"bar"}) as x(a int, b INTEGER[], c text)) a

 

postgresql 字符串变json 再还原

标签:integer   color   div   rom   text   http   字符   record   gre   

原文地址:https://www.cnblogs.com/huanglei2010/p/13111300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!