sql - find most number of languages used -


i have table called soft having column name ‘developin’ contains name of language used develop software. requirement need find name of language used number of times used following query :-

select developin, count(developin) 'total' software group developin

i getting list of languages count. not able name of particular language having maximum count . please me out.

to 1 used language can

select top 1 developin, count(developin) 'total'  software  group developin order count(developin) desc 

Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -