On Thu, 30 Oct 2003, Ken Guest wrote:
> Folks,
> I have a question or two regarding PHP and Postgres on the issue of
> speed:
> 1.Is the semicolon at the end of SQL superflous when sent to Postgres?
> Should it make much of a difference if I removed it?
Yes, you can get rid of it. No, it won
On Thu, 30 Oct 2003, David Green wrote:
>
> On Thu, 30 Oct 2003, Scott Marlowe wrote:
>
> > "It's far more likely that optimizing your SQL queries will yield the
> > greatest increase in performance. Things like replacing "select max(id)
> > from table" with "select id from table order by id de
On Thu, 30 Oct 2003, Scott Marlowe wrote:
> "It's far more likely that optimizing your SQL queries will yield the
> greatest increase in performance. Things like replacing "select max(id)
> from table" with "select id from table order by id desc limit 1" etc..."
When I first read this I was su