web-dev-qa-db-ja.com

Postgres JSONデータ型Rails query

Postgresのjsonデータ型を使用していますが、json内にネストされたデータでクエリ/順序付けを行いたいです。

Jsonデータ型の.whereを使用して、注文またはクエリを行います。たとえば、フォロワー数が500を超えるユーザーを照会したり、フォロワー数またはフォロワー数で注文したりします。

ありがとう!

例:

model User

data: {
     "photos"=>[
       {"type"=>"facebook", "type_id"=>"facebook", "type_name"=>"Facebook", "url"=>"facebook.com"}
      ], 
     "social_profiles"=>[
         {"type"=>"vimeo", "type_id"=>"vimeo", "type_name"=>"Vimeo", "url"=>"http://vimeo.com/", "username"=>"v", "id"=>"1"},
         {"bio"=>"I am not a person, but a series of plants", "followers"=>1500, "following"=>240, "type"=>"Twitter", "type_id"=>"Twitter", "type_name"=>"Twitter", "url"=>"http://www.Twitter.com/", "username"=>"123", "id"=>"123"}
     ]
}
48

これにつまずく人のために。 ActiveRecordとPostgresのJSONデータ型を使用したクエリのリストを作成しました。これを編集して、より明確にしてください。

Postgres重要Railsコマンド:

# Sort based on the Hstore data:
2.1.1 :022 > Post.order("data->'hello' DESC")

=> #<ActiveRecord::Relation [#<Post id: 4, created_at: "2014-04-16 01:05:49", updated_at: "2014-04-16 01:05:49", data: {"hi"=>"23", "hello"=>"22"}>, #<Post id: 3, created_at: "2014-04-16 01:05:37", updated_at: "2014-04-16 01:05:37", data: {"hi"=>"13", "hello"=>"21"}>, #<Post id: 2, created_at: "2014-04-16 01:05:28", updated_at: "2014-04-16 01:05:28", data: {"hi"=>"3", "hello"=>"2"}>, #<Post id: 1, created_at: "2014-04-16 01:05:05", updated_at: "2014-04-16 01:05:05", data: {"hi"=>"2", "hello"=>"1"}>]> 



# Where inside a JSON object:
Record.where("data ->> 'likelihood' = '0.89'")

# Searching nested json object:
2.1.1 :130 > r.column_data
 => {"data1"=>[1, 2, 3], "data2"=>"data2-3", "array"=>[{"hello"=>1}, {"hi"=>2}], "nest"=>{"nest1"=>"yes"}} 

2.1.1 :130 > Record.where("column_data -> 'nest' ->> 'nest1' = 'yes' ")

# Searching within array:
Record.where("column_data #>> '{data1,1}' = '2' ")


# Searching within a value that’s an array:
Record.where("column_data #> '{array,0}' ->> 'hello' = '1' ")
# this only find for one element of the array. 

# All elements:
Record.where("column_data ->> 'array' LIKE '%hello%' ")
# This is advised against in Rails, use below:
Record.where("column_data ->> 'array' LIKE ?", "%hello%")

更新これについてはまもなくブログ投稿を書く予定で、ここにリンクを掲載します。

125

これによると http://edgeguides.rubyonrails.org/active_record_postgresql.html#json _->_と_->>_の使用には違いがあります:

_# db/migrate/20131220144913_create_events.rb
create_table :events do |t|
  t.json 'payload'
end

# app/models/event.rb
class Event < ActiveRecord::Base
end

# Usage
Event.create(payload: { kind: "user_renamed", change: ["jack", "john"]})

event = Event.first
event.payload # => {"kind"=>"user_renamed", "change"=>["jack", "john"]}

## Query based on JSON document
# The -> operator returns the original JSON type (which might be an object), whereas ->> returns text
Event.where("payload->>'kind' = ?", "user_renamed")
_

したがって、Record.where("data ->> 'status' = 200 ")またはクエリに適した演算子( http://www.postgresql.org/docs/current/static/functions-json.html )を試してください。

5
guapolo

質問は表示したデータに対応していないようですが、テーブルの名前がusersで、dataがそのテーブルの{count:123}、次にクエリ

SELECT * WHERE data->'count' > 500 FROM users

働くでしょう。データベーススキーマを見て、レイアウトを理解していることを確認し、Rails規約で複雑にする前にクエリが機能することを確認してください。

3
Meekohi