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
 want to write querry for the following

Author  Topic 

rajdey1
Starting Member

10 Posts

Posted - 2009-04-26 : 08:13:32
want to write querry for the following

the names of all classes that either meet in room R128 or have five or more students enrolled.

the tables are


Student(rollno: integer, sname: string, major: string, level: string, age: integer)
Class(cname: siring, meets at: string, room: string, fid: integer)
Enrolled(rollno.- integer, cname: string)
Faculty(fid: integer, fname: string, deptid: integer)
   

- Advertisement -