RE: Help with SQL Function

Поиск
Список
Период
Сортировка
От Jeff Eckermann
Тема RE: Help with SQL Function
Дата
Msg-id 08CD1781F85AD4118E0800A0C9B8580B09487D@NEZU
обсуждение исходный текст
Ответ на Help with SQL Function  (Jeff Eckermann <jeckermann@verio.net>)
Список pgsql-general
Thanks, Tom, and also to Alex Pilosov for his answer.
I was extrapolating from the plpgsql docs, which I probably didn't
understand correctly.
Programming By Example (which is what we non-programmers are obliged to do)
doesn't work so well when the docs are somewhat sparse.
Are there any plans to expand the docs on plpgsql, since there are new
features coming?  Plpgsql looks like a good tool for enhancing my
development of financial etc reports, but in working with it, I've had two
weeks of frustration and not much of anything else so far.

> -----Original Message-----
> From:    Tom Lane [SMTP:tgl@sss.pgh.pa.us]
> Sent:    Saturday, January 06, 2001 3:41 PM
> To:    Jeff Eckermann
> Cc:    pgsql-general@postgresql.org
> Subject:    Re: [GENERAL] Help with SQL Function
>
> Jeff Eckermann <jeff@akira.eckermann.com> writes:
> > extracts=# create function testfunc(text) returns int4 as '
> > extracts'# select count (*) from dedcolo where equip_type = ''$1''
> --- That's doubled single quotes
> > extracts'# ' language 'sql';
> > CREATE
>
> That's looking for rows where equip_type = '$1'  ... ie, the literal
> string $1.  What you probably wanted is
>
> create function testfunc(text) returns int4 as '
> select count (*) from dedcolo where equip_type = $1
> ' language 'sql';
>
>             regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: ECPG could not connect to the database.
Следующее
От: "Mikheev, Vadim"
Дата:
Сообщение: RE: backend corruption