Skip to content

Instantly share code, notes, and snippets.

@AntelopeSalad
Created December 22, 2013 21:32
Show Gist options
  • Save AntelopeSalad/8088694 to your computer and use it in GitHub Desktop.
Save AntelopeSalad/8088694 to your computer and use it in GitHub Desktop.
# Account.where(id: 3).entries.first
SELECT "accounts".* FROM "accounts" WHERE "accounts"."id" = 3
# Account.find(3)
SELECT "accounts".* FROM "accounts" WHERE "accounts"."id" = $1 LIMIT 1 [["id", 3]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment