SELECT statement not working as intended - Mailing list pgsql-general

From Rich Shepard
Subject SELECT statement not working as intended
Date
Msg-id alpine.LNX.2.00.1110101512201.11484@salmo.appl-ecosys.com
Whole thread Raw
Responses Re: SELECT statement not working as intended  (Merlin Moncure <mmoncure@gmail.com>)
Re: SELECT statement not working as intended  (Henry Drexler <alonup8tb@gmail.com>)
Re: SELECT statement not working as intended  (Scott Marlowe <scott.marlowe@gmail.com>)
List pgsql-general
   I'm trying to query the table to extract the single highest value of a
chemical by location and date. This statement gives me all the values per
stream, site, and date:

SELECT str_name, site_id, sample_date, max(quant) FROM chemistry WHERE hydro
= 'Humboldt' group by str_name, sample_date, site_id order by str_name,
site_id;

   I'm not seeing why this doesn't work; the top few lines of output are:

  CalifCrk    | CalCrk         | 1996-10-18  |    188
  CalifCrk    | CalCrk         | 1996-08-23  |    183
  CalifCrk    | CalCrk         | 1996-07-29  |    201
  CalifCrk    | CalCrk         | 1996-09-27  |    185

when what I want is only the third line.

   A clue to the correct syntax is solicited. I'm sure it's something simple
that I'm just not seeing.

Rich

pgsql-general by date:

Previous
From: Rafal Pietrak
Date:
Subject: Re: a dumb question regarding RULES
Next
From: Merlin Moncure
Date:
Subject: Re: SELECT statement not working as intended