Re: how to make function to return multiple fields??
Date: Fri, 13 May 2005 07:28:44 -0700
Message-ID: <1115994272.800130_at_yasure>
jeffchirco_at_gmail.com wrote:
> After looking into pipelined funcitons. I am not sure if this will
> work for what I want. Or maybe I just don't see and it will work.
> Basically, taking my table example at the top, in my function I want to
> pass in a number and then have a sql stament like;
> select id, fname, lname
> from employees
> where id > number_in;
>
> And then have the function just return the results of that query. Can
> someone write a little example for me. I really just don't understand
> and I have been trying to figure it out for too long. My actually sql
> statement and function is more complicated but this small example is
> the jist of what I am looking for. Thanks alot.
Take any one of the examples on the PSOUG web site,
add an IN parameter
and a WHERE clause
-- Daniel A. Morgan University of Washington damorgan_at_x.washington.edu (replace 'x' with 'u' to respond)Received on Fri May 13 2005 - 16:28:44 CEST