Hi Julie,
>I would like to count the number of distinct values in a column. Is
>there any way to combine DISTINCT and COUNT and if so, what is the
>syntax?
Sure is.
SELECT DISTINCT column, COUNT(column) FROM table GROUP BY column;
HTH,
-----------------
Chris Smith
http://www.squiz.net/