> Hi people. I would like to make a query that
> tells me how many distinct values there are
> in a column. Standard count doesn't seems
> to support a count distinct option. 
> select distint count(*) of course doens't 
> work (distinti clause is applied after the
> result are calculated). I've tried to define
> a view, but it didn't worked ( 
> create view distValues as select distinct ...
> but views doesn't support distinct clause)...


SELECT COUNT(DISTINCT field_name) FROM table_name;

Works for me in v7.


Regards,
Andrew Snow
[EMAIL PROTECTED]
 

Reply via email to