PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come posso fare meno di, maggiore che nei campi JSON Postgres?

Utilizzare l'operatore ->> (Ottieni campo oggetto JSON come testo) , ad es.

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)