sql >> データベース >  >> RDS >> PostgreSQL

PostgresJSON配列に文字列が含まれているかどうかを確認します

    PostgreSQL 9.4以降、?を使用できます 演算子:

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

    ?にインデックスを付けることもできます "food"でクエリを実行します jsonbに切り替える場合はキー 代わりに入力してください:

    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';
    

    もちろん、あなたはおそらくフルタイムのウサギの飼育係としてそのための時間はありません。

    更新: これは、1,000,000匹のウサギのテーブルでのパフォーマンスの向上のデモンストレーションです。各ウサギは、2つの食べ物が好きで、そのうちの10%はニンジンが好きです。

    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. RefCursorの戻り型を使用してOracleストアドプロシージャをテストするにはどうすればよいですか?

    2. AndroidSQLiteデータベースの単体テスト

    3. SQLで絶対値を計算する方法

    4. 2つの日付の間の日付のリストを取得します