1999-05-20 05:39:29 +00:00
|
|
|
<Chapter ID="query">
|
|
|
|
<TITLE>The Query Language</TITLE>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
The <ProductName>Postgres</ProductName> query language is a variant of
|
|
|
|
the <Acronym>SQL3</Acronym> draft next-generation standard. It
|
|
|
|
has many extensions such as an extensible type system,
|
|
|
|
inheritance, functions and production rules. These are
|
|
|
|
features carried over from the original <ProductName>Postgres</ProductName> query
|
|
|
|
language, <ProductName>PostQuel</ProductName>. This section provides an overview
|
|
|
|
of how to use <ProductName>Postgres</ProductName>
|
|
|
|
<Acronym>SQL</Acronym> to perform simple operations.
|
|
|
|
This manual is only intended to give you an idea of our
|
|
|
|
flavor of <Acronym>SQL</Acronym> and is in no way a complete tutorial on
|
|
|
|
<Acronym>SQL</Acronym>. Numerous books have been written on
|
|
|
|
<Acronym>SQL</Acronym>, including
|
1998-03-01 08:16:16 +00:00
|
|
|
<!--
|
|
|
|
<XRef LinkEnd="MELT93"> and <XRef LinkEnd="DATE97">.
|
|
|
|
-->
|
|
|
|
[MELT93] and [DATE97].
|
1999-05-20 05:39:29 +00:00
|
|
|
You should be aware that some language features
|
|
|
|
are extensions to the <Acronym>ANSI</Acronym> standard.
|
|
|
|
</Para>
|
|
|
|
|
|
|
|
<Sect1>
|
|
|
|
<Title>Interactive Monitor</Title>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
In the examples that follow, we assume that you have
|
|
|
|
created the mydb database as described in the previous
|
|
|
|
subsection and have started <Application>psql</Application>.
|
|
|
|
Examples in this manual can also be found in
|
|
|
|
<FileName>/usr/local/pgsql/src/tutorial/</FileName>. Refer to the
|
|
|
|
<FileName>README</FileName> file in that directory for how to use them. To
|
|
|
|
start the tutorial, do the following:
|
|
|
|
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
% cd /usr/local/pgsql/src/tutorial
|
|
|
|
% psql -s mydb
|
|
|
|
Welcome to the POSTGRESQL interactive sql monitor:
|
|
|
|
Please read the file COPYRIGHT for copyright terms of POSTGRESQL
|
|
|
|
|
|
|
|
type \? for help on slash commands
|
|
|
|
type \q to quit
|
|
|
|
type \g or terminate with semicolon to execute query
|
|
|
|
You are currently connected to the database: postgres
|
|
|
|
|
|
|
|
mydb=> \i basics.sql
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
</Para>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
The <Literal>\i</Literal> command read in queries from the specified
|
|
|
|
files. The <Literal>-s</Literal> option puts you in single step mode which
|
|
|
|
pauses before sending a query to the backend. Queries
|
|
|
|
in this section are in the file <FileName>basics.sql</FileName>.
|
|
|
|
</Para>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
<Application>psql</Application>
|
|
|
|
has a variety of <Literal>\d</Literal> commands for showing system information.
|
|
|
|
Consult these commands for more details;
|
|
|
|
for a listing, type <Literal>\?</Literal> at the <Application>psql</Application> prompt.
|
|
|
|
</Para>
|
|
|
|
</sect1>
|
|
|
|
|
|
|
|
<Sect1>
|
|
|
|
<Title>Concepts</Title>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
The fundamental notion in <ProductName>Postgres</ProductName> is that of a class,
|
|
|
|
which is a named collection of object instances. Each
|
|
|
|
instance has the same collection of named attributes,
|
|
|
|
and each attribute is of a specific type. Furthermore,
|
|
|
|
each instance has a permanent <FirstTerm>object identifier</FirstTerm>
|
|
|
|
(<Acronym>OID</Acronym>)
|
|
|
|
that is unique throughout the installation. Because
|
|
|
|
<Acronym>SQL</Acronym> syntax refers to tables, we will use the terms
|
|
|
|
<FirstTerm>table</FirstTerm> and <FirstTerm>class</FirstTerm> interchangeably.
|
|
|
|
Likewise, an <Acronym>SQL</Acronym> <FirstTerm>row</FirstTerm> is an
|
|
|
|
<FirstTerm>instance</FirstTerm> and <Acronym>SQL</Acronym> <FirstTerm>columns</FirstTerm>
|
|
|
|
are <FirstTerm>attributes</FirstTerm>.
|
|
|
|
As previously discussed, classes are grouped into
|
|
|
|
databases, and a collection of databases managed by a
|
|
|
|
single <Application>postmaster</Application> process constitutes an installation
|
|
|
|
or site.
|
|
|
|
</Para>
|
|
|
|
</sect1>
|
|
|
|
|
|
|
|
<Sect1>
|
|
|
|
<Title>Creating a New Class</Title>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
You can create a new class by specifying the class
|
|
|
|
name, along with all attribute names and their types:
|
|
|
|
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
CREATE TABLE weather (
|
|
|
|
city varchar(80),
|
|
|
|
temp_lo int, -- low temperature
|
|
|
|
temp_hi int, -- high temperature
|
|
|
|
prcp real, -- precipitation
|
|
|
|
date date
|
|
|
|
);
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
Note that both keywords and identifiers are case-insensitive; identifiers can become
|
|
|
|
case-sensitive by surrounding them with double-quotes as allowed
|
|
|
|
by <Acronym>SQL92</Acronym>.
|
|
|
|
<ProductName>Postgres</ProductName> <Acronym>SQL</Acronym> supports the usual
|
|
|
|
<Acronym>SQL</Acronym> types <Type>int</Type>,
|
|
|
|
<Type>float</Type>, <Type>real</Type>, <Type>smallint</Type>, <Type>char(N)</Type>,
|
|
|
|
<Type>varchar(N)</Type>, <Type>date</Type>, <Type>time</Type>,
|
|
|
|
and <Type>timestamp</Type>, as well as other types of general utility and
|
|
|
|
a rich set of geometric types. As we will
|
|
|
|
see later, <ProductName>Postgres</ProductName> can be customized with an
|
|
|
|
arbitrary number of
|
|
|
|
user-defined data types. Consequently, type names are
|
|
|
|
not syntactical keywords, except where required to support special
|
|
|
|
cases in the <Acronym>SQL92</Acronym> standard.
|
|
|
|
So far, the <ProductName>Postgres</ProductName> create command
|
|
|
|
looks exactly like
|
|
|
|
the command used to create a table in a traditional
|
|
|
|
relational system. However, we will presently see that
|
|
|
|
classes have properties that are extensions of the
|
|
|
|
relational model.
|
|
|
|
</Para>
|
|
|
|
</sect1>
|
|
|
|
|
|
|
|
<Sect1>
|
|
|
|
<Title>Populating a Class with Instances</Title>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
The <Command>insert</Command> statement is used to populate a class with
|
|
|
|
instances:
|
|
|
|
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
INSERT INTO weather
|
1999-08-17 17:31:11 +00:00
|
|
|
VALUES ('San Francisco', 46, 50, 0.25, '11/27/1994');
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
</Para>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
You can also use the <Command>copy</Command> command to perform load large
|
|
|
|
amounts of data from flat (<Acronym>ASCII</Acronym>) files.
|
|
|
|
This is usually faster because the data is read (or written) as a single atomic
|
|
|
|
transaction directly to or from the target table. An example would be:
|
|
|
|
|
|
|
|
<ProgramListing>
|
|
|
|
COPY INTO weather FROM '/home/user/weather.txt'
|
|
|
|
USING DELIMITERS '|';
|
|
|
|
</ProgramListing>
|
|
|
|
|
|
|
|
where the path name for the source file must be available to the backend server
|
|
|
|
machine, not the client, since the backend server reads the file directly.
|
|
|
|
</para>
|
|
|
|
</sect1>
|
|
|
|
|
|
|
|
<Sect1>
|
|
|
|
<Title>Querying a Class</Title>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
The weather class can be queried with normal relational
|
|
|
|
selection and projection queries. A <Acronym>SQL</Acronym> <Command>select</Command>
|
|
|
|
statement is used to do this. The statement is divided into
|
|
|
|
a target list (the part that lists the attributes to be
|
|
|
|
returned) and a qualification (the part that specifies
|
|
|
|
any restrictions). For example, to retrieve all the
|
|
|
|
rows of weather, type:
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
SELECT * FROM WEATHER;
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
and the output should be:
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
+--------------+---------+---------+------+------------+
|
|
|
|
|city | temp_lo | temp_hi | prcp | date |
|
|
|
|
+--------------+---------+---------+------+------------+
|
|
|
|
|San Francisco | 46 | 50 | 0.25 | 11-27-1994 |
|
|
|
|
+--------------+---------+---------+------+------------+
|
|
|
|
|San Francisco | 43 | 57 | 0 | 11-29-1994 |
|
|
|
|
+--------------+---------+---------+------+------------+
|
|
|
|
|Hayward | 37 | 54 | | 11-29-1994 |
|
|
|
|
+--------------+---------+---------+------+------------+
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
You may specify any arbitrary expressions in the target list. For example, you can do:
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
SELECT city, (temp_hi+temp_lo)/2 AS temp_avg, date FROM weather;
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
</Para>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
<Para>
|
|
|
|
Arbitrary Boolean operators
|
|
|
|
(<Command>and</Command>, <Command>or</Command> and <Command>not</Command>) are
|
|
|
|
allowed in the qualification of any query. For example,
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
SELECT * FROM weather
|
|
|
|
WHERE city = 'San Francisco'
|
|
|
|
AND prcp > 0.0;
|
1999-05-20 05:39:29 +00:00
|
|
|
</programlisting>
|
|
|
|
results in:
|
|
|
|
<programlisting>
|
1998-03-01 08:16:16 +00:00
|
|
|
+--------------+---------+---------+------+------------+
|
|
|
|
|city | temp_lo | temp_hi | prcp | date |
|
|
|
|
+--------------+---------+---------+------+------------+
|
|
|
|
|San Francisco | 46 | 50 | 0.25 | 11-27-1994 |
|
|
|
|
+--------------+---------+---------+------+------------+
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
</Para>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
<Para>
|
|
|
|
As a final note, you can specify that the results of a
|
|
|
|
select can be returned in a <FirstTerm>sorted order</FirstTerm>
|
|
|
|
or with <FirstTerm>duplicate instances</FirstTerm> removed.
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
SELECT DISTINCT city
|
|
|
|
FROM weather
|
|
|
|
ORDER BY city;
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
</Para>
|
|
|
|
</sect1>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
<Sect1>
|
|
|
|
<Title>Redirecting SELECT Queries</Title>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
<Para>
|
|
|
|
Any select query can be redirected to a new class
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
SELECT * INTO TABLE temp FROM weather;
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
</Para>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
This forms an implicit <Command>create</Command> command, creating a new
|
|
|
|
class temp with the attribute names and types specified
|
|
|
|
in the target list of the <Command>select into</Command> command. We can
|
|
|
|
then, of course, perform any operations on the resulting
|
|
|
|
class that we can perform on other classes.
|
|
|
|
</Para>
|
|
|
|
</sect1>
|
|
|
|
|
|
|
|
<Sect1>
|
|
|
|
<Title>Joins Between Classes</Title>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
Thus far, our queries have only accessed one class at a
|
|
|
|
time. Queries can access multiple classes at once, or
|
|
|
|
access the same class in such a way that multiple
|
|
|
|
instances of the class are being processed at the same
|
|
|
|
time. A query that accesses multiple instances of the
|
|
|
|
same or different classes at one time is called a join
|
|
|
|
query.
|
|
|
|
As an example, say we wish to find all the records that
|
|
|
|
are in the temperature range of other records. In
|
|
|
|
effect, we need to compare the temp_lo and temp_hi
|
|
|
|
attributes of each EMP instance to the temp_lo and
|
|
|
|
temp_hi attributes of all other EMP instances.
|
|
|
|
<Note>
|
|
|
|
<Para>
|
|
|
|
This is only a conceptual model. The actual join may
|
|
|
|
be performed in a more efficient manner, but this is invisible to the user.
|
|
|
|
</Para>
|
|
|
|
</Note>
|
|
|
|
|
|
|
|
We can do this with the following query:
|
|
|
|
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
SELECT W1.city, W1.temp_lo AS low, W1.temp_hi AS high,
|
|
|
|
W2.city, W2.temp_lo AS low, W2.temp_hi AS high
|
|
|
|
FROM weather W1, weather W2
|
|
|
|
WHERE W1.temp_lo < W2.temp_lo
|
|
|
|
AND W1.temp_hi > W2.temp_hi;
|
|
|
|
|
|
|
|
+--------------+-----+------+---------------+-----+------+
|
|
|
|
|city | low | high | city | low | high |
|
|
|
|
+--------------+-----+------+---------------+-----+------+
|
|
|
|
|San Francisco | 43 | 57 | San Francisco | 46 | 50 |
|
|
|
|
+--------------+-----+------+---------------+-----+------+
|
|
|
|
|San Francisco | 37 | 54 | San Francisco | 46 | 50 |
|
|
|
|
+--------------+-----+------+---------------+-----+------+
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
|
|
|
|
<Note>
|
|
|
|
<Para>
|
|
|
|
The semantics of such a join are
|
|
|
|
that the qualification
|
|
|
|
is a truth expression defined for the Cartesian product of
|
|
|
|
the classes indicated in the query. For those instances in
|
|
|
|
the Cartesian product for which the qualification is true,
|
|
|
|
<ProductName>Postgres</ProductName> computes and returns the
|
|
|
|
values specified in the target list.
|
|
|
|
<ProductName>Postgres</ProductName> <Acronym>SQL</Acronym>
|
|
|
|
does not assign any meaning to
|
|
|
|
duplicate values in such expressions.
|
|
|
|
This means that <ProductName>Postgres</ProductName>
|
|
|
|
sometimes recomputes the same target list several times;
|
|
|
|
this frequently happens when Boolean expressions are connected
|
|
|
|
with an "or". To remove such duplicates, you must use
|
|
|
|
the <Command>select distinct</Command> statement.
|
|
|
|
</Para>
|
|
|
|
</Note>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
In this case, both W1 and W2 are surrogates for an
|
|
|
|
instance of the class weather, and both range over all
|
|
|
|
instances of the class. (In the terminology of most
|
|
|
|
database systems, W1 and W2 are known as <FirstTerm>range variables</FirstTerm>.)
|
|
|
|
A query can contain an arbitrary number of
|
|
|
|
class names and surrogates.
|
|
|
|
</Para>
|
|
|
|
</sect1>
|
|
|
|
|
|
|
|
<Sect1>
|
|
|
|
<Title>Updates</Title>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
You can update existing instances using the update command.
|
|
|
|
Suppose you discover the temperature readings are
|
|
|
|
all off by 2 degrees as of Nov 28, you may update the
|
|
|
|
data as follow:
|
|
|
|
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
UPDATE weather
|
|
|
|
SET temp_hi = temp_hi - 2, temp_lo = temp_lo - 2
|
|
|
|
WHERE date > '11/28/1994';
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
</Para>
|
|
|
|
</sect1>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
<Sect1>
|
|
|
|
<Title>Deletions</Title>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
<Para>
|
|
|
|
Deletions are performed using the <Command>delete</Command> command:
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
DELETE FROM weather WHERE city = 'Hayward';
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
All weather recording belongs to Hayward is removed.
|
|
|
|
One should be wary of queries of the form
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
DELETE FROM classname;
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
|
|
|
|
|
|
|
Without a qualification, <Command>delete</Command> will simply
|
|
|
|
remove all instances of the given class, leaving it
|
|
|
|
empty. The system will not request confirmation before
|
|
|
|
doing this.
|
|
|
|
</Para>
|
|
|
|
</sect1>
|
|
|
|
|
|
|
|
<Sect1>
|
|
|
|
<Title>Using Aggregate Functions</Title>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
Like most other query languages,
|
|
|
|
<ProductName>PostgreSQL</ProductName> supports
|
|
|
|
aggregate functions.
|
1999-12-13 17:39:38 +00:00
|
|
|
An aggregate function computes a single result from multiple input rows.
|
|
|
|
For example, there are aggregates to compute the
|
|
|
|
<Function>count</Function>, <Function>sum</Function>,
|
1999-05-20 05:39:29 +00:00
|
|
|
<Function>avg</Function> (average), <Function>max</Function> (maximum) and
|
1999-12-13 17:39:38 +00:00
|
|
|
<Function>min</Function> (minimum) over a set of instances.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
It is important to understand the interaction between aggregates and
|
|
|
|
SQL's <Command>where</Command> and <Command>having</Command> clauses.
|
|
|
|
The fundamental difference between <Command>where</Command> and
|
|
|
|
<Command>having</Command> is this: <Command>where</Command> selects
|
|
|
|
input rows before groups and aggregates are computed (thus, it controls
|
|
|
|
which rows go into the aggregate computation), whereas
|
|
|
|
<Command>having</Command> selects group rows after groups and
|
|
|
|
aggregates are computed. Thus, the
|
|
|
|
<Command>where</Command> clause may not contain aggregate functions;
|
|
|
|
it makes no sense to try to use an aggregate to determine which rows
|
|
|
|
will be inputs to the aggregates. On the other hand,
|
|
|
|
<Command>having</Command> clauses always contain aggregate functions.
|
|
|
|
(Strictly speaking, you are allowed to write a <Command>having</Command>
|
|
|
|
clause that doesn't use aggregates, but it's wasteful; the same condition
|
|
|
|
could be used more efficiently at the <Command>where</Command> stage.)
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<Para>
|
|
|
|
As an example, we can find the highest low-temperature reading anywhere
|
|
|
|
with
|
1999-05-20 05:39:29 +00:00
|
|
|
|
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
SELECT max(temp_lo) FROM weather;
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-12-13 17:39:38 +00:00
|
|
|
If we want to know which city (or cities) that reading occurred in,
|
|
|
|
we might try
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
SELECT city FROM weather WHERE temp_lo = max(temp_lo);
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-12-13 17:39:38 +00:00
|
|
|
but this will not work since the aggregate max() can't be used in
|
|
|
|
<Command>where</Command>. However, as is often the case the query can be
|
|
|
|
restated to accomplish the intended result; here by using a
|
|
|
|
<FirstTerm>subselect</FirstTerm>:
|
1999-05-20 05:39:29 +00:00
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
SELECT city FROM weather WHERE temp_lo = (SELECT max(temp_lo) FROM weather);
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
1999-12-13 17:39:38 +00:00
|
|
|
This is OK because the sub-select is an independent computation that
|
|
|
|
computes its own aggregate separately from what's happening in the outer
|
|
|
|
select.
|
1999-05-20 05:39:29 +00:00
|
|
|
</Para>
|
1998-03-01 08:16:16 +00:00
|
|
|
|
1999-05-20 05:39:29 +00:00
|
|
|
<Para>
|
1999-12-13 17:39:38 +00:00
|
|
|
Aggregates are also very useful in combination with
|
|
|
|
<FirstTerm>group by</FirstTerm> clauses. For example, we can get the
|
|
|
|
maximum low temperature observed in each city with
|
1999-05-20 05:39:29 +00:00
|
|
|
<ProgramListing>
|
1998-03-01 08:16:16 +00:00
|
|
|
SELECT city, max(temp_lo)
|
|
|
|
FROM weather
|
|
|
|
GROUP BY city;
|
1999-05-20 05:39:29 +00:00
|
|
|
</ProgramListing>
|
1999-12-13 17:39:38 +00:00
|
|
|
which gives us one output row per city. We can filter these grouped
|
|
|
|
rows using <Command>having</Command>:
|
|
|
|
<ProgramListing>
|
|
|
|
SELECT city, max(temp_lo)
|
|
|
|
FROM weather
|
|
|
|
GROUP BY city
|
|
|
|
HAVING min(temp_lo) < 0;
|
|
|
|
</ProgramListing>
|
|
|
|
which gives us the same results for only the cities that have some
|
|
|
|
below-zero readings. Finally, if we only care about cities whose
|
|
|
|
names begin with 'P', we might do
|
|
|
|
<ProgramListing>
|
|
|
|
SELECT city, max(temp_lo)
|
|
|
|
FROM weather
|
|
|
|
WHERE city like 'P%'
|
|
|
|
GROUP BY city
|
|
|
|
HAVING min(temp_lo) < 0;
|
|
|
|
</ProgramListing>
|
|
|
|
Note that we can apply the city-name restriction in
|
|
|
|
<Command>where</Command>, since it needs no aggregate. This is
|
|
|
|
more efficient than adding the restriction to <Command>having</Command>,
|
|
|
|
because we avoid doing the grouping and aggregate calculations
|
|
|
|
for all rows that fail the <Command>where</Command> check.
|
1999-05-20 05:39:29 +00:00
|
|
|
</Para>
|
|
|
|
</sect1>
|
|
|
|
</Chapter>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:nil
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"./reference.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:"/usr/lib/sgml/CATALOG"
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
-->
|