> 
> How do I get this to go up by the day, not the second?

Change your grouping function in the SQL, rather than

DATE(calls.start_time_stamp)

can you use just the day of the month portion? Perhaps

DAYOFMONTH(calls.start_time_stamp)  (or just 
DAY(calls.start_time_stamp))

as long as you're selecting within a month, like start of month to 
current date.
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to