业务扩展字段在数据库中经常会使用json格式的数据来存储,这就涉及到一个头疼的问题,假设要使用扩展字段里的某个值作为查询条件怎么办,原来PostgreSQL本身就支持这种查询方式。
例子:假设业务扩展字段ext_data存的json格式如下:
我们需要查询扩展字段中extInfo.userType=1的所有数据,那么对应的SQL语句如下:
select * from event_log where (ext_data::json#>>‘{extInfo,userType}‘)::text = ‘1‘
原文地址:https://www.cnblogs.com/chenpi/p/8986458.html
时间: 2024-10-08 00:02:28