Created
April 30, 2019 05:48
-
-
Save NaiyaShah-BTC/91f988b5ce349176045b6fbc66e658bc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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