how to get enames with comma seperated values by deptwise
on emp table?
Answer Posted / kavitha nedigunta
SELECT deptno, wm_concat(ename) AS EMP_STRING
FROM emp
GROUP BY deptno;
works in 10g
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are sql built in functions?
What are functions in sql?
Is sql database free?
How to process query result in pl/sql?
What is a table?
What is minus?
What are the disadvantages of not performing database normalization?
What is embedded sql with example?
Can a key be both primary and foreign?
What is a procedure in pl sql?
What are few of the schema objects that are created using PL/SQL?
What are aggregate functions in sql?
What is scope and visibility in PL/SQL?
What are different functions in sql?
What is a clob in sql?