Skip to content

Instantly share code, notes, and snippets.

@NaiyaShah-BTC
Created April 30, 2019 05:48
Show Gist options
  • Save NaiyaShah-BTC/91f988b5ce349176045b6fbc66e658bc to your computer and use it in GitHub Desktop.
Save NaiyaShah-BTC/91f988b5ce349176045b6fbc66e658bc to your computer and use it in GitHub Desktop.
User.pick(:name)
# SELECT "users"."name" FROM "users" LIMIT ? [["LIMIT", 1]]
# => "David"
User.where(id: 5).pick(:name, :city)
# SELECT "users"."name", "users"."city" FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]]
# => ["Naiya", "Goa"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment