Needs Function

From: "Penchalaiah P(dot)" <penchalaiahp(at)infics(dot)com>
To: <pgsql-sql(at)postgresql(dot)org>
Subject: Needs Function
Date: 2007-05-03 04:38:49
Message-ID: A70AE049E81A6A40879D5DC0AC8C38C908DCF67D@venus.infics.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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(dot)in(at)infics(dot)com and delete this email from your records.

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2007-05-03 05:55:18 Re: Dynamic prepare possible in plpgsql?
Previous Message Penchalaiah P. 2007-05-03 04:38:21 Needs Function