.  have a tablle like this: cust acc ----------- a 1 b 2 b 3 c 4 c 5 c 6 I Want below o/p: cust acc --------------- a 1 b 2|3 c 4|5|6 Please any one can you have any ideas share me. I have urgent requirement.
CUST         ACC
a            dv
b            fg
b            bh
c            mk
c            cl
c            so
result:-
A  B   c
dv fg mk
   bh cl
      so

Answers were Sorted based on User's Feedback



.  have a tablle like this: cust acc ----------- a 1 b 2 b 3 c 4 c 5 c 6 I Want below o/p: cust..

Answer / phanikumar kode

select cust,listagg(acc,' ') within group(order by acc) from  tbl group by cust;

Is This Answer Correct ?    2 Yes 0 No

.  have a tablle like this: cust acc ----------- a 1 b 2 b 3 c 4 c 5 c 6 I Want below o/p: cust..

Answer / barun

select decode(cust,'a',acc) as A ,decode(cust,'b',acc) as B,decode(cust,'c',acc) AS C from customer

Is This Answer Correct ?    1 Yes 0 No

.  have a tablle like this: cust acc ----------- a 1 b 2 b 3 c 4 c 5 c 6 I Want below o/p: cust..

Answer / ramaraju

select cust,listagg(acc,'|') within group(order by acc) from t2 group by cust;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What are data types in pl sql?

1 Answers  


What are sql functions? Describe in brief different types of sql functions?

1 Answers  


Define a temp table?

1 Answers  


Who is the owner of mysql database?

1 Answers  


How insert into statements in sql?

1 Answers  


Write a unique difference between a function and a stored procedure.

1 Answers  


What are types of joins?

1 Answers  


What is difference between procedure and trigger?

1 Answers  


Which is better varchar or nvarchar?

1 Answers  


What is sql procedures and functions?

1 Answers  


How to avoid duplicate records in a query?

1 Answers  


what is the use of HASH, LIST partitions?

1 Answers   ITC Infotech,


Categories