Needs Function - Mailing list pgsql-sql

From Penchalaiah P.
Subject Needs Function
Date
Msg-id A70AE049E81A6A40879D5DC0AC8C38C908DCF67D@venus.infics.com
Whole thread Raw
Responses Re: Needs Function
List pgsql-sql

 

I need a user defined function for the following purpose….

If I pass a string with comma ( , ) separated chars/values…. It should be appear in next line…

Ex: select get_sep_str (‘SK, rp, h, j, 6, 9, kl’) from dual;

Output :

SK

rp

h

j

6

9

kl

 

(Or)

 

I have one table like this…..

 

Temp Table:

 

Deptno number(10)

Empno  varchar2(200);

 

Data in temp table:

 

Deptno                       Empno

-----------                      ------------

10                                      B3091,B3092,B3093,B3085

11                                      3651,6521

12                                      H3062

 

Now, I want to display the data like this…..

 

Deptno                       Empno

---------                        ---------

10                   B3091

10                   B3092

10                   B3093

10                   B3094

11                   3651

11                   6521

12                   H3062

Now, how can I achieve this….

 

Information transmitted by this e-mail is proprietary to Infinite Computer Solutions and / or its Customers and is intended for use only by the individual or the entity to which it is addressed, and may contain information that is privileged, confidential or exempt from disclosure under applicable law. If you are not the intended recipient or it appears that this mail has been forwarded to you without proper authority, you are notified that any use or dissemination of this information in any manner is strictly prohibited. In such cases, please notify us immediately at info.in@infics.com and delete this email from your records.

pgsql-sql by date:

Previous
From: "Penchalaiah P."
Date:
Subject: Needs Function
Next
From: Tom Lane
Date:
Subject: Re: Dynamic prepare possible in plpgsql?