PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Jak mogę zrobić mniej niż, więcej niż w polach JSON Postgres?

Użyj operatora ->> (Pobierz pole obiektu JSON jako tekst) , np.

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)    


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. ValueError:Nie można rzutować DatetimeIndex na dtype datetime64[us]

  2. hibernacja z c3p0:funkcja createClob() nie jest jeszcze zaimplementowana

  3. Postgresql Utwórz unikalny indeks

  4. Postgres:BŁĄD:wartość za długa dla znaku typu zmienna(255) Nie określa pola

  5. Kopiuj w Postgresql:Ścieżka bezwzględna interpretowana jako ścieżka względna