SQL Final Practical Exam
SQL Final Practical Exam
This test is good for 1 hour only. Your instructor will instruction you when to start and
ends.
Provide the select statement in order to accomplish the following tasks.
1. Display all the information in the tables STUDENTS, FACULTY, CLASS and
ENROLLED.
2. Display the first name and last name of Computer Science students.
3. Display the first name and last name of Computer Engineering students
4. Display all the information of the faculty with department ID 68.
5. Display the first name and last name of all SENIOR Computer Science students.
6. Display all the information of all JUNIOR Computer Engineering students.
7. Display the total count of all FRESHMEN students.
8. Display all the subject handled by a faculty named LINDA DAVIS.
9. Display all the subject handled by a faculty named IVANA TEACH.
10. Display all the information of MWF subjects.
11. Display all the rooms occupied every 12:30-1:45 time slots.
12. Display all the subjects which has a single day schedule.
13. Display the count of students enrolled in Database System.
14. Display all the students enrolled in Operating System Design.
15. Display all subjects which have single enrolled students.
16. Display all students who are Junior standing.
17. Display all students who are Freshmen Standing and taking up Electrical Engineering.
18. Display all the subjects assigned to room AVW.
19. Display all the subjects with schedules from 7:00-1:00pm time slots.
20. Display all the subjects with schedules from 1:00-9:00pm time slots
PRACTICAL_EXAM.sql
DROP
DROP
DROP
DROP
TABLE
TABLE
TABLE
TABLE
(051135593,'Maria White','English','SR',21);
(060839453,'Charles Harris','Architecture','SR',22);
(099354543,'Susan Martin','Law','JR',20);
(112348546,'Joseph Thompson','Computer Science','SO',19);
(115987938,'Christopher Garcia','Computer
INSERT
INSERT
INSERT
INSERT
INSERT
INSERT
INSERT
INSERT
INSERT
INSERT
INSERT
INSERT
INSERT
INSERT
INSERT
(142519864,'Ivana Teach',20);
(242518965,'James Smith',68);
(141582651,'Mary Johnson',20);
(011564812,'John Williams',68);
(254099823,'Patricia Jones',68);
(356187925,'Robert Brown',12);
(489456522,'Linda Davis',20);
(287321212,'Michael Miller',12);
(248965255,'Barbara Wilson',12);
(159542516,'William Moore',33);
(090873519,'Elizabeth Taylor',11);
(486512566,'David Anderson',20);
(619023588,'Jennifer Thomas',11);
(489221823,'Richard Jackson',33);
(548977562,'Ulysses Teach',20);
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
Faculty
Faculty
Faculty
Faculty
Faculty
Faculty
Faculty
Faculty
Faculty
Faculty
Faculty
Faculty
Faculty
Faculty
Faculty
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
(132977562,'Angela Martinez','History','SR',20);
(269734834,'Thomas Robinson','Psychology','SO',18);
(280158572,'Margaret Clark','Animal Science','FR',18);
(301221823,'Juan Rodriguez','Psychology','JR',20);
(318548912,'Dorthy Lewis','Finance','FR',18);
(320874981,'Daniel Lee','Electrical Engineering','FR',17);
(322654189,'Lisa Walker','Computer Science','SO',17);
(348121549,'Paul Hall','Computer Science','JR',18);
(351565322,'Nancy Allen','Accounting','JR',19);
(451519864,'Mark Young','Finance','FR',18);
(455798411,'Luis Hernandez','Electrical
(462156489,'Donald King','Mechanical Engineering','SO',19);
(550156548,'George Wright','Education','SR',21);
(552455318,'Ana Lopez','Computer Engineering','SR',19);
(556784565,'Kenneth Hill','Civil Engineering','SR',21);
(567354612,'Karen Scott','Computer Engineering','FR',18);
(573284895,'Steven Green','Kinesiology','SO',19);
(574489456,'Betty Adams','Economics','JR',20);
(578875478,'Edward Baker','Veterinary Medicine','SR',21);
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
INTO
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
Enrolled
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
VALUES
(112348546,'Database Systems');
(115987938,'Database Systems');
(348121549,'Database Systems');
(322654189,'Database Systems');
(552455318,'Database Systems');
(455798411,'Operating System Design');
(552455318,'Operating System Design');
(567354612,'Operating System Design');
(112348546,'Operating System Design');
(115987938,'Operating System Design');
(322654189,'Operating System Design');
(567354612,'Data Structures');
(552455318,'Communication Networks');
(455798411,'Optical Electronics');
(301221823,'Perception');
(301221823,'Social Cognition');
(301221823,'American Political Parties');
(556784565,'Air Quality Engineering');
(099354543,'Patent Law');
(574489456,'Urban Economics');