 |
| SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|

May 14th, 2007, 10:10 AM
|
|
Registered User
|
|
Join Date: May 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Count of same column appearing twice in same query
SELECT CONVERT(char(10),min(dateadd(day, datediff(day,'19000101',d_datecreated)/7*7, '19000101')),101) as StartWeek,
CONVERT(char(10),max(dateadd(day, datediff(day,'19000101',dateadd(day,6,d_datecreate d))/7*7, '19000101')),101) as EndWeek,
COUNT(*) AS MagazineAdCount
FROM orderformlineitems
where product_variant_id = '4010436709979469536'
group by datediff(day,'19000101',d_datecreated)/7
order by StartWeek ASC
Output
StartWeek EndWeek MagazineAdCount
04/16/2007 04/23/2007 8
04/23/2007 04/30/2007 15
04/30/2007 05/07/2007 5
SELECT CONVERT(char(10),min(dateadd(day, datediff(day,'19000101',d_datecreated)/7*7, '19000101')),101) as StartWeek,
CONVERT(char(10),max(dateadd(day, datediff(day,'19000101',dateadd(day,6,d_datecreate d))/7*7, '19000101')),101) as EndWeek,
COUNT(*) AS BannerAdCount
FROM orderformlineitems
where product_variant_id = '7453910328410493551'
group by datediff(day,'19000101',d_datecreated)/7
order by StartWeek ASC
Output
StartWeek EndWeek BannerAdCount
04/16/2007 04/23/2007 15
04/23/2007 04/30/2007 21
04/30/2007 05/07/2007 22
I WANT THE BELOW OUTPUT THRU A SINGLE QUERY.....
StartWeek EndWeek MagazineAdCount BannerAdCount
04/16/2007 04/23/2007 8 15
04/23/2007 04/30/2007 15 21
04/30/2007 05/07/2007 5 22
Can someone help ???
Thanks,
Andy
|
|

May 14th, 2007, 03:17 PM
|
|
Friend of Wrox
|
|
Join Date: May 2006
Posts: 246
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Code:
SELECT StartWeek,
EndWeek,
SUM(MagazineAdCount),
SUM(BannerAdCount)
FROM (
SELECT dateadd(day, datediff(day, 0, d_datecreated) / 7 * 7, 0) as StartWeek,
dateadd(day, datediff(day, 0, d_datecreated) / 7 * 7, 6) as EndWeek,
1 AS MagazineAdCount,
0 AS BannerAdCount
FROM orderformlineitems
where product_variant_id = '4010436709979469536'
UNION ALL
SELECT dateadd(day, datediff(day, 0, d_datecreated) / 7 * 7, 0),
dateadd(day, datediff(day, 0, d_datecreated) / 7 * 7, 6),
0,
1
FROM orderformlineitems
where product_variant_id = '7453910328410493551'
) AS d
GROUP BY StartWeek,
EndWeek
ORDER BY StartWeek
|
|
 |