Subject | Re: SQL |
---|---|
Author | Ian A. Newby |
Post date | 2004-11-15T10:15:38Z |
Hi nxciro,
try removing the distinct, you don't need it.
select xrnd, count(xrnd) from t1
group by xrnd
order by count(xrnd) desc
Regards
Ian Newby
try removing the distinct, you don't need it.
select xrnd, count(xrnd) from t1
group by xrnd
order by count(xrnd) desc
Regards
Ian Newby