Answers for "get record by month rails"

1

find records created in a particular month rails

Model.where(:date_column => date)

Model.where('extract(year  from date_column) = ?', desired_year)
Model.where('extract(month from date_column) = ?', desired_month)
Model.where('extract(day   from date_column) = ?', desired_day_of_month)
Posted by: Guest on August-25-2020
0

record count by month in rails

NewsFeed.count(:group=>"date_trunc('month', created_at)",:conditions=>"user_id NOT IN (?)",[exluded_ids])
Posted by: Guest on August-20-2020

Code answers related to "get record by month rails"

Browse Popular Code Answers by Language