PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como posso fazer menos que, maior que nos campos JSON Postgres?


Use o operador ->> (Obter campo de objeto JSON como texto) , por exemplo.
with my_table(id, json) as (
values
(1, '{"key":95}'::json),
(2, '{"key":90}'),
(3, '{"key":50}')
)

select *
from my_table
where (json->>'key')::int >= 90;

 id |    json    
----+------------
  1 | {"key":95}
  2 | {"key":90}
(2 rows)