Re: Convertir numero a HH:MM

From: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
To: Lennin Caro <lennin(dot)caro(at)yahoo(dot)com>
Cc: pgsql-es-ayuda(at)postgresql(dot)org, Edwin Quijada <listas_quijada(at)hotmail(dot)com>
Subject: Re: Convertir numero a HH:MM
Date: 2008-11-05 11:40:27
Message-ID: 20081105114027.GC4114@alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Lennin Caro escribió:
>
> > Subject: [pgsql-es-ayuda] Convertir numero a HH:MM
> > Tengo un valor integer que realmente es un tiempo. Como
> > convierto este numero a un tiempo de login. Supongo que este
> > tiempo es un epoch. Como puedo convertir ese numero a
> > formato HH:MM
>
> Si es un tipo epoch entonces esto te puede funcionar
>
> select extract(hour from to_timestamp(1225820868.12968)) ||':'|| extract(minute from to_timestamp(1225820868.12968)) ;

¿Concatenacion? Mejor to_char:

alvherre=# select to_char(to_timestamp(1225820868.12968), 'HH24:mm');
to_char
---------
14:11
(1 fila)

--
Alvaro Herrera http://www.amazon.com/gp/registry/CTMLCN8V17R4
"I'm always right, but sometimes I'm more right than other times."
(Linus Torvalds)

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Emanuel CALVO FRANCO 2008-11-05 12:06:21 Re: consulta sobre transaccion
Previous Message Fernando Javier Luyo Zegarra 2008-11-05 03:19:02 FW: Uso local de PostgreSQL y PostGIS