I 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.
Answer Posted / trainedforjob
select cust, wm_conact(acc) as acc from table
group by cust
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What does the hierarchical profiler does?
What is procedure and function in sql?
Why are sql stored procedures used?
How do you use collections in procedure to return the resultset?
How does join work in sql?
How do I start sql profiler?
Explain ddl statements in pl/sql?
Is a foreign key always unique?
What is pls_integer in pl sql?
Can I join the same table twice?
how to calculate expressions with sql statements? : Sql dba
What is scope of pl sql developer in future?
Does view store data in sql?
What is the most restrictive isolation level? : Transact sql
What is the process of debugging?