Re: [GENERAL] Query is not using index when it should

From: "Steinar H(dot) Gunderson" <sgunderson(at)bigfoot(dot)com>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: [GENERAL] Query is not using index when it should
Date: 2004-12-11 14:32:13
Message-ID: 20041211143213.GA2659@uio.no
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-performance pgsql-sql

On Sat, Dec 11, 2004 at 03:17:13PM +0100, Tomas Skäre wrote:
> select c.* from cjm_object c
> inner join
> (select max(timestamp) as timestamp,objectid,field from cjm_object
> group by objectid,field) t
> using(timestamp,objectid,field)
> where 1=1 and data is not null
> order by objectid,field;

Usually, SELECT max(field) FROM table is better written in PostgreSQL as
SELECT field FROM table ORDER field DESC LIMIT 1.

I don't see the point of "where 1=1", though...

/* Steinar */
--
Homepage: http://www.sesse.net/

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Ioannis Theoharis 2004-12-11 15:27:02 Clustering in the presence of hierarchies (fwd)
Previous Message Tomas =?iso-8859-1?q?Sk=E4re?= 2004-12-11 14:17:13 Re: Query is not using index when it should

Browse pgsql-performance by date

  From Date Subject
Next Message Mike Rylander 2004-12-11 14:37:15 Re: LIMIT causes SEQSCAN in subselect
Previous Message Tomas =?iso-8859-1?q?Sk=E4re?= 2004-12-11 14:17:13 Re: Query is not using index when it should

Browse pgsql-sql by date

  From Date Subject
Next Message Stephan Szabo 2004-12-11 15:47:51 Re: replacing mysql enum
Previous Message Tomas =?iso-8859-1?q?Sk=E4re?= 2004-12-11 14:17:13 Re: Query is not using index when it should