Re: What is the fastest null WHERE - Mailing list pgsql-performance

From Shridhar Daithankar
Subject Re: What is the fastest null WHERE
Date
Msg-id 3F7AC94E.1000407@persistent.co.in
Whole thread Raw
In response to What is the fastest null WHERE  ("Mindaugas Riauba" <mind@bi.lt>)
List pgsql-performance
Mindaugas Riauba wrote:

>   Hello,
>
>   While writing web application I found that it would
> be very nice for me to have "null" WHERE clause. Like
> WHERE 1=1. Then it is easy to concat additional
> conditions just using $query . " AND col=false" syntax.
>
>   But which of the possible "null" clauses is the fastest
> one?

Rather than this approach, keep a flag which tells you whether or not it is
first where condition. If it is not first where condition, add a 'and'. That
would be simple, isn't it?

  Shridhar


pgsql-performance by date:

Previous
From: Jeff
Date:
Subject: Re: Tuning/performance issue...
Next
From: Richard Huxton
Date:
Subject: Re: What is the fastest null WHERE