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

时间:2016-03-11 23:14:10

标签: sql ruby-on-rails

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

果壳

用简单的英语,以下查询意味着什么?

查询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查询(使用not-equal-to运算符)。我只是没有了解如何解释<>

的线索

详细信息Rails App

这些是我的模特:

模型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")])

1 个答案:

答案 0 :(得分:5)

<>是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声明将这些符号转换为适当的整数。