Moving from MS SQL Server to PostgreSql 8.3 - Mailing list pgsql-novice

From dvanatta
Subject Moving from MS SQL Server to PostgreSql 8.3
Date
Msg-id 25699423.post@talk.nabble.com
Whole thread Raw
Responses Re: Moving from MS SQL Server to PostgreSql 8.3  (Brian Modra <brian@zwartberg.com>)
List pgsql-novice
I am converting my Sql Server stored procs to Postrgre functions.  I have the
following stored proc:

create stored procedures (@lastname varchar(50))
as
select
 firstname
,lastname
from users
where lastname = @lastname

Looking at the documentation for Postgres functions has me confused.  I
don't want to create a Table Type for each of my stored procs.  I am wanting
the function to have minimal syntax as possible, like the Sql Server stored
proc.  I read somewhere -- can't find it now -- that Postgres 8.3 had some
"syntactical sugar" to make functions act more like Sql Server stored procs
with less syntax.

Can someone please show me what this simple stored proc would look like in
Postgres 8.3 with minimal syntax?

Thanks
--
View this message in context:
http://www.nabble.com/Moving-from-MS-SQL-Server-to-PostgreSql-8.3-tp25699423p25699423.html
Sent from the PostgreSQL - novice mailing list archive at Nabble.com.


pgsql-novice by date:

Previous
From: Ounce Snow
Date:
Subject: error message on install
Next
From: Brian Modra
Date:
Subject: Re: Moving from MS SQL Server to PostgreSql 8.3