| From: | "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com> |
|---|---|
| To: | pgsql-general(at)postgresql(dot)org |
| Subject: | Re: pl/pgsql function with argument of type DATE |
| Date: | 2008-06-12 08:25:05 |
| Message-ID: | 20080612082505.GE24463@a-kretschmer.de |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
am Tue, dem 10.06.2008, um 18:02:01 +0100 mailte Bojan folgendes:
> How to invoke function which has arguments declared as type ?date??
>
>
>
> I want to make function which will return a list of all dates between starting
> and ending
>
> date which are two arguments of that function. I tried with:
>
>
>
> select * from foo(2008-06-01, 2008-06-09)
>
> select * from foo(?2008-06-01?, ?2008-06-09?)
select * from foo('2008-06-01'::date, '2008-06-09'::date);
Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Guillaume Lelarge | 2008-06-12 08:30:08 | Re: pgAdmin complains about vacuuming required after fresh 8.1 install |
| Previous Message | Dave Page | 2008-06-12 08:23:11 | Re: pgAdmin complains about vacuuming required after fresh 8.1 install |