Qestion about CREATE FUNCTION - Mailing list pgsql-general

From Cornelia Boenigk
Subject Qestion about CREATE FUNCTION
Date
Msg-id 001d01c1c165$bb236040$aec1fea9@zwerg98
Whole thread Raw
Responses Re: Qestion about CREATE FUNCTION  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
Hi all

I defined the following function:

CREATE FUNCTION ka(member)
RETURNS member AS
'UPDATE member SET m_email = ''unbekannt'' WHERE m_email = NULL:
SELECT * FROM member;'
LANGUAGE 'sql';

If I call
SELECT ka(member) FROM member;
      ka
-------------
 12257440
.....

I get this number as many times as the table consists rows (no matter
weather they were updated or not). Could anybody tell me what kind of
result this is? What does this number mean?

If I use the notation with $1 like in the Programmers Guide in chapter
13.1.3 I get a parsing error. (??)

Could anybody explain this behaviour?

Thanks and greetings
Conni




pgsql-general by date:

Previous
From: Chris Gamache
Date:
Subject: improving performance of UNION and ORDER BY
Next
From: Jean-Luc Lachance
Date:
Subject: Re: improving performance of UNION and ORDER BY