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

seleziona da ... - in base a un valore in formato JSON

Se ho capito bene il manuale, puoi accedere ai campi JSON con -> e ->> operatori. La query sarebbe simile a:

SELECT *
FROM your_table
WHERE json_field ->> 'occupation' = 'football';