Advertisement

05.29.2008 at 06:06PM PDT, ID: 23443411
[x]
Attachment Details

transposing multiple rows into multiple columns of single row

Asked by OceanReefClub in SQL Query Syntax

Tags: SQL 2005

My SQL query SUMs up sales transactions by day by revenue center by customer type (3 types).
It results a queryset with 3 rows - 1 for each of 3 member types -- date / revenue center ID / daily sales total
I want an output that shows date / revenue center ID / daily sales total (TYPE 1) / daily sales total (TYPE 2) / daily sales total (TYPE 3)
How can I transpose 3 rows into 3 columns?
It needs to process multiple days at once, as there are 3 years of data in that table and it's added to each night for previous day's transactions.
Start Free Trial
1:
2:
3:
4:
SELECT     TOP (100) PERCENT SUM(TRANAMT) AS Total, TRANDATE, MEMBERTYPE, GROUPID
FROM         dbo.view_V1_Transactions_All
GROUP BY TRANDATE, MEMBERTYPE, GROUPID
ORDER BY TRANDATE, MEMBERTYPE, GROUPID
 
Loading Advertisement...
 
[+][-]05.29.2008 at 07:48PM PDT, ID: 21674908

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]05.30.2008 at 08:48AM PDT, ID: 21678891

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: SQL Query Syntax
Tags: SQL 2005
Sign Up Now!
Solution Provided By: mark_wills
Participating Experts: 2
Solution Grade: A
 
 
[+][-]06.03.2008 at 06:12AM PDT, ID: 21699980

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628