Re: question about performance

From: Alan Hodgson <ahodgson(at)simkin(dot)ca>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: question about performance
Date: 2008-07-20 18:40:59
Message-ID: 200807201140.59161@hal.medialogik.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sunday 20 July 2008, Robert Urban <urban(at)unix-beratung(dot)de> wrote:
> Hi PostgreSQLer,
>
> if I have a table, the_table, with a DATE field, i'll call it 'day', and
> I'd like to find all rows whos day falls within a given month, which of
> the following methods is faster/costs less:
>
> 1.
>
> SELECT * FROM the_table WHERE day LIKE '2008-01-%';
>
> 2.
>
> SELECT * FROM the_table
> WHERE ( day BETWEEN '$month_begin' AND '$month_end' );
>
> # where $month_begin is '2008-01-01' and $month_end is '2008-01-31';

2. Particularly if you have an index on the day field. Doing text operations
on date fields is not conducive to performance.

--
Alan

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Martin 2008-07-20 22:50:30 Field size
Previous Message A. Kretschmer 2008-07-20 18:36:48 Re: question about performance