Re: [PHP] psql with PHP question

From: "Gyozo Papp" <pgerzson(at)freestart(dot)hu>
To: "Jason" <gee308(at)mediaone(dot)net>, <pgsql-php(at)postgresql(dot)org>
Cc: <pgsql-novice(at)postgresql(dot)org>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: [PHP] psql with PHP question
Date: 2001-05-03 16:19:10
Message-ID: 011301c0d3ec$cd91c940$5145c5d5@jaguar
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-novice pgsql-php

In my opinion, these queries make the same :
SELECT id FROM article WHERE id=(SELECT MAX(id) FROM article);
SELECT MAX(id) FROM article;

but the latter one is much more simple and you do not overload your pg.
(by the way, I think id = (SELECT ...) isn't handled gracefully.)

----- Original Message -----
From: "Jason" <gee308(at)mediaone(dot)net>
To: <pgsql-php(at)postgresql(dot)org>
Cc: <pgsql-novice(at)postgresql(dot)org>; <pgsql-general(at)postgresql(dot)org>
Sent: 2001. május 3. 14:06
Subject: [PHP] psql with PHP question

> Hi, I want to try and optimize my calls to postgreSQL from PHP. If
> I only need one field from a select statement, what should I use? I am
> currently using:
> $q = pg_Exec("SELECT id FROM article WHERE id=(SELECT MAX(id)
> FROM article)");
> $maxid = pg_fetch_array($q, 0);
> echo "The highest id is ". $maxid[0];
> What can I use besides an array to get a single value? In general, using
> a single variable always saves more memory than using an array? Thank
> you.
> Jason
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/users-lounge/docs/faq.html

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Roger Wernersson 2001-05-03 16:29:23 optimizing
Previous Message will trillich 2001-05-03 16:12:22 Re: Perl Scope problem

Browse pgsql-novice by date

  From Date Subject
Next Message Stephen M. Ford 2001-05-03 16:29:07 input from a file
Previous Message Philip Hallstrom 2001-05-03 15:29:49 Re: psql with PHP question

Browse pgsql-php by date

  From Date Subject
Next Message Andrew McMillan 2001-05-04 08:07:44 Re: [NOVICE] Re: psql with PHP question
Previous Message Philip Hallstrom 2001-05-03 15:29:49 Re: psql with PHP question