Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

cross tab using sql

861750May 29 2011 — edited May 31 2011
Hi,

I am using oracle 11g version.

I have a reporting requirement where in I have to produce a cross tab as explained below. Please help me in writing an SQL query to achieve this. Many thanks.


Sample data:
------------------
Customer             product type
--------------------------------------------
AAA	                      DVD
AAA	                      Tape
BBB	                      Tape
CCC                                 DVD
CCC	                      Bluray
DDD	                      DVD
DDD	                      Tape
DDD	                      Bluray
Logic
																
	AAA			                               BBB					CCC					DDD		
	DVD	Tape	Bluray				DVD	Tape	Bluray			DVD	Tape	Bluray			DVD	Tape	Bluray
DVD		1				DVD					DVD			1		DVD		1	
Tape	1					Tape		1			Tape					Tape	1		1
Bluray						Bluray					Bluray	1				Bluray		1	
Final Output
No. of customers who purchased the products across all product types
				
	DVD	Tape	Bluray			
DVD		2	1			
Tape	2	1	1			
Bluray	1	1				
Scripts:
-------------------------
create table cust_product(customer varchar2(5), product_type varchar2(10));

insert into cust_product values('AAA','DVD');
insert into cust_product values('AAA','Tape');
insert into cust_product values('BBB','Tape');
insert into cust_product values('CCC','DVD');
insert into cust_product values('CCC','Bluray');
insert into cust_product values('DDD','DVD');
insert into cust_product values('DDD','Tape');
insert into cust_product values('DDD','Bluray');
This post has been answered by Frank Kulash on May 29 2011
Jump to Answer

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jun 28 2011
Added on May 29 2011
5 comments
486 views