Re: plpgsql vs. SQL in stored procedures - Mailing list pgsql-sql

From Richard Huxton
Subject Re: plpgsql vs. SQL in stored procedures
Date
Msg-id 200403311306.04634.dev@archonet.com
Whole thread Raw
In response to Re: plpgsql vs. SQL in stored procedures  (Ivan Sergio Borgonovo <mail@webthatworks.it>)
List pgsql-sql
On Wednesday 31 March 2004 12:07, Ivan Sergio Borgonovo wrote:
>
> I was used to do stuff like this with MS SQL
>
> create proc sp_getuid @uid uniqueidentifier
[snip]
> Does it mean that to have variables in SP I'll have to use plpgsql
> in spite of plain SQL?

Yep - just like there you were using transact-sql (if I remember its name 
correctly) rather than sql.

The syntax is different (plpgsql bares a startling resemblance to the Oracle 
approach), the purpose of each is the same.
--  Richard Huxton Archonet Ltd


pgsql-sql by date:

Previous
From: Ivan Sergio Borgonovo
Date:
Subject: Re: plpgsql vs. SQL in stored procedures
Next
From: "Olivier Hubaut"
Date:
Subject: Is it normal that functions are so much faster than inline queries