im trying to get the most row appears in the table, when i use in rownum i get error: "SQL command not properly ended", there is something else that i can do?
select src_customer ,count(sending.src_customer) as bla
from sending
group by sending.src_customer
order by bla desc
where rownum=1;