Re: timestamp precision - can I control precision at select time

Поиск
Список
Период
Сортировка
От Christoph Haller
Тема Re: timestamp precision - can I control precision at select time
Дата
Msg-id 423FDC3D.2D59CBB2@rodos.fzk.de
обсуждение исходный текст
Ответ на timestamp precision - can I control precision at select time or set for all time?  ("mroyce@gmail.com" <mroyce@gmail.com>)
Ответы Re: timestamp precision - can I control precision at select time  ("mroyce@gmail.com" <mroyce@gmail.com>)
Список pgsql-sql
"mroyce@gmail.com" wrote:
> 
> I have a database with several tables that use timestamp without time
> zone type. I upgraded from an older pgsql and have code that does not
> expect the precision in the select output. Is there a way I can get the
> effect of zero precision without modifying all the tables?
> 
> The docs say it uses "default precision" as set in the "timestamp
> literal". I wasn't able to find docs describing what literals are. If
> there's a way I can set this to zero precision for everything, that'd
> save me a bunch of time.
> 
> with thanks,
> Royce
> 

I was facing the same obstacle. 
The only cure I've found was either 
SELECT CURRENT_TIMESTAMP ;        timestamptz          
------------------------------2005-03-22 09:43:51.05193+01
(1 row)
SELECT CURRENT_TIMESTAMP::TIMESTAMP(0) ;     timestamp      
---------------------2005-03-22 09:44:11
(1 row)

resp. change column types to TIMESTAMP(0) 
But I assume you've found this already by yourself. 

Regards, Christoph


В списке pgsql-sql по дате отправления:

Предыдущее
От: Theo Galanakis
Дата:
Сообщение: Re: C function extending postgres
Следующее
От: Christoph Haller
Дата:
Сообщение: Re: Your question about date