thanks
i just wanna ask another question, after querying
select distinct src_ip, count(src_ip) from source
group by src_ip
having count(src_ip) > 5;
i got this result
e.g
src_ip count(src_ip)
10.3.12.4 45566
120.2.242.2 22
65.345.0.8 456
54.32.4.5 7
192.168.90.12 4556
can i get ascending order of count(src_ip) so that the result will look like this
src_ip count(src_ip)
10.3.12.4 45566
192.168.90.12 4556
65.345.0.8 456
120.2.242.2 22
54.32.4.5 7
thanx in advanced