Possible Duplicate:
ora-00979 not a GROUP BY expression
I wrote a query like this:
select employeeid,presenttime,count(latitude)
from mobilelocation
where presentdate='9-11-2011'
group by employeeid
order by presenttime desc
Upon executing this above query its showing the error message like this:
ORA-00979: not a GROUP BY expression.
What is the problem here?