The date-range tag has no wiki summary.
15
votes
8answers
24k views
How to check if a date is in a given range?
If you have a $start_date and $end_date, how can you check if a date given by the user falls within that range?
e.g.
$start_date = '2009-06-17';
$end_date = '2009-09-05';
$date_from_user = ...
10
votes
6answers
9k views
Getting Dates between a range of dates
I need to get all the dates present in the date range using SQL Server 2005
16
votes
6answers
12k views
PHP: Return all dates between two dates in an array
Expected Input:
getDatesFromRange( '2010-10-01', '2010-10-05' );
Expected Output:
Array( '2010-10-01', '2010-10-02', '2010-10-03', '2010-10-04', '2010-10-05' )
19
votes
2answers
10k views
Generating a report by date range in rails
How would you go about producing reports by user selected date ranges in a rails app? What are the best date range pickers?
edit in response to patrick : I am looking for a bit of both widget and ...
2
votes
5answers
12k views
Date Range Query MySQL
I need a query to select data between two dates with today's date as a reference.
The database has a datetime field for "start" and a datetime field for "end".
$todays_date = date("Y-m-d H:i:s");
...
4
votes
6answers
10k views
SQL join against date ranges?
Consider two tables:
Transactions, with amounts in a foreign currency:
Date Amount
========= =======
1/2/2009 1500
2/4/2009 2300
3/15/2009 300
4/17/2009 2200
etc.
...
5
votes
1answer
4k views
jQuery UI Datepicker - Date range - Highlight days in between
I'm looking for a way of highlighting the days in between the date range of 2 inputs on mouse over.
This example is nearly doing what I want to achieve:
...
5
votes
2answers
2k views
Find overlapping date ranges in PostgreSQL
Is this correct?
SELECT *
FROM contract
JOIN team USING (name_team)
JOIN player USING(name_player)
WHERE name_team = ?
AND DATE_PART('YEAR',date_join)>= ?
AND ...
1
vote
3answers
958 views
Counting values by day/hour with timeseries in MATLAB
So, I'm beginning to use timeseries in MATLAB and I'm kinda stuck.
I have a list of timestamps of events which I imported into MATLAB. It's now a 3000x25 array which looks like
...
1
vote
1answer
646 views
Django model timerange filtering method
I saw the next two method on old question here but it is not clear for me what is the difference between:
{'date_time_field__range': (datetime.datetime.combine(date, datetime.time.min),
...
0
votes
1answer
33 views
Designing non-overlapping date-time events
I have the following problem:
Events have a "begin" and "end" time and an amount. I use MySQL DATETIME for both.
Now if I have a constraint that says "no overlapping events" I need to make some ...
5
votes
1answer
3k views
ORACLE SQL Date range intersections
I have a table T1, it contains a NAME value (not unique), and a date range (D1 and D2 which are dates)
When NAME are the same, we make a union of the date ranges (e.g. B).
But as a result (X), we ...
5
votes
2answers
1k views
Ruby's range step method causes very slow execution?
I've got this block of code:
date_counter = Time.mktime(2011,01,01,00,00,00,"+05:00")
@weeks = Array.new
(date_counter..Time.now).step(1.week) do |week|
logger.debug "WEEK: " + week.inspect
...
2
votes
2answers
2k views
Date Range Intersection Splitting in SQL
I have a SQL Server 2005 database which contains a table called Memberships.
The table schema is:
PersonID int, Surname nvarchar(30), FirstName nvarchar(30), Description nvarchar(100), StartDate ...
1
vote
1answer
505 views
Compare multiple date ranges
I am using iReport 3.0.0, PostgreSQL 9.1. For a report I need to compare date ranges from invoices with date ranges in filters and print for every invoice code if a filter range is covered, partially ...
3
votes
4answers
2k views
SQL group by frequency within a date range
I have a requirement to write a stored procedure that accepts a start date, end date and a frequency (day, week, month, quarter, year) and outputs a result set based on those parameters. Obviously, ...
2
votes
2answers
2k views
php select datetime range
I want to use php to select records from Mysql in date range.
for example, i want to select date range ( 2011-02-23, 2011-02-24)
$query = "select * from table where date_field between '2011-02-23' ...
1
vote
2answers
270 views
Compare many date ranges in google app engine datastore (Many to many, Python)
I have two data sets in google app engine datastore.
class First_Set(db.Model):
start_time = db.DateTimeProperty()
end_time = db.DateTimeProperty()
data1 = db.FloatProperty()
...
class ...
1
vote
2answers
319 views
Weekly total sums
I have a table in a PostgreSQL database containing dates and a total count per day.
mydate total
2012-05-12 12
2012-05-14 8
2012-05-13 4
2012-05-12 12
2012-05-15 ...
1
vote
1answer
3k views
MVC Model Range Validator?
i wnat to validate the datetime, My Code is:
[Range(typeof(DateTime),
DateTime.Now.AddYears(-65).ToShortDateString(),
DateTime.Now.AddYears(-18).ToShortDateString(),
ErrorMessage ...
1
vote
3answers
141 views
Generate a range of dates when those dates are not present in the data
Here is my table structure:
CREATE TABLE EVENT (
EventID INT(11) NOT NULL AUTO_INCREMENT,
EventDate DATETIME DEFAULT NULL,
Description VARCHAR(50) DEFAULT NULL, PRIMARY KEY (EventID)
);
And ...
1
vote
3answers
948 views
Which days are work days in a given date range
Is there a built in function that will tell me which days are work days? this is what i mean,
If I were to choose today's date (6/14/2011), it will give me any inspection numbers clocked out today. ...
1
vote
3answers
375 views
django aggregation to lower resolution using grouping by a date range
horrible title, but let me explain: i've got this django model containing a timestamp (date) and the attribute to log - f.e. the number of users consuming some ressource - (value).
class ...
0
votes
2answers
518 views
Date range picker on jquery ui datepicker
I created a date range picker using jquery ui where you can use the same inline calendar to make both of your date selections.
See my fiddle here: http://jsfiddle.net/kVsbq/4/
JS
...
0
votes
1answer
52 views
Calculate Sessions Between TimeRange in TSQL
Here is part of database:
SessionID SessionStartTime SessionCloseTime
24 2012-10-16 01:00:06.000 2012-10-16 01:01:22.000
24 2012-10-16 01:00:08.000 ...
0
votes
2answers
122 views
How to calculate Maximum incoming Call Peaks?
Here is part of database:
SessionID SessionStartTime SessionCloseTime
24 2012-10-16 01:00:06.000 2012-10-16 01:01:22.000
24 2012-10-16 01:00:08.000 ...
0
votes
2answers
328 views
Date range array excluding the Sunday & the holiday in PHP
I have a function which returns all the dates between two dates in an array, But I need to exclude Sundays in that array.
public function dateRange($first, $last, $step = '+1 day', $format = 'd/m/Y' ...
0
votes
1answer
2k views
datatables date filter
I have one Date column, formatted '17/03/2012'.
I would like to be able select a start and end date and if the 1 date column above is within this date range it will filter the column.
Below is the ...
0
votes
1answer
315 views
member check and date range check in Matlab
I have 2 matrices with the SAME IDs. I need to extract those rows of IDs from mat1 which have their dates within say ±5 days of the dates in the mat2. Same operation for mat2 as well. Please see ...
0
votes
2answers
312 views
Getting a range of dates for PostgreSQL
I would like to get the entries for a range of dates, using PostgreSQL.
For example...
beginyear endyear name
--------- ------- -----
950 1100 jason
1300 ...
0
votes
2answers
253 views
Negative dates in SQLite
Newly compiled SQLite displays a strange behavior concerning the date/time functions. Do you have any idea what is going on and how to fix it?
$ date
Mon Mar 8 14:52:11 CET 2010
$ ...
0
votes
2answers
3k views
Jquery bassistance: validate that end date is after start date
I am using jquery bassistance validation and need to verify that a start date is after an end date. I am wondering if anyone knows if this functionality exists and if I can add rules to do this or if ...