Re: Stored Procedure

From: "Andrew G(dot) Hammond" <drew(at)xyzzy(dot)dhs(dot)org>
To: Fernández Mariano <mfernandez(at)infoauto(dot)gov(dot)ar>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Stored Procedure
Date: 2001-11-24 09:48:10
Message-ID: E167ZPx-00050l-00@xyzzy.lan.internal
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 2001 November 21 08:35 am, Fernández Mariano wrote:
> Hello Pasha
>
> I'm trying to create a function that return a (select * from table1,
> table2..where attrib = $1...) of join. But I can't make this. Like to
> Stored Procederue in MS-SQL Server
> Can you help me?

Looks more like you want a VIEW. For example:

CREATE TABLE a (id SERIAL PRIMARY KEY, name TEXT);
CREATE TABLE b (id SERIAL PRIMARY KEY, data TEXT,
key_a INTEGER REFERENCES a(id));
CREATE VIEW c AS SELECT name, data FROM a, b WHERE a.id = b.key_a;

Then simply SELECT from the VIEW.

- --
Andrew G. Hammond mailto:drew(at)xyzzy(dot)dhs(dot)org http://xyzzy.dhs.org/~drew/
56 2A 54 EF 19 C0 3B 43 72 69 5B E3 69 5B A1 1F 613-389-5481
5CD3 62B0 254B DEB1 86E0 8959 093E F70A B457 84B1
"To blow recursion you must first blow recur" -- me
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAjv/bNsACgkQCT73CrRXhLFGkQCfbEwNXXH7/frMpprQtccQ/bEA
J5kAnjgH1z/BzRX4WFnS9rFgIRPg2r3H
=lrRa
-----END PGP SIGNATURE-----

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Andrew G. Hammond 2001-11-24 09:55:18 Re: How to return more than one row of data from a function in PL/pgSQL
Previous Message Andrew G. Hammond 2001-11-24 09:39:01 Re: Question