繁体   English   中英

Rails查询中的<<>是什么意思?

[英]What does the `<>` in Rails query mean?

我很难搜索符号的含义,例如<>在rails查询中的含义。 那么<>是什么意思? (或者一般来说,您如何在Google中搜索<>类的东西?)

果壳

用简单的英语来说,以下查询是什么意思?

查询1:

@profile.socials.all.where.not(kind: [2, 3])

查询2:

@profile.socials.where("kind <> ?", "[:facebook, :linked_in]")

注意1: kind是数据类型enum ,如下所示:

enum kind: [ :twitter, :google_plus, :facebook, :linked_in, :skype, :yahoo ]

注意2:两个查询在控制台窗口中产生相同的结果。 我相信这两个查询都旨在对子集数据(使用不等于运算符)进行where查询。 我只是不知道如何解释<>任何线索。

详细Rails应用

这些是我的模型:

型号Profile

class Profile < ActiveRecord::Base
  has_many :socials, as: :sociable, dependent: :destroy
  accepts_nested_attributes_for :socials, allow_destroy: true
end

Social模型:

class Social < ActiveRecord::Base
  enum kind: [ :twitter, :google_plus, :facebook, :linked_in, :skype, :yahoo ]
  belongs_to :sociable, polymorphic: true
  validates_presence_of :kind
  validates_presence_of :username
end

迁移文件:

class CreateProfiles < ActiveRecord::Migration
  def change
    create_table :profiles do |t|
      t.string :first_name
      t.string :last_name
      t.timestamps null: false
    end
  end
end


class CreateSocials < ActiveRecord::Migration
  def change
    create_table :socials do |t|
      t.integer :kind, null: false
      t.string :username
      t.references :sociable, polymorphic: true, index: true

      t.timestamps null: false
    end
    add_index :socials, :kind
    add_index :socials, :username
  end
end

这是我的架构:

ActiveRecord::Schema.define(version: 20160311132502) do

  create_table "profiles", force: :cascade do |t|
    t.string   "first_name"
    t.string   "last_name"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
  end

  create_table "socials", force: :cascade do |t|
    t.integer  "kind",          null: false
    t.string   "username"
    t.integer  "sociable_id"
    t.string   "sociable_type"
    t.datetime "created_at",    null: false
    t.datetime "updated_at",    null: false
  end

  add_index "socials", ["kind"], name: "index_socials_on_kind"
  add_index "socials", ["sociable_type", "sociable_id"], name: "index_socials_on_sociable_type_and_sociable_id"
  add_index "socials", ["username"], name: "index_socials_on_username"

end

控制台输入

@profile = Profile.new
@profile.first_name = parameter[:profile][:first_name]
@profile.last_name = parameter[:profile][:last_name]
@profile.socials_attributes = parameter[:profile][:socials_attributes]
@profile.save
@profile = Profile.last
@profile.socials.kinds
@profile.socials.all.where(kind: 2) # => gives you the user facebook account
@profile.socials.all.where(kind: :facebook) # => Apparently only works in Rails 5 or above.

@profile.socials.all.where(kind: [2, 3]) # => gives you the user facebook and linked_in account
@profile.socials.all.where(kind: [:facebook, :linked_in]) # => Apparently only works in Rails 5 or above.

控制台提示-Rails 4解决方法(Rails 5中不需要)

这两个查询是等效的(仅选择用户的facebook帐户):

@profile.socials.all.where(kind: 2)

@profile.socials.all.where(kind: @profile.socials.kinds.keys.find_index("facebook"))

这两个查询是等效的(仅选择用户的facebook和linked_in帐户):

@profile.socials.all.where(kind: [2, 3])

@profile.socials.all.where(kind: [@profile.socials.kinds.keys.find_index("facebook"), @profile.socials.kinds.keys.find_index("linked_in")])

<>是SQL语法,不是Ruby或Rails。 这意味着not equal to 它与Ruby中的!=基本相同。

SQL中<>一个细微之处是它对NULL的行为。 在SQL中,将任何内容与NULL比较都会得到NULL 例如在Postgres中:

=> select 1<>1, 1<>2, 1<>null, null<>1, null<>null;
 ?column? | ?column? | ?column? | ?column? | ?column? 
----------+----------+----------+----------+----------
 f        | t        | NULL     | NULL     | NULL

请注意,即使最后一个表达式也是NULL 通常这不是您想要的,而是可以使用IS DISTINCT FROM

=> select null is distinct from 1, null is distinct from null;
 ?column? | ?column? 
----------+----------
 t        | f

编辑:解决您的后续问题:在您的数据库kind是一个整数。 因此,您想将其与整数进行比较:

@profile.socials.where.not(kind: [2, 3])

或者,如果您使用的是Rails 5

@profile.socials.where.not(kind: [:facebook :linked_in])

上面的方法是有效的,因为Rails 5将自动使用您的enum声明将这些符号转换为适当的整数。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM