Re: SQL timestamp to date cast - Mailing list pgsql-sql

From Andrei Bintintan
Subject Re: SQL timestamp to date cast
Date
Msg-id 010a01c4fed4$3fba1ca0$0b00a8c0@forge
Whole thread Raw
In response to SQL timestamp to date cast  ("Andrei Bintintan" <klodoma@ar-sd.net>)
Responses Re: SQL timestamp to date cast  (Michael Fuhr <mike@fuhr.org>)
List pgsql-sql
> Another possibility would be to create a functional index on datetime:
>
> CREATE INDEX user_action_date_idx ON user_action (date(datetime));

GREAT!!! I thought it is possible but I didn't knew how to make such 
indexes. :))

Thank you !!!
Andy.

----- Original Message ----- 
From: "Michael Fuhr" <mike@fuhr.org>
To: "Andrei Bintintan" <klodoma@ar-sd.net>
Cc: <pgsql-sql@postgresql.org>
Sent: Thursday, January 20, 2005 11:33 AM
Subject: Re: [SQL] SQL timestamp to date cast


> On Thu, Jan 20, 2005 at 10:52:50AM +0200, Andrei Bintintan wrote:
>
>> SELECT DISTINCT(nummer)
>> FROM user_action
>> WHERE datetime::date='11/11/2004' AND id_action IN (5,6,9)
>>
>> Now, datetime has the type timestamp. How can I make an index or write
>> different this query so that it runs faster?
>
> You could create an index on datetime and rewrite your queries:
>
> CREATE INDEX user_action_datetime_idx ON user_action (datetime);
>
> SELECT DISTINCT(nummer)
> FROM user_action
> WHERE datetime >= '11/11/2004' AND datetime < '11/12/2004'
>  AND id_action IN (5,6,9);
>
> Another possibility would be to create a functional index on datetime:
>
> CREATE INDEX user_action_date_idx ON user_action (date(datetime));
>
> SELECT DISTINCT(nummer)
> FROM user_action
> WHERE date(datetime) = '11/11/2004' AND id_action IN (5,6,9);
>
> -- 
> Michael Fuhr
> http://www.fuhr.org/~mfuhr/
> 



pgsql-sql by date:

Previous
From: Silke Trissl
Date:
Subject: Problem on Geometric functions
Next
From: Michael Fuhr
Date:
Subject: Re: SQL timestamp to date cast