From: | "Jaime Casanova" <systemguards(at)gmail(dot)com> |
---|---|
To: | "Miguel Panuera" <mpanuera(at)gmail(dot)com> |
Cc: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: como devolver una consulta modificada?¿ |
Date: | 2007-08-06 23:45:34 |
Message-ID: | c2d9e70e0708061645l4f2e9f12p955c0dcebc710be8@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
On 8/6/07, Miguel Panuera <mpanuera(at)gmail(dot)com> wrote:
> Buenas Noches,
> les explico:
> tengo una consulta:
> select id, numerofactura, documento, igv, monto from tabla1
> resulta q el numero de factura, me devuelve 100123456
> donde deberia ser 001-123456 (creo q es algo q se puede hacer x sql)
> y tambien en igv, me devuelva el 19% del monto, dependiendo el documento.
>
19% mas o 19% menos o solo el 19%?? voy a asumir que 19% menos tu
veras que cambios haces para que se ajuste
select id, substring(numerofactura from 1 for 3) || '-' ||
substring(numerofactura from 4), documento, igv, monto / 1.19 from
tabla1
--
Atentamente,
Jaime Casanova
"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."
Richard Cook
From | Date | Subject | |
---|---|---|---|
Next Message | Jaime Casanova | 2007-08-06 23:58:58 | Re: explain analyze (dudas) |
Previous Message | Jaime Casanova | 2007-08-06 23:34:37 | Re: Case Insensitive / Acent insensitive |