The date-range tag has no wiki summary.
0
votes
1answer
36 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 ...
0
votes
2answers
22 views
Getting date range grouped by month
I have an form where users can select a date range. For example, a date range could be:
$start = "5/1/2013";
$end = "6/5/2013";
I can easily grab the day difference between the two by doing ...
2
votes
2answers
81 views
Filtering an NSMutableArray of objects by starting date
I'm working on an iOS app and I have an NSMutableArray of objects , objects are events with a starting date and an end date .
The starting date is in a timestamp format , the end date isn't.
I want ...
0
votes
1answer
794 views
DatePicker with glDatePicker. date range with two inputs
I'm using glDatePicker to generate a date range selection system.
You have a From date input text and a To input text.
Is there any way to pass the selected date of one instance of glDatePicker ...
0
votes
2answers
39 views
Check if date is in range of multiple date ranges
I have a list of certificates that have an expiry date. I am trying to show different colours depending on how far away they are from expiry. I need to show red if it expires in less than 30 days (or ...
1
vote
1answer
38 views
Find within date range
I'm trying to find all services for each customer in a monthly date range.
Following this answered question CakePHP: Date Range I created this code in my summaries controller:
public function ...
0
votes
6answers
52 views
Count clicks in date range with SQL (PHP)
I want to count all clicks based on daily level from a date range.
Let's say I want to count all clicks between "2013-05-01" - "2013-05-30" and want the following result to be something like this:
...
0
votes
2answers
621 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
...
1
vote
1answer
52 views
Highlighting the dates between a start and end date in JQuery Datepicker
I have three datepickers - I have one datepicker which shows a six month span across the top, and then two date pickers beneath that applied to input fields. When the input fields are changed, I want ...
-3
votes
0answers
23 views
Calculate Utilisation in between twodates from Booking period [closed]
Vehicle Booking as below :
Booking start date :
1/11/2012
Booking End date:
5/01/2013
I need to find out vehicle utilization in between period means 1/12/2012 to 31/12/2013
(User is passing only ...
1
vote
1answer
85 views
How to pull selected date value from jsCalendar
I really like this calendar plugin for my mobile site: https://github.com/michaelkamphausen/jsCalendar
Seen working here: http://jsfiddle.net/dQxVV/1/
I am pretty new at JS and am having trouble ...
0
votes
2answers
58 views
Days range as months in PHP
I am trying to output a number of months using days(value fro $daydiff).
Whole code goes like:
$ArrivalDate = $variants_data['ArrivalDate'];
$daydiff=floor((abs(strtotime(date("Y-m-d")) - ...
0
votes
2answers
92 views
PostgreSQL- Filter a date range
I'm a SQL developer and spend most of my time in MSSQL. I'm looking for a better way to filter a "Timestamp without timezone" field in a PostGreSQL DB
I'm using:
Where
DateField >= '2010-01-01' ...
0
votes
1answer
98 views
Counts on Date Range and Individual Days
I'm having to re-write a project that was done using a combination of SQL queries and Query-of-Queries in ColdFusion. There were dozens of queries referencing the original SQL Query results set, but ...
0
votes
1answer
58 views
SQL Server Membership Date Range
I am a newbie to SQL Server with a rather complex SQL task and none of the solutions I have found so far is fit for my problem below.
I have a database table that currently holds membership joining ...
0
votes
4answers
3k views
mysql query help - check if date is between date1 and date2
I'm trying to write a query that will check today's date against my table columns date1 and date2 in mysql/php.. This is what I'm after:
'events' table:
date1 = start date (XXXX-XX-XX)
date2 = end ...
1
vote
5answers
8k views
Limiting a date range with exactness in MS SQL / SQL Server 2005
I want to limit a report to return records from Date A through Date B. This is what I have been doing:
declare @startDate varchar(20)
declare @endDate varchar(20)
set @startDate = '01/01/2008'
set ...
15
votes
8answers
25k 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 = ...
5
votes
3answers
2k views
Prevent inserting overlapping date ranges using a SQL trigger
I have a table that simplified looks like this:
create table Test
(
ValidFrom date not null,
ValidTo date not null,
check (ValidTo > ValidFrom)
)
I would like to write a trigger that prevents ...
2
votes
2answers
729 views
Timestamp comparing in timestamp range?
I currently have 2 timestamp fields in my RubyOnRails database defined as:
starttime:timestamp
endtime:timestamp
I want to write a simple function in my controller which will take the current time ...
0
votes
1answer
100 views
How do I convert Google Scripts date range strings like “LAST_MONTH” to actual dates?
Several functions in Google Scripts for Adwords supports the following date range strings:
TODAY, YESTERDAY, LAST_7_DAYS, THIS_WEEK_SUN_TODAY, LAST_WEEK, LAST_14_DAYS, LAST_30_DAYS, ...
1
vote
1answer
83 views
Using the cell value as the cell range for calculation
I am new to VBA. I am presently working on a validation tool already built by my predecessor.
The issue I want clarification on is selecting the cell range based on the result of a formula in another ...
1
vote
3answers
65 views
Find total duration inside date range that is covered by a list of ranges
I have a bunch of date ranges stored in records in a table, many of which overlap.
2013-03-10 10:00 - 2013-03-10 16:00
2013-03-10 15:00 - 2013-03-10 17:00
2013-03-10 20:00 - 2013-03-10 22:00
For my ...
0
votes
1answer
297 views
JQuery UI date picker end date 1 day after start date
So i am trying to restrict the user from selecting the check-out date
to be the same as the check-in date using jQuery UI Date range picker
(http://jqueryui.com/datepicker/#date-range). I have ...
0
votes
1answer
115 views
Mysql Advance query - Date Range Table to result per day columns
I got a challenge here.
I have a table that looks like this.
| DayDate |EndDate | Rate |
-----------------------------------
| 2013-07-01 |2013-08-05 | 200.00 |
| 2013-08-06 |2013-10-20 | ...
2
votes
1answer
133 views
Exclude weekends from dynamic range of dates
I have built an OFFSET formula for a dynamic range that represents an array of dates from a list. Based on todays date, it takes the dates starting from a Monday X weeks ago until Friday Y weeks ...
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 ...
0
votes
1answer
71 views
Multidimensional Array Between Dates and Total Price
I'm trying to make PHP array and here is my example.
In each array first row is unique record number "[767962]"
After inside that array hotel room id 1st row.
2nd is hotel name
3rd and 4th are ...
0
votes
0answers
387 views
How to customize search rules to handle date range in JQGrid
I'm loading data once from the server and locally filtering the data in advanced search and toolbar search. There is a date-time column on which I should filter for specific date as in :
...
0
votes
0answers
229 views
filter jqGrid locally over date range using daterangepicker
Im loading json data once and trying to filter data locally. I have a LastedUpdatedOn date field for which I am using filament group daterangepicker. However I am unable to filter over a date range ...
0
votes
1answer
263 views
Range validation attribute returns false alert for a valid date
My model holds two date properties.
that i want to limit their date range, so i place a data annotation attribute to validate it.
[Display(ResourceType = typeof(FaultManagementStrings), Name ...
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");
...
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
1answer
429 views
Crystal Reports Year Selecton
I'm using Crystal Reports 2011 and have a crosstab that's displaying data by YEAR (Row) and MONTH (Column). I need to report 3 years worth of data at any given time but in the month of April is when ...
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:
...
1
vote
3answers
956 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. ...
0
votes
1answer
147 views
SELECT string date rows In a Date Range using variable
Good day! I have a problem about filtering string date in date range using variable. Here's my sample query that didn't work:
Select * from table_name where datee >= '" & result & "' and ...
0
votes
4answers
82 views
Order By Minimum distance from getdate
I have this table
Id_User Id_Subscription Date_Expiration
1 1 2013-01-21
1 2 2013-01-28
2 1 2013-01-15
2 2 ...
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 ...
1
vote
3answers
678 views
MySQL count and display all dates in a range
I have Problems with a MySQL query. I have the following table:
[id]
[from] DATE (Y-m-d)
[days] INT
[...]
and i have the two PHP variables $start and $end. I want to have this result for example:
...
0
votes
2answers
64 views
How to set month range according to Indian financial years
According to Indian financial year(April-1 to March-31), how do i get range when month changed to January my logic fails after 31 December, nothing is displayed.Here is my code for displaying all ...
0
votes
0answers
52 views
Getting slice from super column family index
I have a super CF index along the lines of below, used for full text searches - where the column names represent entity IDs, and are actually timestamps (ticks):
FullTextIndex : // ColumnFamily
{
...
4
votes
1answer
84 views
How to print a date range as a string?
I want to print a date range as string using R.
Following is what I did
> startDate <- as.Date("2005-02-02")
> endDate <- as.Date("2005-02-07")
> dates <- startDate:endDate
> ...
0
votes
2answers
390 views
how to set a range as default date in keith wood's datepicker?
how to set a "range" by default in keith wood's datepicker ?? link text
0
votes
2answers
61 views
how find collective range in two period in database
i have a table in database , and i want write query code to select collective date between two record .
this is sample code :
table is :
CREATE TABLE `user` (
`userid` int(11) NOT NULL ...
-2
votes
1answer
138 views
Time intervals overlapping with MySQL
I'm trying to create booking system with multiple resources: Calendar#1 and Calendar#2. Calendars do not contain overlapping ranges itself. Range in one calendar can span multiple ranges in the other ...
3
votes
2answers
145 views
Data Warehouse: Working with accumulated data
Our data warehouse uses accumulated data (and there is no way to invert the accumulation) from a data source to create a snowflake schema. A requirement we have to cope with is that our schema must be ...
0
votes
2answers
252 views
Date range advanced count calculation in TSQL
I am working on call center project and I have to calculate the call arrivals at the same time between specific time ranges.
I have to write a procedure which has parameters StartTime, EndTime and ...
0
votes
2answers
131 views
How to select the record between the date range including the given date in Mysql
I need to check the date in the range from_date and to_date.
Ex) Employee applies leave from 2012-11-08 to 2012-11-09, here I need to check 2012-11-08 with the date range includes the from_date and ...





