Обсуждение: Seconds To Time

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

Seconds To Time

От
Willem de Jong
Дата:
Hi all, 

I'm a newby to PGSQL, I allways use MySQL, but now we use PGSQL, so i had 
to convert all the MySQL-Query's to PGSQL.

In MySQL we have the function Sec_to_time(seconds). This will result a 
time-value like '40:30:00'. 

With this Query
SELECT TIMESTAMP WITH TIME ZONE 'epoch' + sum(elapsed)/1000 * interval '1 
second' from Table1 GROUP BY ...
The result is a timestamp from the unixtime + the seconds elapsed.

How can I convert this to a time-value? 

Thanks in advance