Tom:
Thanks for your prompt reply!
As per your request, here is the example SQL statement I
issued against my example table;
SELECT AVG (prod_price) as avg_price
FROM products
WHERE vend_id = 'DLL01';
As we know, the WHERE clause in this statement will only
return the average price for the DLL01 column.
The book I am using to teach myself states the following:
"AVG() may only be used to determine the average price of
a specific numeric column. The column name must also be
specified as the function paramater. To obtain the
average value of multiple columns, multiple AVG()
functions must be used."
Unfortunately, my book has inconveniently left out the
description of how to use multiple AVG() functions in a
single SELECT statement (if that is possible).
The exmaple .mdb file that I am using can be found at the
book author's website
http://www.forta.com/books/0672325675/ and then selecting
the Microsoft Access Database link. It is a very small
zip file (and don't worry, it's not infected with
anything
Thanks for your help!