how to get enames with comma seperated values by deptwise
on emp table?
Answer Posted / amitabha mandal
COLUMN employees FORMAT A50
SELECT deptno, wm_concat(ename) AS employees
FROM emp
GROUP BY deptno;
DEPTNO EMPLOYEES
---------- -------------------------------------------------
-
10 CLARK,KING,MILLER
20 SMITH,FORD,ADAMS,SCOTT,JONES
30 ALLEN,BLAKE,MARTIN,TURNER,JAMES,WARD
3 rows selected.
check tyhis link :http://www.oracle-
base.com/articles/misc/StringAggregationTechniques.php
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How does a covering index work?
Is sql a scripting language?
What do you understand by exception handling in pl/sql?
Explain select statements in sql?
What is a sql statement?
what is a scheduled jobs or what is a scheduled tasks? : Sql dba
What does select * from mean in sql?
What is data type in sql?
How to create a menu in sqlplus or pl/sql?
How do I run sql profiler?
What is the difference between an inner join and an outer join?
Can one improve the performance of sql*loader? : aql loader
Which kind of parameters cannot have a default value in pl sql?
How do I get sql certification?
What is sql profiler in oracle?