sql >> Database >  >> RDS >> PostgreSQL

Controleer of een Postgres JSON-array een string bevat

Vanaf PostgreSQL 9.4 kunt u de ? operator:

select info->>'name' from rabbits where (info->'food')::jsonb ? 'carrots';

U kunt zelfs de ? . indexeren vraag over de "food" toets als u overschakelt naar de jsonb typ in plaats daarvan:

alter table rabbits alter info type jsonb using info::jsonb;
create index on rabbits using gin ((info->'food'));
select info->>'name' from rabbits where info->'food' ? 'carrots';

Natuurlijk heb je daar als fulltime konijnenhouder waarschijnlijk geen tijd voor.

Bijwerken: Hier is een demonstratie van de prestatieverbeteringen op een tafel van 1.000.000 konijnen waarbij elk konijn twee soorten voer lekker vindt en 10% daarvan houdt van wortelen:

d=# -- Postgres 9.3 solution
d=# explain analyze select info->>'name' from rabbits where exists (
d(# select 1 from json_array_elements(info->'food') as food
d(#   where food::text = '"carrots"'
d(# );
 Execution time: 3084.927 ms

d=# -- Postgres 9.4+ solution
d=# explain analyze select info->'name' from rabbits where (info->'food')::jsonb ? 'carrots';
 Execution time: 1255.501 ms

d=# alter table rabbits alter info type jsonb using info::jsonb;
d=# explain analyze select info->'name' from rabbits where info->'food' ? 'carrots';
 Execution time: 465.919 ms

d=# create index on rabbits using gin ((info->'food'));
d=# explain analyze select info->'name' from rabbits where info->'food' ? 'carrots';
 Execution time: 256.478 ms


  1. 2 manieren om de servernaam in SQL Server (T-SQL) te retourneren

  2. Fix "ERROR 1054 (42S22):Onbekende kolom '...' in 'bestellingsclausule' bij gebruik van UNION in MySQL

  3. Hoe de status van de PostgreSQL-server Mac OS X te controleren

  4. Oracle 11g op Mac OS X