Tagged Questions
1
vote
2answers
53 views
Ruby : How to correctly calculate date difference?
I began with (date2 - date1).round, now this should have work.
Problem :
06 Jan,2013 to 05 Feb,2013 => 30
06 Feb,2013 to 05 Mar,2013 => 27
06 Mar,2013 to 05 Apr,2013 => 30
06 Apr,2013 to 27 ...
1
vote
1answer
65 views
PostgreSQL - how to fetch rows higher then year since the date
I have in the DATE column saved a dates. I try to get those rows, that are higher since that date about a year, two years etc.
The year, two years is a parameter from my app. Is possible to get these ...