Re: date question

Поиск
Список
Период
Сортировка
От Michael Glaesemann
Тема Re: date question
Дата
Msg-id 492564A9-C512-411D-BAC6-D48693CEDFA0@myrealbox.com
обсуждение исходный текст
Ответ на date question  (Judith Altamirano Figueroa <jaltamirano@correolux.com.mx>)
Список pgsql-sql
On Nov 4, 2005, at 1:17 , Judith Altamirano Figueroa wrote:

> Hi everybody, in Postgres 7.0.2 I have the next query:
>
> SELECT * from clientes_proceso where fecha_mod::date <= now() -1;
>
> but in version 8.0.1 returns the next error:
>
> ERROR: The operator doesn't exist: timestamp with time zone - integer
>
> How can drop a day to now()??


You can try a couple of different things: one is to use CURRENT_DATE  
- 1 instead of now() -1. Another would be to cast now() to date,  
e.g., now()::date - 1.

Hope this helps.


Michael Glaesemann
grzm myrealbox com





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

Предыдущее
От: lucas@presserv.org
Дата:
Сообщение: Re: date question
Следующее
От: "zackchandler"
Дата:
Сообщение: Design question: Scalability and tens of thousands of tables?