Re: Query Plan - Index Scan & Seq Scan

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: dbadmin(at)nqadmin(dot)com
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: Query Plan - Index Scan & Seq Scan
Date: 2005-05-12 16:30:06
Message-ID: 6708.1115915406@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Prasanth <dbadmin(at)nqadmin(dot)com> writes:
> code data type is int2.

Ah-hah. So "where code > 2::int2" should work noticeably better for
you. Or you could do "where code > '2'" to avoid hard-wiring the data
type knowledge into your queries. Or just change it to int4 ;-)
Or update to 8.0.

regards, tom lane

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Prasanth 2005-05-12 16:41:05 Re: Query Plan - Index Scan & Seq Scan
Previous Message Prasanth 2005-05-12 16:18:11 Re: Query Plan - Index Scan & Seq Scan