From: | Alvaro Herrera <alvherre(at)dcc(dot)uchile(dot)cl> |
---|---|
To: | Leonardo Boet Sánchez <boet(at)gtm(dot)tel(dot)etecsa(dot)cu> |
Cc: | "'pgsql-ayuda(at)tlali(dot)iztacala(dot)unam(dot)mx'" <pgsql-ayuda(at)tlali(dot)iztacala(dot)unam(dot)mx> |
Subject: | Re: [Pgsql-ayuda] funcion y setof record |
Date: | 2003-06-03 21:26:21 |
Message-ID: | 20030603212621.GB2714@dcc.uchile.cl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
On Tue, Jun 03, 2003 at 12:21:35PM -0400, Leonardo Boet Sánchez wrote:
> CREATE FUNCTION cumplemes(bpchar) RETURNS SETOF record AS
> 'select select trab.nombre, unidad.descrip, substring(trab.cident from 5 for 2) as dia1
> from trab inner join unidad on trab.unidad = unidad.unid
> where substring(trab.cident from 3 for 2)= $1
> order by trab.nombre asc' LANGUAGE 'sql' VOLATILE;
>
> al ejecutarla
> select * from cumplemes('07') as temp(nombre varchar, descrip varchar, dia1 varchar);
>
> me da el siguiente error: ERROR: Query-specified return tuple and actual function return tuple do not match.
Y los tipos de los campos de las tablas son ...?
Si son varchar(n) prueba con
select * from cumplemes('07') as temp(nombre text, descrip text, dia1
text);
Por favor nota que si me mandas una copia personal de este correo ademas
de mandarlo a la lista, lo que hago es borrar la copia personal. Y
eventualmente termino fastidiandome y quizás borraré las dos copias...
Moraleja, no me mandes una copia, con esta lista de correo es suficiente.
--
Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
"The first of April is the day we remember what we are
the other 364 days of the year" (Mark Twain)
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2003-06-03 21:27:15 | Re: [Pgsql-ayuda] Re: [Hilo] Ayuda con fechas de las tablas. |
Previous Message | Leonardo Boet Sánchez | 2003-06-03 16:21:35 | [Pgsql-ayuda] funcion y setof record |