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
Which join condition can be specified using on clause?
How delete all data from table in sql?
What has stored procedures in sql?
Why we use cross join?
what is 'mysqld'? : Sql dba
Why stored procedure is faster than query?
what are string data types? : Sql dba
Is sql a scripting language?
How many types of privileges are available in sql?
How to prepare for oracle pl sql certification?
Why do we use sql constraints? Which constraints we can use while creating database in sql?
What are joins in sql?
What is sql performance tuning?
What are the different types of joins in sql?
what is a database? : Sql dba