Conerting multiple rows into sinlge row
Hi All,
Suppose the table is like given below,
EmpId Technology
1 Java
1 Oracle
1 .Net
1 MySQL
Here the above table (Technology) says the list of technologies working by Employee 1.
Now I want a query, which can give result like below,
EmpId Tech_java Tech_oracle Tech_.net Tech_mysql
1 java Oracle .Net MySQL
The data base is oracle 10g
Please let me know if any issue.
Thanks