web-dev-qa-db-ja.com

PostgreSQLのネストされたJSONクエリ

PostgreSQL 9.3.4では、「person」というJSON型の列があり、そこに保存されるデータは{dogs: [{breed: <>, name: <>}, {breed: <>, name: <>}]}という形式です。インデックス0で犬の種類を取得したい。実行した2つのクエリを次に示します。

機能しない

db=> select person->'dogs'->>0->'breed' from people where id = 77;
ERROR:  operator does not exist: text -> unknown
LINE 1: select person->'dogs'->>0->'bree...
                                 ^
HINT:  No operator matches the given name and argument type(s). You might need to add explicit type casts.

作品

select (person->'dogs'->>0)::json->'breed' from es_config_app_solutiondraft where id = 77;
 ?column?
-----------
 "westie"
(1 row)

なぜ型キャストが必要なのですか?非効率ではありませんか?私は何か間違ったことをしていますか、これはpostgres JSONサポートに必要ですか?

38
ravishi

これは、演算子->>がJSON配列要素をテキストとして取得するためです。結果をJSONに戻すにはキャストが必要です。

演算子->を使用して、この冗長なキャストを排除できます。

select person->'dogs'->0->'breed' from people where id = 77;
69
max taldykin