|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 10:36 AM
Points: 6,
Visits: 26
|
|
can any please help me...!
Thanks & Regards Prasad Reddy
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Yesterday @ 8:29 PM
Points: 11,645,
Visits: 27,738
|
|
the title of your post "In --> Group By with Multiple columns...> how it will responds " is not enough for us to go by; can you explain your question better? do you have a coded example that's not working as expected?
Lowell
--There is no spoon, and there's no default ORDER BY in sql server either. Actually, Common Sense is so rare, it should be considered a Superpower. --my son
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 10:36 AM
Points: 6,
Visits: 26
|
|
query is
select col1, col2, col3.... from table
Group BY Colm, Coln
Here my question is :: while we take 2 or more colmuns in Group By.. Actually how it works
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Thursday, March 28, 2013 5:32 AM
Points: 50,
Visits: 75
|
|
Below is a basic example for Group By
CREATE TABLE #Studentcourseschedule( Department int, Courseid int, studentid int) go insert into #Studentcourseschedule(Department, Courseid,studentid) values(1,1,1) ,(1,2,1) ,(1,3,1) ,(1,1,5) ,(1,3,6) ,(1,1,7) ,(2,2,1) ,(2,1,2) ,(2,3,2) go select department, COUNT(studentid) Studentcount from #Studentcourseschedule group by department order by Department go select department, courseid, COUNT(studentid) Studentcount from #Studentcourseschedule group by department,courseid order by Department, Courseid
1st Query Result: department Studentcount 1 6 2 3 2nd Query Result department courseid Studentcount 1 1 3 1 2 1 1 3 2 2 1 1 2 2 1 2 3 1
In the first query the grouping is done only on Department, so it checks the no of students in each of the Department available in the table which is 1 and 2 in example When we add another group by column on courseid, now it looks for the each course available under each department and displays count of the student in that department and course.
|
|
|
|