其他分享
首页 > 其他分享> > postgres学习之json 和 jsonb(一)

postgres学习之json 和 jsonb(一)

作者:互联网

学习原因

现在项目要从Oracle数据库转到pgsql了,原因肯定是收费了。

postgresSql目前我发现最大的优点就是可以直接操作json字符串,这无疑很大的降低了io交互,同时提高了内存的回收速度(我相信数据库的内存回收肯定比业务代码快)。

实操

select操作

准备数据

 

 

准备sql

select (select ts.information::json->'link' from test_table ts where ts.id=1)::json->1

执行结果

 

 

参考文档

https://www.cnblogs.com/liuchuanfeng/p/8510270.html

https://blog.csdn.net/u012129558/article/details/81453640

标签:postgres,数据库,ts,json,内存,https,select,jsonb
来源: https://www.cnblogs.com/HumanResoundWorm/p/15350909.html