cast - Mailing list pgsql-sql

From Judith Altamirano Figueroa
Subject cast
Date
Msg-id 1129313323.4577.55.camel@Desarrollo
Whole thread Raw
Responses Re: cast  (Andrew Sullivan <ajs@crankycanuck.ca>)
List pgsql-sql
Hello I have a query that ran in 7.0.2, but in 8.0.1 does not, the query
is the next:



select      n.factura,     n.venta_neta,     c.nombre_cli || ' ' || c.apellido_pat_cli || ' ' || coalesce
(c.apellido_mat_cli,''),         date(n.fecha_hora_factura),     o.nombre_oftfrom      nota_venta n,     clientes c,
           oft_central owhere      date(n.fecha_hora_factura) >= '2005-10-01' and     date(n.fecha_hora_factura) <=
'2005-10-14'and     n.id_cliente = c.id_cliente and     cast(n.udf4 as integer) = o.id_oft_central and     n.factura is
notnull and                n.s_factura != 'T'order by o.nombre_oft";
 

it aparently returns an error because the cast, but I need to do the
cast, does somebody knows how can I change the cast but with the same
result, thnks!!!!




pgsql-sql by date:

Previous
From: Tyler Kellen
Date:
Subject: FULL OUTER JOIN Question (mistake)
Next
From: Andrew Sullivan
Date:
Subject: Re: cast