I am trying to get the top 10 results of the count (field) as total..
below is a sample of what iam doing
select count(field) as Total, field1,field2
from table
where field1 <>'co'
and (not(datefield is null))
group by field1,field2
order by field1
any help would be appreciated
thanks
below is a sample of what iam doing
select count(field) as Total, field1,field2
from table
where field1 <>'co'
and (not(datefield is null))
group by field1,field2
order by field1
any help would be appreciated
thanks