我在 postgresql 的一列中有这些数据
{
"geometry":{
"status":"Point",
"coordinates":[
-122.421583,
37.795027
]
},
我用他的查询
select * from students where data_json LIKE '%status%' ;
上面的查询返回结果,但这个没有
select * from students where data_json LIKE '%status:%' ;
如何解决这个问题