Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

i have table students with fields classname,studname
select * from students
classname studname
1 xxxxx
1 yyyy
1 zzzz
2 qqqq
2 tttt
3 dsds
3 www
i want the output should be

No of students in class 1 : 3
No of students in class 2 : 2
No of students in class 3 : 2

Answer Posted / manoj pandey

select 'No of students in class ' + cast(classname as char(2)) + ' : ' + cast(count(*) as char(5)' from students group by classname


For more Interview Questions check my blog: http://sqlwithmanoj.wordpress.com/interview-questions/

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the differences between sql server and mysql.

1146


what is the difference between Delete and Truncate command in SQL

1201


What is resource db in sql server?

1058


How to create a view and a stored procedure in ms sql server using "create view/procedure" statements?

1074


How to create hyperlink from returned sql query ?

1183


Why do you want to join software field as you have done your BE in Electronics?

2198


How do clustered indexes store data?

1154


What does top operator do?

1081


What does executeupdate return?

1033


What is raid and what are different types of raid levels?

1195


What is inline table-value user-defined function?

1165


your sql server is running out of disk space. You notice that there are several large files with ldf extensions what are these files? : Sql server administration

1049


how we use window authentication connection with sql server.?

1214


What are the differences between triggers and stored procedures?

1119


What is spid in sql server profiler?

1170