Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 sql query

Author  Topic 

Rafinha
Starting Member

1 Post

Posted - 2013-07-19 : 10:56:12
Hello everyone ..i had a couple of questions that i needed help on ..basically coming up with an sql query fpr each of these ..

1. Print the names of professors who work in departments that have fewer than 50 PhD students.
2. Print the name(s) of student(s) with the lowest gpa.
3. For each Computer Sciences class, print the cno, sectno, and the average gpa of the students enrolled in the class.
4. Print the course names, course numbers and section numbers of all classes with less than six students enrolled in them.
5. Print the name(s) and sid(s) of the student(s) enrolled in the most classes.
6. Print the names of departments that have one or more majors who are under 18 years old.
7. Print the names and majors of students who are taking one of the College Geometry courses. (Hint: You'll need to use the "like" predicate and the string matching character in your query.)
8. For those departments that have no majors taking a College Geometry course, print the department name and the number of PhD students in the department.
9. Print the names of students who are taking both a Computer Sciences course and a Mathematics course.
10. Print the age difference between the oldest and youngest Computer Sciences major(s).
11. For each department that has one or more majors with a GPA under 1.0, print the name of the department and the average GPA of its majors.
12. Print the ids, names, and GPAs of the students who are currently taking all of the Civil Engineering courses.

Many thanks

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2013-07-19 : 10:57:47
We normally don't do homework here.



N 56°04'39.26"
E 12°55'05.63"
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-07-20 : 08:14:51
All these are pretty straightforward questions. Suggest to read and understand basic concepts of sql like JOINs,GROUP BY etc


http://www.w3schools.com/sql/default.asp



------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/
https://www.facebook.com/VmBlogs
Go to Top of Page
   

- Advertisement -