Обсуждение: Timestamp, epoch and a bit confusion

Поиск
Список
Период
Сортировка

Timestamp, epoch and a bit confusion

От
"Valter Douglas Lisbôa Jr."
Дата:
Hello all.

I working with postgreSQL for a couple of months, and now I trying to convert
timestamp columns in epoch and epoch to timestamp columns. So far I could
reach, all SQL I find by 'googling' returns an error.

Where can I find some documentation with this convertions fo 8.2.x branch? I
think the Manual on the main site is not very helpfull in this case!!! ;-(

Thanks in advance.

--
Valter Douglas Lisbôa Jr.
Sócio-Diretor
Trenix - IT Solutions
"Nossas Idéias, suas Soluções!"
www.trenix.com.br
contato@trenix.com.br
Tel. +55 19 3402.2957
Cel. +55 19 9183.4244


Re: Timestamp, epoch and a bit confusion

От
Aurynn Shaw
Дата:
Valter Douglas Lisbôa Jr. wrote:
> Hello all.
> 
> I working with postgreSQL for a couple of months, and now I trying to convert 
> timestamp columns in epoch and epoch to timestamp columns. So far I could 
> reach, all SQL I find by 'googling' returns an error.

SELECT extract (epoch from your_time_field) from your_table;
SELECT to_timestamp(your_epoch_field) from your_table;

> 
> Where can I find some documentation with this convertions fo 8.2.x branch? I 
> think the Manual on the main site is not very helpfull in this case!!! ;-(
> 

And you can check out the docs @
http://www.postgresql.org/docs/current/static/functions-datetime.html#FUNCTIONS-DATETIME-EXTRACT


Hope that helps,
-- 
Aurynn Shaw

The PostgreSQL Company - Command Prompt, Inc. 1.503.667.4564 ext 103
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

ashaw@commandprompt.com


Re: Timestamp, epoch and a bit confusion

От
"Valter Douglas Lisbôa Jr."
Дата:
Thank you, very much. I pass through extract(epoch from x).

On Wednesday 12 March 2008 19:58:07 Aurynn Shaw wrote:
> Valter Douglas Lisbôa Jr. wrote:
> > Hello all.
> >
> > I working with postgreSQL for a couple of months, and now I trying to
> > convert timestamp columns in epoch and epoch to timestamp columns. So far
> > I could reach, all SQL I find by 'googling' returns an error.
>
> SELECT extract (epoch from your_time_field) from your_table;
> SELECT to_timestamp(your_epoch_field) from your_table;
>
> > Where can I find some documentation with this convertions fo 8.2.x
> > branch? I think the Manual on the main site is not very helpfull in this
> > case!!! ;-(
>
> And you can check out the docs @
> http://www.postgresql.org/docs/current/static/functions-datetime.html#FUNCT
>IONS-DATETIME-EXTRACT
>
>
> Hope that helps,
> --
> Aurynn Shaw
>
> The PostgreSQL Company - Command Prompt, Inc. 1.503.667.4564 ext 103
> PostgreSQL Replication, Consulting, Custom Development, 24x7 support
>
> ashaw@commandprompt.com



--
Valter Douglas Lisbôa Jr.
Sócio-Diretor
Trenix - IT Solutions
"Nossas Idéias, suas Soluções!"
www.trenix.com.br
contato@trenix.com.br
Tel. +55 19 3402.2957
Cel. +55 19 9183.4244