SlideShare a Scribd company logo
DROP TABLE ENROLLMENTS;
DROP TABLE OFFERINGS;
DROP TABLE COURSES;
DROP TABLE STUDENTS;
CREATE TABLE COURSES
(COURSE VARCHAR(6),
DESCRIPTION VARCHAR(60),
CREDITS INT,
CONSTRAINT pk PRIMARY KEY (COURSE));
CREATE TABLE OFFERINGS
( CRN INT,
COURSE VARCHAR(6),
SECTION VARCHAR(2),
DATES VARCHAR(5),
TIMES VARCHAR(30),
INSTRUCTOR VARCHAR(30),
ROOM VARCHAR(20),
ENROLLMAX INT,
ENROLLCURRENT INT,
CONSTRAINT pk2 PRIMARY KEY (CRN),
CONSTRAINT fk1 FOREIGN KEY (COURSE) REFERENCES
COURSES (COURSE));
CREATE TABLE STUDENTS
( USERID VARCHAR(9),
PASSWORD VARCHAR(10),
FIRSTNAME VARCHAR(20),
LASTNAME VARCHAR(30),
PHONE VARCHAR(12),
DOB VARCHAR(40),
MAJOR VARCHAR(20),
ADDRESS VARCHAR(30),
CITY VARCHAR(30),
STATE VARCHAR(2),
ZIP VARCHAR(5),
CONSTRAINT pk3 PRIMARY KEY (USERID));
CREATE TABLE ENROLLMENTS
( CRN INT,
USERID VARCHAR(9),
ENROLLDATE VARCHAR(30),
GRADE VARCHAR(2),
CONSTRAINT pk4 PRIMARY KEY(CRN, USERID),
CONSTRAINT fk2 FOREIGN KEY (CRN) REFERENCES
OFFERINGS(CRN),
CONSTRAINT fk3 FOREIGN KEY (USERID) REFERENCES
STUDENTS(USERID));
INSERT INTO STUDENTS VALUES
('111111111', 'secret1', 'Joan','Green','518-434-5940','March 10,
1987','Biology','10 First Street','Albany','NY','12203');
INSERT INTO STUDENTS VALUES
('222222222','secret2', 'Jill','Black','518-389-4029','April 23,
1988','Mathematics','20 Second Street','Albany','NY','12204');
INSERT INTO STUDENTS VALUES
('333333333','secret3', 'Jim','White','518-493-4950','June 30,
1986','Computer Science','30 Third
Street','Albany','NY','12205');
INSERT INTO STUDENTS VALUES
('444444444','secret4', 'Jane','Gray','518-583-0934','February
13, 1985','Computer Science','40 Fourth
Street','Albany','NY','12206');
INSERT INTO STUDENTS VALUES
('555555555','secret5', 'Joe','Brown','518-589-3940','January 2,
1986','Computer Science','50 Fifth
Street','Albany','NY','12207');
INSERT INTO STUDENTS VALUES
('666666666', 'secret6', 'Jackie', 'Blue','518-485-3923','March
23, 1987','Computer Science','60 Sixth
Street','Albany','NY','12208');
INSERT INTO STUDENTS VALUES
('777777777', 'secret7', 'Judy', 'Purple','518-548-
3049','September 2, 1988','Computer Science','70 Seventh
Street','Albany','NY','12209');
INSERT INTO COURSES VALUES('CIS111','Introduction to
Computer Science',3);
INSERT INTO COURSES VALUES('CIS202','Computer
Science 1',4);
INSERT INTO COURSES VALUES('CIS203','PC Organization
and Operation',3);
INSERT INTO COURSES VALUES('CIS204','Educational
Computing',3);
INSERT INTO COURSES VALUES('CIS205','Windows
Programming 1',3);
INSERT INTO COURSES VALUES('CIS302','Computer
Science 2',4);
INSERT INTO COURSES VALUES('CIS305','Windows
Programming 2',3);
INSERT INTO COURSES VALUES('CIS311','Computer
Graphics',3);
INSERT INTO COURSES VALUES('CIS321','Database
Management Systems',4);
INSERT INTO COURSES VALUES('CIS322','Microcomputer
Architecture',3);
INSERT INTO COURSES VALUES('CIS342','Artificial
Intelligence',3);
INSERT INTO COURSES VALUES('CIS344','Computer
Networks',3);
INSERT INTO COURSES VALUES('CIS355','Internet
Programming 1',3);
INSERT INTO COURSES VALUES('CIS404','Flash',3);
INSERT INTO COURSES VALUES('CIS405','Computer Game
Design',3);
INSERT INTO COURSES VALUES('CIS414','Bioinformatics 1
',3);
INSERT INTO COURSES VALUES('CIS415','Bioinformatics 2
',3);
INSERT INTO COURSES VALUES('CIS416','Internet
Programming 2',3);
INSERT INTO COURSES VALUES('CIS417','Embedded
Systems 1',3);
INSERT INTO COURSES VALUES('CIS418','Embedded
Systems 2 ',3);
INSERT INTO COURSES VALUES('CIS423','Systems Analysis
and Design',3);
INSERT INTO COURSES VALUES('CIS424','Systems Design
and Implementation',3);
INSERT INTO COURSES VALUES('CIS431','Algorithms',3);
INSERT INTO COURSES VALUES('CIS432','Operating
Systems',3);
INSERT INTO COURSES VALUES('CIS433','Programming
Languages',3);
INSERT INTO COURSES VALUES('CIS434','Software
Engineering',3);
INSERT INTO COURSES VALUES('CIS444','Advanced
Networks',3);
INSERT INTO COURSES VALUES('CIS494','Internship',3);
INSERT INTO COURSES VALUES('CIS499','Independent
Study',3);
INSERT INTO COURSES VALUES('CIS501','Advanced Data
Structures',3);
INSERT INTO COURSES VALUES('CIS502','Computer
Architecture',3);
INSERT INTO COURSES VALUES('CIS503','Database Theory
and Design',3);
INSERT INTO COURSES VALUES('CIS504','Data
Communications',3);
INSERT INTO COURSES VALUES('CIS505','User Interface
Design',3);
INSERT INTO COURSES VALUES('CIS507','Software
Engineering',3);
INSERT INTO COURSES VALUES('CIS508','Technical
Communications',3);
INSERT INTO COURSES VALUES('CIS511','Game Design 1
',3);
INSERT INTO COURSES VALUES('CIS512','Game Design 2
',3);
INSERT INTO COURSES VALUES('CIS513','Bioinformatics 1
',3);
INSERT INTO COURSES VALUES('CIS514','Bioinformatics 2
',3);
INSERT INTO COURSES VALUES('CIS515','Internet
Programming 1 ',3);
INSERT INTO COURSES VALUES('CIS516','Internet
Programming 2 ',3);
INSERT INTO COURSES VALUES('CIS517','Embedded
Systems 1 ',3);
INSERT INTO COURSES VALUES('CIS518','Embedded
Systems 2 ',3);
INSERT INTO COURSES VALUES('CIS598','Independent
Study',3);
INSERT INTO COURSES VALUES('CIS999','Comprehensive
Exam',0);
INSERT INTO OFFERINGS VALUES
(1,'CIS111','01','MWF','8:00-8:50','Kohler','Lally 051',21,0);
INSERT INTO OFFERINGS VALUES
(2,'CIS111','02','MWF','8:00-8:50','Marriner','AH205',19,0);
INSERT INTO OFFERINGS VALUES
(3,'CIS111','03','MW','10:25-11:40','MacDonald','AH408',21,0);
INSERT INTO OFFERINGS VALUES
(4,'CIS111','04','MW','1:15-2:30','MacDonald','AH205',19,0);
INSERT INTO OFFERINGS VALUES
(5,'CIS111','05','TR','8:00-9:15','Albanese','AH408',21,0);
INSERT INTO OFFERINGS VALUES
(6,'CIS111','06','TR','8:00-9:15','Rourke','AH205',21,0);
INSERT INTO OFFERINGS VALUES
(7,'CIS111','07','TR','2:30-3:45','Rourke','Lally 051',21,0);
INSERT INTO OFFERINGS VALUES
(8,'CIS111','08','TR','2:30-3:45','Kuhrt','AH408',21,0);
INSERT INTO OFFERINGS VALUES
(9,'CIS111','09','F','11:00-1:30','Kantor','AH408',21,0);
INSERT INTO OFFERINGS VALUES
(10,'CIS111','10','F','2:00-4:30','MacDonald','AH205',19,0);
INSERT INTO OFFERINGS VALUES
(11,'CIS111','E1','W','4:30-7:00','Wohlleber','Lally 051',21,0);
INSERT INTO OFFERINGS VALUES
(12,'CIS111','E2','W','7:15-9:45','Klevanosky','Lally 051',21,0);
INSERT INTO OFFERINGS VALUES
(13,'CIS202','01','TR','9:25-11:05','Lawson','AH408',23,0);
INSERT INTO OFFERINGS VALUES
(14,'CIS202','02','TR','11:15-
12:55','Goldschmidt','AH205',20,0);
INSERT INTO OFFERINGS VALUES
(15,'CIS202','03','TR','2:30-4:10','Gudmundsen','AH205',20,0);
INSERT INTO OFFERINGS VALUES
(16,'CIS202','E1','M','5:30-9:00','Goldschmidt','AH205',20,0);
INSERT INTO OFFERINGS VALUES
(17,'CIS203','E1','TR','4:30-5:45','Rourke','AH205',24,0);
INSERT INTO OFFERINGS VALUES
(18,'CIS204','01','MWF','11:50-12:40','Gudmundsen','Lally
051',21,0);
INSERT INTO OFFERINGS VALUES
(19,'CIS204','02','TR','8:00-9:15','Kohler','Lally 051',21,0);
INSERT INTO OFFERINGS VALUES
(20,'CIS204','03','TR','9:25-10:40','Eladdadi','Lally 051',21,0);
INSERT INTO OFFERINGS VALUES
(21,'CIS204','04','TR','1:05-2:20','Goldschmidt','AH205',19,0);
INSERT INTO OFFERINGS VALUES
(22,'CIS204','E2','MW','4:05-5:20','Cufari','AH205',19,0);
INSERT INTO OFFERINGS VALUES
(23,'CIS204','E1','MW','4:30-5:45','Smith','AH408',21,0);
INSERT INTO OFFERINGS VALUES
(24,'CIS204','E3','R','4:30-7:00','Ellis','Lally 051',21,0);
INSERT INTO OFFERINGS VALUES
(25,'CIS204','E4','R','7:15-9:45','MacDonald','Lally 051',21,0);
INSERT INTO OFFERINGS VALUES
(26,'CIS205','E1','T','6:00-8:30','Gudmundsen','Lally 051',22,0);
INSERT INTO OFFERINGS VALUES
(27,'CIS302','E1','W','5:30-9:00','Lawson','AH408',23,0);
INSERT INTO OFFERINGS VALUES
(28,'CIS305','E1','T','6:00-8:30','Kuhrt','AH408',23,0);
INSERT INTO OFFERINGS VALUES
(29,'CIS311','E1','M','6:00-8:30','Albanese','Lally 051',22,0);
INSERT INTO OFFERINGS VALUES
(30,'CIS321','01','MWF','10:25-11:40','Avitabile','AH205',19,0);
INSERT INTO OFFERINGS VALUES
(31,'CIS344','01','MWF','11:50-
12:40','MacDonald','AH205',24,0);
INSERT INTO OFFERINGS VALUES
(32,'CIS404','E1','R','6:00-8:30','Kuhrt','AH205',10,0);
INSERT INTO OFFERINGS VALUES
(33,'CIS423','01','F','8:00-10:30','Albanese','AH408',23,0);
INSERT INTO OFFERINGS VALUES
(34,'CIS433','01','TR','9:25-10:40','Goldschmidt','AH205',19,0);
INSERT INTO OFFERINGS VALUES
(35,'CIS494','01','','','','',10,0);
INSERT INTO OFFERINGS VALUES
(36,'CIS499','01','','','','',10,0);
INSERT INTO OFFERINGS VALUES
(37,'CIS501','E1','M','6:00-8:30','Lawson','AH408',20,0);
INSERT INTO OFFERINGS VALUES
(38,'CIS503','E1','T','6:00-8:30','Avitabile','AH205',20,0);
INSERT INTO OFFERINGS VALUES
(39,'CIS505','E1','W','6:00-8:30','Kuhrt','AH205',20,0);
INSERT INTO OFFERINGS VALUES
(40,'CIS508','E1','R','6:00-8:30','Gudmundsen','AH408',20,0);
INSERT INTO OFFERINGS VALUES
(41,'CIS511','E1','R','6:00-8:30','Kuhrt','AH205',10,0);
INSERT INTO OFFERINGS VALUES
(42,'CIS598','01','','','','',10,0);
INSERT INTO OFFERINGS VALUES
(43,'CIS999','01','','','','',20,0);
INSERT INTO ENROLLMENTS(USERID, CRN)
VALUES('111111111', 1);
INSERT INTO ENROLLMENTS(USERID, CRN)
VALUES('222222222', 15);
INSERT INTO ENROLLMENTS(USERID, CRN)
VALUES('222222222', 19);
INSERT INTO ENROLLMENTS(USERID, CRN)
VALUES('333333333', 38);
INSERT INTO ENROLLMENTS(USERID, CRN)
VALUES('333333333', 39);
INSERT INTO ENROLLMENTS(USERID, CRN)
VALUES('444444444', 14);
DROP TABLE ENROLLMENTS; DROP TABLE OFFERINGS;DROP TABLE COUR.docx

More Related Content

Similar to DROP TABLE ENROLLMENTS; DROP TABLE OFFERINGS;DROP TABLE COUR.docx

On SQL Managment studioThis lab is all about database normalizatio.pdf
On SQL Managment studioThis lab is all about database normalizatio.pdfOn SQL Managment studioThis lab is all about database normalizatio.pdf
On SQL Managment studioThis lab is all about database normalizatio.pdf
infomalad
 
Database Implementation Final Document
Database Implementation Final DocumentDatabase Implementation Final Document
Database Implementation Final Document
Conor O'Callaghan
 
Movie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project PresentationMovie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project Presentation
Avinandan Ganguly
 
Jash mehta ist 659 final project report
Jash mehta ist 659 final project reportJash mehta ist 659 final project report
Jash mehta ist 659 final project report
Jash Mehta
 
ScottCreate_1.pdf
ScottCreate_1.pdfScottCreate_1.pdf
ScottCreate_1.pdf
LaaouissiAzed
 
C programs Set 3
C programs Set 3C programs Set 3
C programs Set 3
Koshy Geoji
 
Tubes Basdat
Tubes BasdatTubes Basdat
Tubes Basdat
Nanda Patria
 
DBMS ASSIGNMENT questions list for graduation .pdf
DBMS ASSIGNMENT questions list for graduation .pdfDBMS ASSIGNMENT questions list for graduation .pdf
DBMS ASSIGNMENT questions list for graduation .pdf
StudyWithBarkha
 
IFESFinal58
IFESFinal58IFESFinal58
IFESFinal58
anish h
 
B.Sc.IT: SEMESTER - V (May - 2018) [IDOL: Old Course | Question Paper]
B.Sc.IT: SEMESTER - V (May - 2018) [IDOL: Old Course | Question Paper]B.Sc.IT: SEMESTER - V (May - 2018) [IDOL: Old Course | Question Paper]
B.Sc.IT: SEMESTER - V (May - 2018) [IDOL: Old Course | Question Paper]
Mumbai B.Sc.IT Study
 
Programming with Python and PostgreSQL
Programming with Python and PostgreSQLProgramming with Python and PostgreSQL
Programming with Python and PostgreSQL
Peter Eisentraut
 
Script oracle
Script oracleScript oracle
Script oracle
Nii Caytuiro
 
Lecture05sql 110406195130-phpapp02
Lecture05sql 110406195130-phpapp02Lecture05sql 110406195130-phpapp02
Lecture05sql 110406195130-phpapp02
Lalit009kumar
 
Ddd ms dec 2010
Ddd ms dec 2010Ddd ms dec 2010
Ddd ms dec 2010
Irfaan Bahadoor
 
BD I - Aula 13 B - Agrupando Dados - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando Dados  - Parte 04 - Exercicios EnunciadoBD I - Aula 13 B - Agrupando Dados  - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando Dados - Parte 04 - Exercicios Enunciado
Rodrigo Kiyoshi Saito
 
BD I - Aula 13 B - Agrupando dados - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando dados  - Parte 04 - Exercicios EnunciadoBD I - Aula 13 B - Agrupando dados  - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando dados - Parte 04 - Exercicios Enunciado
Rodrigo Kiyoshi Saito
 
Oracle sql developer essentials
Oracle sql developer essentialsOracle sql developer essentials
Oracle sql developer essentials
Alok Vishwakarma
 
Access 04
Access 04Access 04
Access 04
Alexander Babich
 
College management presentation using Oracle 10G
College management presentation using Oracle 10GCollege management presentation using Oracle 10G
College management presentation using Oracle 10G
AIUB
 
Oracle helpdesk database shema
Oracle helpdesk database shemaOracle helpdesk database shema
Oracle helpdesk database shema
Murat Gülci
 

Similar to DROP TABLE ENROLLMENTS; DROP TABLE OFFERINGS;DROP TABLE COUR.docx (20)

On SQL Managment studioThis lab is all about database normalizatio.pdf
On SQL Managment studioThis lab is all about database normalizatio.pdfOn SQL Managment studioThis lab is all about database normalizatio.pdf
On SQL Managment studioThis lab is all about database normalizatio.pdf
 
Database Implementation Final Document
Database Implementation Final DocumentDatabase Implementation Final Document
Database Implementation Final Document
 
Movie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project PresentationMovie Ticket Booking Website Project Presentation
Movie Ticket Booking Website Project Presentation
 
Jash mehta ist 659 final project report
Jash mehta ist 659 final project reportJash mehta ist 659 final project report
Jash mehta ist 659 final project report
 
ScottCreate_1.pdf
ScottCreate_1.pdfScottCreate_1.pdf
ScottCreate_1.pdf
 
C programs Set 3
C programs Set 3C programs Set 3
C programs Set 3
 
Tubes Basdat
Tubes BasdatTubes Basdat
Tubes Basdat
 
DBMS ASSIGNMENT questions list for graduation .pdf
DBMS ASSIGNMENT questions list for graduation .pdfDBMS ASSIGNMENT questions list for graduation .pdf
DBMS ASSIGNMENT questions list for graduation .pdf
 
IFESFinal58
IFESFinal58IFESFinal58
IFESFinal58
 
B.Sc.IT: SEMESTER - V (May - 2018) [IDOL: Old Course | Question Paper]
B.Sc.IT: SEMESTER - V (May - 2018) [IDOL: Old Course | Question Paper]B.Sc.IT: SEMESTER - V (May - 2018) [IDOL: Old Course | Question Paper]
B.Sc.IT: SEMESTER - V (May - 2018) [IDOL: Old Course | Question Paper]
 
Programming with Python and PostgreSQL
Programming with Python and PostgreSQLProgramming with Python and PostgreSQL
Programming with Python and PostgreSQL
 
Script oracle
Script oracleScript oracle
Script oracle
 
Lecture05sql 110406195130-phpapp02
Lecture05sql 110406195130-phpapp02Lecture05sql 110406195130-phpapp02
Lecture05sql 110406195130-phpapp02
 
Ddd ms dec 2010
Ddd ms dec 2010Ddd ms dec 2010
Ddd ms dec 2010
 
BD I - Aula 13 B - Agrupando Dados - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando Dados  - Parte 04 - Exercicios EnunciadoBD I - Aula 13 B - Agrupando Dados  - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando Dados - Parte 04 - Exercicios Enunciado
 
BD I - Aula 13 B - Agrupando dados - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando dados  - Parte 04 - Exercicios EnunciadoBD I - Aula 13 B - Agrupando dados  - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando dados - Parte 04 - Exercicios Enunciado
 
Oracle sql developer essentials
Oracle sql developer essentialsOracle sql developer essentials
Oracle sql developer essentials
 
Access 04
Access 04Access 04
Access 04
 
College management presentation using Oracle 10G
College management presentation using Oracle 10GCollege management presentation using Oracle 10G
College management presentation using Oracle 10G
 
Oracle helpdesk database shema
Oracle helpdesk database shemaOracle helpdesk database shema
Oracle helpdesk database shema
 

More from jacksnathalie

OverviewThe US is currently undergoing an energy boom largel.docx
OverviewThe US is currently undergoing an energy boom largel.docxOverviewThe US is currently undergoing an energy boom largel.docx
OverviewThe US is currently undergoing an energy boom largel.docx
jacksnathalie
 
OverviewThe United Nations (UN) has hired you as a consultan.docx
OverviewThe United Nations (UN) has hired you as a consultan.docxOverviewThe United Nations (UN) has hired you as a consultan.docx
OverviewThe United Nations (UN) has hired you as a consultan.docx
jacksnathalie
 
OverviewThis project will allow you to write a program to get mo.docx
OverviewThis project will allow you to write a program to get mo.docxOverviewThis project will allow you to write a program to get mo.docx
OverviewThis project will allow you to write a program to get mo.docx
jacksnathalie
 
OverviewThis week, we begin our examination of contemporary resp.docx
OverviewThis week, we begin our examination of contemporary resp.docxOverviewThis week, we begin our examination of contemporary resp.docx
OverviewThis week, we begin our examination of contemporary resp.docx
jacksnathalie
 
OverviewProgress monitoring is a type of formative assessment in.docx
OverviewProgress monitoring is a type of formative assessment in.docxOverviewProgress monitoring is a type of formative assessment in.docx
OverviewProgress monitoring is a type of formative assessment in.docx
jacksnathalie
 
OverviewThe work you do throughout the modules culminates into a.docx
OverviewThe work you do throughout the modules culminates into a.docxOverviewThe work you do throughout the modules culminates into a.docx
OverviewThe work you do throughout the modules culminates into a.docx
jacksnathalie
 
OverviewThis discussion is about organizational design and.docx
OverviewThis discussion is about organizational design and.docxOverviewThis discussion is about organizational design and.docx
OverviewThis discussion is about organizational design and.docx
jacksnathalie
 
OverviewScholarly dissemination is essential for any doctora.docx
OverviewScholarly dissemination is essential for any doctora.docxOverviewScholarly dissemination is essential for any doctora.docx
OverviewScholarly dissemination is essential for any doctora.docx
jacksnathalie
 
OverviewRegardless of whether you own a business or are a s.docx
OverviewRegardless of whether you own a business or are a s.docxOverviewRegardless of whether you own a business or are a s.docx
OverviewRegardless of whether you own a business or are a s.docx
jacksnathalie
 
OverviewImagine you have been hired as a consultant for th.docx
OverviewImagine you have been hired as a consultant for th.docxOverviewImagine you have been hired as a consultant for th.docx
OverviewImagine you have been hired as a consultant for th.docx
jacksnathalie
 
OverviewDevelop a 4–6-page position about a specific health care.docx
OverviewDevelop a 4–6-page position about a specific health care.docxOverviewDevelop a 4–6-page position about a specific health care.docx
OverviewDevelop a 4–6-page position about a specific health care.docx
jacksnathalie
 
Overview This purpose of the week 6 discussion board is to exam.docx
Overview This purpose of the week 6 discussion board is to exam.docxOverview This purpose of the week 6 discussion board is to exam.docx
Overview This purpose of the week 6 discussion board is to exam.docx
jacksnathalie
 
Overall Scenario Always Fresh Foods Inc. is a food distributor w.docx
Overall Scenario Always Fresh Foods Inc. is a food distributor w.docxOverall Scenario Always Fresh Foods Inc. is a food distributor w.docx
Overall Scenario Always Fresh Foods Inc. is a food distributor w.docx
jacksnathalie
 
OverviewCreate a 15-minute oral presentation (3–4 pages) that .docx
OverviewCreate a 15-minute oral presentation (3–4 pages) that .docxOverviewCreate a 15-minute oral presentation (3–4 pages) that .docx
OverviewCreate a 15-minute oral presentation (3–4 pages) that .docx
jacksnathalie
 
Overall CommentsHi Khanh,Overall you made a nice start with y.docx
Overall CommentsHi Khanh,Overall you made a nice start with y.docxOverall CommentsHi Khanh,Overall you made a nice start with y.docx
Overall CommentsHi Khanh,Overall you made a nice start with y.docx
jacksnathalie
 
Overall CommentsHi Khanh,Overall you made a nice start with.docx
Overall CommentsHi Khanh,Overall you made a nice start with.docxOverall CommentsHi Khanh,Overall you made a nice start with.docx
Overall CommentsHi Khanh,Overall you made a nice start with.docx
jacksnathalie
 
Overall feedbackYou addressed most all of the assignment req.docx
Overall feedbackYou addressed most all  of the assignment req.docxOverall feedbackYou addressed most all  of the assignment req.docx
Overall feedbackYou addressed most all of the assignment req.docx
jacksnathalie
 
Overall Comments Overall you made a nice start with your U02a1 .docx
Overall Comments Overall you made a nice start with your U02a1 .docxOverall Comments Overall you made a nice start with your U02a1 .docx
Overall Comments Overall you made a nice start with your U02a1 .docx
jacksnathalie
 
Overview This purpose of the week 12 discussion board is to e.docx
Overview This purpose of the week 12 discussion board is to e.docxOverview This purpose of the week 12 discussion board is to e.docx
Overview This purpose of the week 12 discussion board is to e.docx
jacksnathalie
 
Over the years, the style and practice of leadership within law .docx
Over the years, the style and practice of leadership within law .docxOver the years, the style and practice of leadership within law .docx
Over the years, the style and practice of leadership within law .docx
jacksnathalie
 

More from jacksnathalie (20)

OverviewThe US is currently undergoing an energy boom largel.docx
OverviewThe US is currently undergoing an energy boom largel.docxOverviewThe US is currently undergoing an energy boom largel.docx
OverviewThe US is currently undergoing an energy boom largel.docx
 
OverviewThe United Nations (UN) has hired you as a consultan.docx
OverviewThe United Nations (UN) has hired you as a consultan.docxOverviewThe United Nations (UN) has hired you as a consultan.docx
OverviewThe United Nations (UN) has hired you as a consultan.docx
 
OverviewThis project will allow you to write a program to get mo.docx
OverviewThis project will allow you to write a program to get mo.docxOverviewThis project will allow you to write a program to get mo.docx
OverviewThis project will allow you to write a program to get mo.docx
 
OverviewThis week, we begin our examination of contemporary resp.docx
OverviewThis week, we begin our examination of contemporary resp.docxOverviewThis week, we begin our examination of contemporary resp.docx
OverviewThis week, we begin our examination of contemporary resp.docx
 
OverviewProgress monitoring is a type of formative assessment in.docx
OverviewProgress monitoring is a type of formative assessment in.docxOverviewProgress monitoring is a type of formative assessment in.docx
OverviewProgress monitoring is a type of formative assessment in.docx
 
OverviewThe work you do throughout the modules culminates into a.docx
OverviewThe work you do throughout the modules culminates into a.docxOverviewThe work you do throughout the modules culminates into a.docx
OverviewThe work you do throughout the modules culminates into a.docx
 
OverviewThis discussion is about organizational design and.docx
OverviewThis discussion is about organizational design and.docxOverviewThis discussion is about organizational design and.docx
OverviewThis discussion is about organizational design and.docx
 
OverviewScholarly dissemination is essential for any doctora.docx
OverviewScholarly dissemination is essential for any doctora.docxOverviewScholarly dissemination is essential for any doctora.docx
OverviewScholarly dissemination is essential for any doctora.docx
 
OverviewRegardless of whether you own a business or are a s.docx
OverviewRegardless of whether you own a business or are a s.docxOverviewRegardless of whether you own a business or are a s.docx
OverviewRegardless of whether you own a business or are a s.docx
 
OverviewImagine you have been hired as a consultant for th.docx
OverviewImagine you have been hired as a consultant for th.docxOverviewImagine you have been hired as a consultant for th.docx
OverviewImagine you have been hired as a consultant for th.docx
 
OverviewDevelop a 4–6-page position about a specific health care.docx
OverviewDevelop a 4–6-page position about a specific health care.docxOverviewDevelop a 4–6-page position about a specific health care.docx
OverviewDevelop a 4–6-page position about a specific health care.docx
 
Overview This purpose of the week 6 discussion board is to exam.docx
Overview This purpose of the week 6 discussion board is to exam.docxOverview This purpose of the week 6 discussion board is to exam.docx
Overview This purpose of the week 6 discussion board is to exam.docx
 
Overall Scenario Always Fresh Foods Inc. is a food distributor w.docx
Overall Scenario Always Fresh Foods Inc. is a food distributor w.docxOverall Scenario Always Fresh Foods Inc. is a food distributor w.docx
Overall Scenario Always Fresh Foods Inc. is a food distributor w.docx
 
OverviewCreate a 15-minute oral presentation (3–4 pages) that .docx
OverviewCreate a 15-minute oral presentation (3–4 pages) that .docxOverviewCreate a 15-minute oral presentation (3–4 pages) that .docx
OverviewCreate a 15-minute oral presentation (3–4 pages) that .docx
 
Overall CommentsHi Khanh,Overall you made a nice start with y.docx
Overall CommentsHi Khanh,Overall you made a nice start with y.docxOverall CommentsHi Khanh,Overall you made a nice start with y.docx
Overall CommentsHi Khanh,Overall you made a nice start with y.docx
 
Overall CommentsHi Khanh,Overall you made a nice start with.docx
Overall CommentsHi Khanh,Overall you made a nice start with.docxOverall CommentsHi Khanh,Overall you made a nice start with.docx
Overall CommentsHi Khanh,Overall you made a nice start with.docx
 
Overall feedbackYou addressed most all of the assignment req.docx
Overall feedbackYou addressed most all  of the assignment req.docxOverall feedbackYou addressed most all  of the assignment req.docx
Overall feedbackYou addressed most all of the assignment req.docx
 
Overall Comments Overall you made a nice start with your U02a1 .docx
Overall Comments Overall you made a nice start with your U02a1 .docxOverall Comments Overall you made a nice start with your U02a1 .docx
Overall Comments Overall you made a nice start with your U02a1 .docx
 
Overview This purpose of the week 12 discussion board is to e.docx
Overview This purpose of the week 12 discussion board is to e.docxOverview This purpose of the week 12 discussion board is to e.docx
Overview This purpose of the week 12 discussion board is to e.docx
 
Over the years, the style and practice of leadership within law .docx
Over the years, the style and practice of leadership within law .docxOver the years, the style and practice of leadership within law .docx
Over the years, the style and practice of leadership within law .docx
 

Recently uploaded

Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 

Recently uploaded (20)

Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 

DROP TABLE ENROLLMENTS; DROP TABLE OFFERINGS;DROP TABLE COUR.docx

  • 1. DROP TABLE ENROLLMENTS; DROP TABLE OFFERINGS; DROP TABLE COURSES; DROP TABLE STUDENTS; CREATE TABLE COURSES (COURSE VARCHAR(6), DESCRIPTION VARCHAR(60), CREDITS INT, CONSTRAINT pk PRIMARY KEY (COURSE)); CREATE TABLE OFFERINGS ( CRN INT, COURSE VARCHAR(6), SECTION VARCHAR(2), DATES VARCHAR(5), TIMES VARCHAR(30),
  • 2. INSTRUCTOR VARCHAR(30), ROOM VARCHAR(20), ENROLLMAX INT, ENROLLCURRENT INT, CONSTRAINT pk2 PRIMARY KEY (CRN), CONSTRAINT fk1 FOREIGN KEY (COURSE) REFERENCES COURSES (COURSE)); CREATE TABLE STUDENTS ( USERID VARCHAR(9), PASSWORD VARCHAR(10), FIRSTNAME VARCHAR(20), LASTNAME VARCHAR(30), PHONE VARCHAR(12), DOB VARCHAR(40), MAJOR VARCHAR(20), ADDRESS VARCHAR(30), CITY VARCHAR(30), STATE VARCHAR(2),
  • 3. ZIP VARCHAR(5), CONSTRAINT pk3 PRIMARY KEY (USERID)); CREATE TABLE ENROLLMENTS ( CRN INT, USERID VARCHAR(9), ENROLLDATE VARCHAR(30), GRADE VARCHAR(2), CONSTRAINT pk4 PRIMARY KEY(CRN, USERID), CONSTRAINT fk2 FOREIGN KEY (CRN) REFERENCES OFFERINGS(CRN), CONSTRAINT fk3 FOREIGN KEY (USERID) REFERENCES STUDENTS(USERID)); INSERT INTO STUDENTS VALUES ('111111111', 'secret1', 'Joan','Green','518-434-5940','March 10, 1987','Biology','10 First Street','Albany','NY','12203');
  • 4. INSERT INTO STUDENTS VALUES ('222222222','secret2', 'Jill','Black','518-389-4029','April 23, 1988','Mathematics','20 Second Street','Albany','NY','12204'); INSERT INTO STUDENTS VALUES ('333333333','secret3', 'Jim','White','518-493-4950','June 30, 1986','Computer Science','30 Third Street','Albany','NY','12205'); INSERT INTO STUDENTS VALUES ('444444444','secret4', 'Jane','Gray','518-583-0934','February 13, 1985','Computer Science','40 Fourth Street','Albany','NY','12206'); INSERT INTO STUDENTS VALUES ('555555555','secret5', 'Joe','Brown','518-589-3940','January 2, 1986','Computer Science','50 Fifth Street','Albany','NY','12207'); INSERT INTO STUDENTS VALUES ('666666666', 'secret6', 'Jackie', 'Blue','518-485-3923','March 23, 1987','Computer Science','60 Sixth Street','Albany','NY','12208');
  • 5. INSERT INTO STUDENTS VALUES ('777777777', 'secret7', 'Judy', 'Purple','518-548- 3049','September 2, 1988','Computer Science','70 Seventh Street','Albany','NY','12209'); INSERT INTO COURSES VALUES('CIS111','Introduction to Computer Science',3); INSERT INTO COURSES VALUES('CIS202','Computer Science 1',4); INSERT INTO COURSES VALUES('CIS203','PC Organization and Operation',3); INSERT INTO COURSES VALUES('CIS204','Educational Computing',3); INSERT INTO COURSES VALUES('CIS205','Windows Programming 1',3);
  • 6. INSERT INTO COURSES VALUES('CIS302','Computer Science 2',4); INSERT INTO COURSES VALUES('CIS305','Windows Programming 2',3); INSERT INTO COURSES VALUES('CIS311','Computer Graphics',3); INSERT INTO COURSES VALUES('CIS321','Database Management Systems',4); INSERT INTO COURSES VALUES('CIS322','Microcomputer Architecture',3); INSERT INTO COURSES VALUES('CIS342','Artificial Intelligence',3); INSERT INTO COURSES VALUES('CIS344','Computer Networks',3);
  • 7. INSERT INTO COURSES VALUES('CIS355','Internet Programming 1',3); INSERT INTO COURSES VALUES('CIS404','Flash',3); INSERT INTO COURSES VALUES('CIS405','Computer Game Design',3); INSERT INTO COURSES VALUES('CIS414','Bioinformatics 1 ',3); INSERT INTO COURSES VALUES('CIS415','Bioinformatics 2 ',3); INSERT INTO COURSES VALUES('CIS416','Internet Programming 2',3); INSERT INTO COURSES VALUES('CIS417','Embedded Systems 1',3); INSERT INTO COURSES VALUES('CIS418','Embedded
  • 8. Systems 2 ',3); INSERT INTO COURSES VALUES('CIS423','Systems Analysis and Design',3); INSERT INTO COURSES VALUES('CIS424','Systems Design and Implementation',3); INSERT INTO COURSES VALUES('CIS431','Algorithms',3); INSERT INTO COURSES VALUES('CIS432','Operating Systems',3); INSERT INTO COURSES VALUES('CIS433','Programming Languages',3); INSERT INTO COURSES VALUES('CIS434','Software Engineering',3); INSERT INTO COURSES VALUES('CIS444','Advanced Networks',3);
  • 9. INSERT INTO COURSES VALUES('CIS494','Internship',3); INSERT INTO COURSES VALUES('CIS499','Independent Study',3); INSERT INTO COURSES VALUES('CIS501','Advanced Data Structures',3); INSERT INTO COURSES VALUES('CIS502','Computer Architecture',3); INSERT INTO COURSES VALUES('CIS503','Database Theory and Design',3); INSERT INTO COURSES VALUES('CIS504','Data Communications',3); INSERT INTO COURSES VALUES('CIS505','User Interface Design',3);
  • 10. INSERT INTO COURSES VALUES('CIS507','Software Engineering',3); INSERT INTO COURSES VALUES('CIS508','Technical Communications',3); INSERT INTO COURSES VALUES('CIS511','Game Design 1 ',3); INSERT INTO COURSES VALUES('CIS512','Game Design 2 ',3); INSERT INTO COURSES VALUES('CIS513','Bioinformatics 1 ',3); INSERT INTO COURSES VALUES('CIS514','Bioinformatics 2 ',3); INSERT INTO COURSES VALUES('CIS515','Internet Programming 1 ',3); INSERT INTO COURSES VALUES('CIS516','Internet
  • 11. Programming 2 ',3); INSERT INTO COURSES VALUES('CIS517','Embedded Systems 1 ',3); INSERT INTO COURSES VALUES('CIS518','Embedded Systems 2 ',3); INSERT INTO COURSES VALUES('CIS598','Independent Study',3); INSERT INTO COURSES VALUES('CIS999','Comprehensive Exam',0); INSERT INTO OFFERINGS VALUES (1,'CIS111','01','MWF','8:00-8:50','Kohler','Lally 051',21,0); INSERT INTO OFFERINGS VALUES (2,'CIS111','02','MWF','8:00-8:50','Marriner','AH205',19,0);
  • 12. INSERT INTO OFFERINGS VALUES (3,'CIS111','03','MW','10:25-11:40','MacDonald','AH408',21,0); INSERT INTO OFFERINGS VALUES (4,'CIS111','04','MW','1:15-2:30','MacDonald','AH205',19,0); INSERT INTO OFFERINGS VALUES (5,'CIS111','05','TR','8:00-9:15','Albanese','AH408',21,0); INSERT INTO OFFERINGS VALUES (6,'CIS111','06','TR','8:00-9:15','Rourke','AH205',21,0); INSERT INTO OFFERINGS VALUES (7,'CIS111','07','TR','2:30-3:45','Rourke','Lally 051',21,0); INSERT INTO OFFERINGS VALUES (8,'CIS111','08','TR','2:30-3:45','Kuhrt','AH408',21,0);
  • 13. INSERT INTO OFFERINGS VALUES (9,'CIS111','09','F','11:00-1:30','Kantor','AH408',21,0); INSERT INTO OFFERINGS VALUES (10,'CIS111','10','F','2:00-4:30','MacDonald','AH205',19,0); INSERT INTO OFFERINGS VALUES (11,'CIS111','E1','W','4:30-7:00','Wohlleber','Lally 051',21,0); INSERT INTO OFFERINGS VALUES (12,'CIS111','E2','W','7:15-9:45','Klevanosky','Lally 051',21,0); INSERT INTO OFFERINGS VALUES (13,'CIS202','01','TR','9:25-11:05','Lawson','AH408',23,0); INSERT INTO OFFERINGS VALUES (14,'CIS202','02','TR','11:15- 12:55','Goldschmidt','AH205',20,0);
  • 14. INSERT INTO OFFERINGS VALUES (15,'CIS202','03','TR','2:30-4:10','Gudmundsen','AH205',20,0); INSERT INTO OFFERINGS VALUES (16,'CIS202','E1','M','5:30-9:00','Goldschmidt','AH205',20,0); INSERT INTO OFFERINGS VALUES (17,'CIS203','E1','TR','4:30-5:45','Rourke','AH205',24,0); INSERT INTO OFFERINGS VALUES (18,'CIS204','01','MWF','11:50-12:40','Gudmundsen','Lally 051',21,0); INSERT INTO OFFERINGS VALUES (19,'CIS204','02','TR','8:00-9:15','Kohler','Lally 051',21,0); INSERT INTO OFFERINGS VALUES (20,'CIS204','03','TR','9:25-10:40','Eladdadi','Lally 051',21,0);
  • 15. INSERT INTO OFFERINGS VALUES (21,'CIS204','04','TR','1:05-2:20','Goldschmidt','AH205',19,0); INSERT INTO OFFERINGS VALUES (22,'CIS204','E2','MW','4:05-5:20','Cufari','AH205',19,0); INSERT INTO OFFERINGS VALUES (23,'CIS204','E1','MW','4:30-5:45','Smith','AH408',21,0); INSERT INTO OFFERINGS VALUES (24,'CIS204','E3','R','4:30-7:00','Ellis','Lally 051',21,0); INSERT INTO OFFERINGS VALUES (25,'CIS204','E4','R','7:15-9:45','MacDonald','Lally 051',21,0); INSERT INTO OFFERINGS VALUES (26,'CIS205','E1','T','6:00-8:30','Gudmundsen','Lally 051',22,0);
  • 16. INSERT INTO OFFERINGS VALUES (27,'CIS302','E1','W','5:30-9:00','Lawson','AH408',23,0); INSERT INTO OFFERINGS VALUES (28,'CIS305','E1','T','6:00-8:30','Kuhrt','AH408',23,0); INSERT INTO OFFERINGS VALUES (29,'CIS311','E1','M','6:00-8:30','Albanese','Lally 051',22,0); INSERT INTO OFFERINGS VALUES (30,'CIS321','01','MWF','10:25-11:40','Avitabile','AH205',19,0); INSERT INTO OFFERINGS VALUES (31,'CIS344','01','MWF','11:50- 12:40','MacDonald','AH205',24,0); INSERT INTO OFFERINGS VALUES (32,'CIS404','E1','R','6:00-8:30','Kuhrt','AH205',10,0);
  • 17. INSERT INTO OFFERINGS VALUES (33,'CIS423','01','F','8:00-10:30','Albanese','AH408',23,0); INSERT INTO OFFERINGS VALUES (34,'CIS433','01','TR','9:25-10:40','Goldschmidt','AH205',19,0); INSERT INTO OFFERINGS VALUES (35,'CIS494','01','','','','',10,0); INSERT INTO OFFERINGS VALUES (36,'CIS499','01','','','','',10,0); INSERT INTO OFFERINGS VALUES (37,'CIS501','E1','M','6:00-8:30','Lawson','AH408',20,0); INSERT INTO OFFERINGS VALUES (38,'CIS503','E1','T','6:00-8:30','Avitabile','AH205',20,0);
  • 18. INSERT INTO OFFERINGS VALUES (39,'CIS505','E1','W','6:00-8:30','Kuhrt','AH205',20,0); INSERT INTO OFFERINGS VALUES (40,'CIS508','E1','R','6:00-8:30','Gudmundsen','AH408',20,0); INSERT INTO OFFERINGS VALUES (41,'CIS511','E1','R','6:00-8:30','Kuhrt','AH205',10,0); INSERT INTO OFFERINGS VALUES (42,'CIS598','01','','','','',10,0); INSERT INTO OFFERINGS VALUES (43,'CIS999','01','','','','',20,0); INSERT INTO ENROLLMENTS(USERID, CRN) VALUES('111111111', 1);
  • 19. INSERT INTO ENROLLMENTS(USERID, CRN) VALUES('222222222', 15); INSERT INTO ENROLLMENTS(USERID, CRN) VALUES('222222222', 19); INSERT INTO ENROLLMENTS(USERID, CRN) VALUES('333333333', 38); INSERT INTO ENROLLMENTS(USERID, CRN) VALUES('333333333', 39); INSERT INTO ENROLLMENTS(USERID, CRN) VALUES('444444444', 14);