Re: formato de fechas

From: "Jaime Casanova" <systemguards(at)gmail(dot)com>
To: "Javier Villalba" <javier(dot)villalba(at)gmail(dot)com>, "PostgreSQL list ES" <pgsql-es-ayuda(at)postgresql(dot)org>
Subject: Re: formato de fechas
Date: 2006-07-22 17:53:34
Message-ID: c2d9e70e0607221053n6e9016f6i46edf0eb203d61b6@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

On 7/22/06, Alvaro Herrera <alvherre(at)commandprompt(dot)com> wrote:
> Javier Villalba escribió:
>
> > Creanme que he buscado y revuelto los archivos de la lista y la
> > documentación, pero no encunetro solución. Estoy haciendo una webapp
> > para una gente que contrató un hosting que provee Postgres 7.3.1
> > (viejisimo, lo sé, y no tengo forma de modificar eso).
>
> Cambiate de proveedor entonces. Ahi puedes perder todos tus datos, y
> ademas esta clarisimo que los administradores de ahi son totalmente
> incompetentes en lo que a Postgres respecta.
>
>
> SQL
> Use Oracle/Ingres-style dates and times. Note that this style has
> nothing to do with SQL (which mandates ISO 8601 style), the naming
> of this option is a historical accident.
>

en este formato te permite re-acomodar la posicion del mes y el dia
(al menos a partir del 7.4, otra razon mas para cambiar de proveedor.
Aunque la de Alvaro me parece mejor ;)

template1=# set datestyle='sql,dmy';
SET
template1=# select current_timestamp;
now
--------------------------------
22/07/2006 12:36:52.057156 ECT
(1 row)

template1=# set datestyle='sql,mdy';
SET
template1=# select current_timestamp;
now
--------------------------------
07/22/2006 12:36:59.740269 ECT
(1 row)

--
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

In response to

Responses

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Martin Marques 2006-07-22 18:07:53 Re: to_char a to_number
Previous Message Alvaro Herrera 2006-07-22 17:09:56 Re: ayuda con tipo anyelement