Tagged Questions
0
votes
1answer
57 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
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
115 views
TSQL DateRange counting day by day
I solve the problem which counts for 1 day but when I split the days into 1 day I got problem.
declare @Start datetime
declare @Finish datetime
declare @TimeRange int
set @Start = ...
1
vote
5answers
2k views
SQL Server : fetching records between two dates?
In SQL I write a SELECT statement to fetch data between two dates, using between and
Ex:
select *
from xxx
where dates between '2012-10-26' and '2012-10-27'
But the rows returned are for 26th ...
3
votes
2answers
309 views
Counting between two dates
I wrote a procedure which takes 3 parametes StartDate, EndDate and TimeRange. According to the TimeRange, my procedure splits dates and counting them seperately. Here is my procedure:
PROCEDURE ...
0
votes
2answers
251 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 ...
2
votes
2answers
80 views
Find any of days is fall under list of dates
I have a table which has two columns FromDate and ToDate.
Eg.
ID From Date To Date
1 2012-01-02 2012-01-07
2 2012-01-08 2012-01-14
3 2012-01-15 2012-01-21
4 2012-01-22 2012-01-28
...
1
vote
2answers
956 views
Include missing months in Group By query
I think I have a tough one here... :(
I am trying to get an order count by month, even when zero. Here's the problem query:
SELECT datename(month, OrderDate) as Month, COUNT(OrderNumber) AS Orders
...
0
votes
2answers
611 views
selecting max date in range, excluding multiple other date ranges
my first time posting.
I have a tricky task of finding the latest date within a range, but excluding multiple other date ranges. I have code that does work, but it seems awfully taxing.
I am ...
0
votes
1answer
402 views
sql query to return date range or all records or only null records
I have a sql query that I can not get to work correctly
Here is a simplified version of the query.
select * from Permit
inner join BMP on Permit.PermitNumber = BMP.PermitNumber
left join ...
0
votes
1answer
79 views
issue in a date range creation
I have been creating a date range, but in some cases a have a problem:
This is what I have: TABLE_1
date customer_id status total
---- ------------- -------- -------
...
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
1answer
259 views
SQL Server query performance on longer date range
I am trying to query a table which has a column that stores the transaction data that is in XML. My filer option is actually 1 of the node in my XML data. So below is my query
SELECT eRefNo, ...
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.
...
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 ...
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
