Skip to content

Instantly share code, notes, and snippets.

@jrolfs
Created December 20, 2014 20:52
Show Gist options
  • Save jrolfs/4ca3ca2dcaeb833b49b3 to your computer and use it in GitHub Desktop.
Save jrolfs/4ca3ca2dcaeb833b49b3 to your computer and use it in GitHub Desktop.
orders = Order.joins(:user)
.where('users.created_at > ?', start_date)
.select(order_columns)
.where('orders.created_at > ?', start_date) # <--- It's gotta be the join
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment