-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprojectInit.sql
More file actions
721 lines (656 loc) · 61 KB
/
projectInit.sql
File metadata and controls
721 lines (656 loc) · 61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
DROP DATABASE UniversityRegistrationSystem;
CREATE DATABASE UniversityRegistrationSystem;
USE UniversityRegistrationSystem;
/*
University Member Table
- the memberType is either Instructor, Administrator, Undergraduate, or Graduate
- that is how we distinguish between all the types of people
- statusType is the part-time or full-time status
*/
CREATE TABLE UniversityMember(
memberID INTEGER ,
memberType CHAR(20),
firstName CHAR(40),
lastName CHAR(40),
SIN INTEGER,
dateOfBirth DATE,
homeAddress CHAR(100),
statusType CHAR(20),
yearLevel INTEGER,
PRIMARY KEY(memberID)
);
/*
Course Table
- courseName is the 4 letter name of the course (ex. ESOF)
- courseCode is the 4 digit code of the course (ex. 3050)
- subject is the name of the course
- description is a brief summmary of the course
*/
CREATE TABLE Course(
courseName CHAR(40),
courseCode CHAR(10),
subject CHAR(50),
description TEXT,
PRIMARY KEY(courseName, courseCode)
);
/*
Section Table
- Section is the sections of each course being offered (ex. ESOF-3050-FA or FB)
- courseName and courseCode are taken from the Course table
- courseSection is the section of the course (ex. FA, FB)
- memberID is the instructor who will be teaching that section
- time is the start time of the lecture
- capacity is the maximum number of students allowed in a course
*/
CREATE TABLE Section(
courseName CHAR(40),
courseCode CHAR(10),
courseSection CHAR(20),
memberID INTEGER,
time TIME,
capacity INTEGER,
maxCapacity INTEGER,
PRIMARY KEY (courseName, courseCode, courseSection, memberID),
FOREIGN KEY (courseName, courseCode) REFERENCES Course(courseName, courseCode) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (memberID) REFERENCES UniversityMember(memberID) ON DELETE NO ACTION ON UPDATE CASCADE
);
/*
CourseList Table
- CourseList is the list of students enrolled in a course
- courseName, courseCode, courseSection are from the Section table
*/
CREATE TABLE CourseList(
memberID INTEGER,
courseName CHAR(40),
courseCode CHAR(10),
courseSection CHAR(20),
PRIMARY KEY (memberID, courseName, courseCode, courseSection),
FOREIGN KEY (memberID) REFERENCES UniversityMember(memberID) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (courseName, courseCode, courseSection) REFERENCES Section(courseName, courseCode, courseSection) ON DELETE CASCADE ON UPDATE CASCADE
);
/*
CourseGrades Table
- The CourseGrades table is the grades of every student in a course they are enrolled in
- memberID, courseName, courseCode, and courseSection are from the CourseList table
- grade is the grade they have in the class
*/
CREATE TABLE CourseGrades(
courseName CHAR(40),
courseCode CHAR(10),
courseSection CHAR(20),
memberID INTEGER,
grade INTEGER,
PRIMARY KEY (memberID, courseName, courseCode, courseSection),
FOREIGN KEY (memberID) REFERENCES UniversityMember(memberID) ON DELETE CASCADE,
FOREIGN KEY (courseName, courseCode, courseSection) REFERENCES CourseList(courseName, courseCode, courseSection) ON DELETE CASCADE
);
/*
Login Table
- Login table is the table that is used to determine a valid login
- memberID is from the UniversityMember table
- password is the password used to sign into the URS
- memberType is the type of member they are, getting a different view depending on the memberType (student, instructor, administrator)
*/
CREATE TABLE Login(
memberID INTEGER,
password CHAR(50),
memberType CHAR(20),
PRIMARY KEY (memberID, password),
FOREIGN KEY (memberID) REFERENCES UniversityMember(memberID) ON DELETE CASCADE
);
#### Entries ####
#Students
INSERT INTO UniversityMember VALUES (1231231, 'Undergraduate', 'John', 'Smith', 123456789, '1990-10-22', '123 Main Street, Thunder Bay, ON, P7Y 4L9, Canada', 'Part-Time', 2);
INSERT INTO UniversityMember VALUES (4215976, 'Undergraduate', 'Justin', 'Gates', 212512322, '1986-02-02', '421 Dundas Ave, Thunder Bay, ON, P4C 1T8, Canada', 'Part-Time', 3);
INSERT INTO UniversityMember VALUES (5188121, 'Undergraduate', 'Albert', 'Marteus', 782164524, '1992-12-08', '915 Bay Street, Thunder Bay, ON, P1K 7Z9, Canada', 'Part-Time', 2);
INSERT INTO UniversityMember VALUES (9015219, 'Undergraduate', 'Marcus', 'Potts', 976735653, '1990-04-05', '1303 Walnut Drive, Thunder Bay, ON, P8J 2L1, Canada', 'Part-Time', 4);
INSERT INTO UniversityMember VALUES (7537134, 'Undergraduate', 'Dimitri', 'Schtern', 145318586, '1989-01-20', '891 Winnipeg Ave, Thunder Bay, ON, P2P 5W1, Canada', 'Part-Time', 2);
INSERT INTO UniversityMember VALUES (0125392, 'Undergraduate', 'Austin', 'Maxine', 879021175, '1985-05-09', '1052 Parkdale Ave, Thunder Bay, ON, P5A 9M8, Canada', 'Part-Time', 1);
INSERT INTO UniversityMember VALUES (5329210, 'Undergraduate', 'Alexandra', 'West', 597901180, '1984-11-13', '777 Algoma Street, Thunder Bay, ON, P7C 1G9, Canada', 'Part-Time', 4);
INSERT INTO UniversityMember VALUES (1205189, 'Undergraduate', 'Landon', 'McDonald', 616839872, '1995-10-29', '623 Brodie Street, Thunder Bay, ON, P6M 2M1, Canada', 'Part-Time', 3);
INSERT INTO UniversityMember VALUES (2125890, 'Undergraduate', 'Peter', 'Chen', 324327530, '1989-02-26', '1234 Third Street, Thunder Bay, ON, P3K 8J6, Canada', 'Part-Time', 1);
INSERT INTO UniversityMember VALUES (5181205, 'Graduate', 'James', 'Wong', 186014558, '1982-12-26', '139 Franklin Ave, Thunder Bay, ON, P2K 7O2, Canada', 'Part-Time', 5);
INSERT INTO UniversityMember VALUES (2195182, 'Graduate', 'Nicole', 'Lowry', 324327530, '2000-05-04', '619 Victoria Street, Thunder Bay, ON, P9S 2W1, Canada', 'Part-Time', 6);
INSERT INTO UniversityMember VALUES (9518953, 'Graduate', 'Deandra', 'White', 772976152, '1988-02-20', '1214 Erendale Street, Thunder Bay, ON, P0P 3M3, Canada', 'Part-Time', 5);
INSERT INTO UniversityMember VALUES (7531923, 'Graduate', 'Zach', 'Scott', 592972413, '2002-07-23', '812 Loyola Place, Thunder Bay, ON, P4J 1R0, Canada', 'Part-Time', 5);
INSERT INTO UniversityMember VALUES (0124829, 'Undergraduate', 'Jessica', 'Fernley', 323359646, '1996-06-15', '421 Acorn Avenue, Thunder Bay, ON, P7T 1T9, Canada', 'Full-Time', 4);
INSERT INTO UniversityMember VALUES (1583815, 'Undergraduate', 'Trenton', 'Hobbs', 127577684, '1984-08-29', '1109 Cottonwood Crescent, Thunder Bay, ON, P1R 0G9, Canada', 'Full-Time', 2);
INSERT INTO UniversityMember VALUES (8215721, 'Undergraduate', 'Nicole', 'Young', 178020326, '1985-01-14', '921 Glasgow Street, Thunder Bay, ON, P8I 7X2, Canada', 'Full-Time', 1);
INSERT INTO UniversityMember VALUES (5292719, 'Undergraduate', 'Samantha', 'Martin Jr.', 533913098, '2002-12-10', '512 Jade Court, Thunder Bay, ON, P5B 9I0, Canada', 'Full-Time', 3);
INSERT INTO UniversityMember VALUES (1929148, 'Undergraduate', 'Tien', 'Wade', 205318702, '2000-11-17', '218 Lancaster Street, Thunder Bay, ON, PL0 4N4, Canada', 'Full-Time', 2);
INSERT INTO UniversityMember VALUES (7214933, 'Undergraduate', 'Tyler', 'Shin', 456789123, '1982-09-27', '721 King Street, Thunder Bay, ON, P4L 9P2, Canada', 'Full-Time', 4);
INSERT INTO UniversityMember VALUES (6216862, 'Undergraduate', 'Pablo', 'North', 192079634, '1989-06-21', '1512 Norah Crescent, Thunder Bay, ON, P9Z 3Z9, Canada', 'Full-Time', 1);
INSERT INTO UniversityMember VALUES (5320911, 'Undergraduate', 'Hannah', 'Baldwin', 047288825, '1999-11-18', '351 Oliver Road, Thunder Bay, ON, P7X 3E1, Canada', 'Full-Time', 2);
INSERT INTO UniversityMember VALUES (3190185, 'Undergraduate', 'Tony', 'Rich', 435839484, '1987-06-27', '521 Rona Street, Thunder Bay, ON, P5J 3M5, Canada', 'Full-Time', 3);
INSERT INTO UniversityMember VALUES (2109012, 'Undergraduate', 'Gia', 'Stevens', 186710588, '1992-03-14', '707 Silas Road, Thunder Bay, ON, P5J 9J0, Canada', 'Full-Time', 1);
INSERT INTO UniversityMember VALUES (4210305, 'Undergraduate', 'Pablo', 'North', 425643419, '1990-10-08', '512 Tokio Street, Thunder Bay, ON, P3E 6H3, Canada', 'Full-Time', 4);
INSERT INTO UniversityMember VALUES (2190182, 'Undergraduate', 'Reese', 'Kemp', 598704490, '1995-02-16', '807 Trillium Place, Thunder Bay, ON, P3E 5Y3, Canada', 'Full-Time', 2);
INSERT INTO UniversityMember VALUES (5031219, 'Undergraduate', 'Harper', 'Wyatt', 706460918, '1994-08-11', '972 Wilson Street, Thunder Bay, ON, P3E 2W1, Canada', 'Full-Time', 1);
INSERT INTO UniversityMember VALUES (6102213, 'Undergraduate', 'Asia', 'Brown', 833988144, '1988-03-01', '121 Yale Street, Thunder Bay, ON, P8I 5R2, Canada', 'Full-Time', 3);
INSERT INTO UniversityMember VALUES (1294194, 'Undergraduate', 'Zoey', 'Waller', 853225450, '1991-08-23', '345 Wren Court, Thunder Bay, ON, P8I 0L6, Canada', 'Full-Time', 2);
INSERT INTO UniversityMember VALUES (5901821, 'Undergraduate', 'Bruce', 'Harper', 308074144, '1987-09-24', '911 Hodder Ave, Thunder Bay, ON, P8I 1T2, Canada', 'Full-Time', 4);
INSERT INTO UniversityMember VALUES (0912942, 'Undergraduate', 'Jasmine Fritz', 'North', 083235525, '2002-02-23', '218 Syndicate Avenue, Thunder Bay, ON, P0T 9G2, Canada', 'Full-Time', 4);
INSERT INTO UniversityMember VALUES (5429195, 'Undergraduate', 'Nicole', 'Diaz', 864095537, '1982-07-01', '6218 Riverdale Street, Thunder Bay, ON, P0T 1D6, Canada', 'Full-Time', 2);
INSERT INTO UniversityMember VALUES (6942091, 'Undergraduate', 'Walker', 'Obrien', 983358142, '1983-02-24', '1123 Picard Ave, Thunder Bay, ON, P0T 1D1, Canada', 'Full-Time', 1);
INSERT INTO UniversityMember VALUES (3219998, 'Graduate', 'Aaron', 'Rogers', 906744957, '1994-02-23', '214 Ambrose Street, Thunder Bay, ON, P1Y 5K9, Canada', 'Full-Time', 6);
INSERT INTO UniversityMember VALUES (5153912, 'Graduate', 'Brandon', 'Bembry', 794231517, '1993-10-21', '951 15th Sideroad, Thunder Bay, ON, P1Y 4L0, Canada', 'Full-Time', 6);
INSERT INTO UniversityMember VALUES (1005190, 'Graduate', 'Pascal', 'Ingram', 945399607, '1998-11-16', '1521 High Street, Thunder Bay, ON, P1Y 1U7, Canada', 'Full-Time', 5);
INSERT INTO UniversityMember VALUES (8892149, 'Graduate', 'Kyle', 'Butler', 586518060, '1998-03-30', '721 Central Ave, Thunder Bay, ON, P4B 5J1, Canada', 'Full-Time', 5);
INSERT INTO UniversityMember VALUES (6661293, 'Graduate', 'Stephen', 'Thompson', 870679523, '1990-08-20', '777 Balmoral Street, Thunder Bay, ON, P4B 4L9, Canada', 'Full-Time', 6);
INSERT INTO UniversityMember VALUES (1024920, 'Graduate', 'Klay', 'Curry', 562539179, '1987-08-26', '821 James Street, Thunder Bay, ON, P4B 8L1, Canada', 'Full-Time', 5);
INSERT INTO UniversityMember VALUES (9218529, 'Graduate', 'Draymond', 'Brown', 728929658, '1990-02-22', '8519 Nick Street, Thunder Bay, ON, P7C 9U7, Canada', 'Full-Time', 6);
#Instructors
INSERT INTO UniversityMember VALUES (0646314, 'Instructor', 'Ken', 'Ironside', 147258369, '1984-08-31', '6351 Windsor Street, Thunder Bay, ON, P2U 3X7, Canada', 'Part-Time', -1);
INSERT INTO UniversityMember VALUES (2419215, 'Instructor', 'Chadwick', 'Boucher', 638799434, '1961-09-27', '941 Bankers Street, Thunder Bay, ON, P5X 7J3, Canada', 'Part-Time', -1);
INSERT INTO UniversityMember VALUES (6319921, 'Instructor', 'Margeret', 'Jordan', 698802186, '1991-09-28', '219 High Street, Thunder Bay, ON, P4N 3K5, Canada', 'Part-Time', -1);
INSERT INTO UniversityMember VALUES (0021521, 'Instructor', 'Yuri', 'Orslof', 698802186, '1974-03-17', '271 Bristol Court, Thunder Bay, ON, P8B 3M6, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (2419522, 'Instructor', 'Thomas', 'Andre', 298960408, '1966-02-28', '829 Third Street, Thunder Bay, ON, P0B 6G2, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (7214777, 'Instructor', 'Henry', 'Miller', 752264681, '1961-05-23', '124 Cherrygrove Street, Thunder Bay, ON, P2C 1B7, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (3450968, 'Instructor', 'Harrison', 'Ford', 431423924, '1973-03-23', '3582 John Street, Thunder Bay, ON, P5N 3A5, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (7892152, 'Instructor', 'Christina', 'Hemsworth', 254836716, '1983-05-19', '742 Frankwood Avenue, Thunder Bay, ON, P9A 4A4, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (2192100, 'Instructor', 'Nicholas', 'Emperius', 607400547, '1962-02-21', '682 Huntington Street, Thunder Bay, ON, P5F 2F5, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (4210012, 'Instructor', 'Natasha', 'Popov', 525491129, '1982-05-19', '482 Langworthy Crescent, Thunder Bay, ON, P1S 6B2, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (7821942, 'Instructor', 'Bill', 'Gates', 388639027, '1965-07-23', '2105 Mireault Crescent, Thunder Bay, ON, P9B 7Q3, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (5678762, 'Instructor', 'Steve', 'Jobbs', 668754218, '1984-05-28', '517 Nipigon Avenue, Thunder Bay, ON, P1Q 6L2, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (7544327, 'Instructor', 'Squid', 'Game', 849927954, '1964-11-21', '298 Porcupine Avenue, Thunder Bay, ON, P5L 1Q5, Canada', 'Full-Time', -1);
#Administrators
INSERT INTO UniversityMember VALUES (9000546, 'Administrator', 'Bailey', 'Hull', 369147258, '1968-04-15', '365 Fifth Street, Thunder Bay, ON, P6Z 3B2, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (5129851, 'Administrator', 'Precious', 'Davis', 570862430, '1961-09-03', '1213 Ridgeway Street, Thunder Bay, ON, P1M 5U2, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (2199921, 'Administrator', 'Shaquille', 'James', 812330796, '1976-07-24', '6217 Shirley Road, Thunder Bay, ON, P9N 3K1, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (8582188, 'Administrator', 'Hassan', 'Mohammed', 683611787, '1970-11-26', '521 Walsh Street, Thunder Bay, ON, P4S 9I4, Canada', 'Full-Time', -1);
INSERT INTO UniversityMember VALUES (7772147, 'Administrator', 'Karen', 'Winters', 447628671, '1985-01-10', '846 Oxford Street, Thunder Bay, ON, P8D 2V9, Canada', 'Full-Time', -1);
#Courses (Add Descriptions)
INSERT INTO Course VALUES ('ENGL', '1012', 'Academic Communications', 'Intended to help students improve their communication skills: writing, reading, thinking, speaking, and listening, with the intent of bridging the gap between every day communication and academic writing. Students write an expository and a persuasive paper, summarize written texts, apply principles of clear and correct writing to their own PHYSositions, and expand their writing skills so that they can write and speak more effectively for a variety of audiences and purposes.');
INSERT INTO Course VALUES ('WOME', '1100', 'Women and Gender Studies', 'An interdisciplinary introduction, the course explores intersections of gender, race, class, sexuality, ability, age and other socially/historically shaped dimensions of identity. Discussions will include such topics as media, health, work, poverty, body and sexuality, violence, law and creativity, in local and global contexts.');
INSERT INTO Course VALUES ('SPAN', '1000', 'Introductory Spanish', 'A beginners course in the study of the Spanish language. Oral practice, dictation, essentials of grammar and writing.');
INSERT INTO Course VALUES ('EMEC', '1112', 'Intro to Engineering Design', 'Covers design techniques, creative thinking, teamwork, project planning, health and safety, reverse engineering, economic analysis, engineering drawings, ethics and professionalism, learning and problem solving.');
INSERT INTO Course VALUES ('RELI', '1100', 'Intro World Religions', 'An introduction to the religions of the world, with special attention to Hinduism, Buddhism, Taoism, Confucianism, Judaism, Christianity and Islam. An enquiry into the history of religions and the manifestations and meaning of religion in relation to its cultural context.');
INSERT INTO Course VALUES ('FREN', '1510', 'Oral French I', 'A course designed for improving oral skills; audio-visual activities, conversations in small groups, oral presentations.');
INSERT INTO Course VALUES ('KINE', '1035', 'Physical Growth and Motor Devel', 'A study of the quantitative and qualitative changes that occur during physical growth and movement skill development across the lifespan. Particular emphasis is placed on learning and applying observational analysis techniques of fundamental movement patterns.');
INSERT INTO Course VALUES ('PHYS', '1070', 'Semiconductor Phsyics', 'Physics of semiconductors including crystal structure, conductivity, photoelectric effect, Hall effect, atomic energy levels and band theory, Fermi-Dirac statistics and density of states, intrinsic and extrinsic properties. The physics of common semiconductor devices are also discussed.');
INSERT INTO Course VALUES ('BIOL', '2011', 'Human Musculoskel Anatomy', 'Anatomical systems/topics covered are the integumentary, muscular, and skeletal systems as well as arthrology. Laboratory work includes the study of the cat as a representative animal.');
INSERT INTO Course VALUES ('NURS', '2055', 'Adult Illness Concepts I', 'Develops the student’s knowledge and understanding of the pathophysiological concepts of altered health states and application of the nursing process to the care of adults.');
INSERT INTO Course VALUES ('GERO', '2016', 'Adult Development', 'Provides an examination of developmental processes that occur in adulthood, from emerging adulthood to old age, with a focus on theory, research, and practical issues. Topics will include theoretical perspectives on developmental change, biological changes, cognitive changes, social and personality changes, stressful life events, assessment and intervention with the elderly, and death.');
INSERT INTO Course VALUES ('GEOL', '2210', 'Minerology', 'Develops the student’s knowledge and understanding of the pathophysiological concepts of altered health states and application of the nursing process to the care of adults. The emphasis is on clinical manifestations of acute or chronic health alterations, physical assessment, diagnostics, and therapeutic nursing strategies to support clients as they move towards self-management of their health. A lab PHYSonent offers students the opportunity to practise skills and interventions that promote the health and comfort of individuals.');
INSERT INTO Course VALUES ('POLI', '2311', 'Criminal Law', 'A study of the Canadian Criminal Code, rules of evidence and sentencing. The course will draw on recent court decisions and procedures.');
INSERT INTO Course VALUES ('CHEM', '2211', 'Organic Chemistry I', 'Physical properties, chemical reactions, nomenclature and conformational properties of alkanes, alkenes and alkynes. Characteristic reactions of alcohols and alkyl halides. Reactions of various types of carbonyl compounds. Optical, geometric and diastereoisomerism. Introduction to the spectroscopic identification of organic compounds.');
INSERT INTO Course VALUES ('ESOF', '3050', 'Software Engineering', 'A project oriented course in which students apply software engineering principles of requirements elicitation, specifications, design, implementation and testing to solve engineering problems. The course content focuses on object oriented methodology and the use of Unified Modeling Language (UML) to specify, visualize, construct and document the artifacts of the software system. Topics include: concepts of object orientation; UML modeling and class diagrams; developing software requirements; client-server architecture; software design patterns; software implementation and testing; basic architectural patterns.');
INSERT INTO Course VALUES ('ESOF', '3655', 'Principles of Operating Systems', 'Main PHYSonents of modern operating systems; PHYSuter and OS architecture; processes and process management; threading; CPU scheduling; memory management; file management; I/O device management; with implementation examples taken from real-world operating systems including real-time OS and distributed OS; and coding exercises.');
INSERT INTO Course VALUES ('EDUC', '3910', 'Global Citizenship Education', 'Topics in education that address current issues and practices in the field.');
INSERT INTO Course VALUES ('MATH', '3071', 'Discrete Mathematics', 'Basic set theory. Introduction to logic and proofs. Functions and relations. Mathematical induction and recursion. Algorithms; time estimates and orders of magnitude. Basic combinations. Graphs. Boolean algebras.');
INSERT INTO Course VALUES ('NRMT', '3051', 'Forest and Wildlife Genetics', 'An introduction to the principles of genetics and natural variation of forest trees and wildlife species. The basic principles and processes of Mendelian, molecular, population, and quantitative genetics will be discussed. Main topics include the causes and sources of natural variation, fundamentals of selective breeding, and responsibilities for genetic conservation.');
INSERT INTO Course VALUES ('ANTH', '3011', 'Topics in Human Origins', 'An introduction to more advanced theoretical concepts and methodological techniques for comparative human and nonhuman primate biology and evolution. Particular emphasis is placed on using the comparative method to test hypotheses about human and nonhuman primate evolution. The use of dimensional techniques, such as laser scanning and photogrammetry, in paleoanthropological research is also examined.');
INSERT INTO Course VALUES ('BUSI', '4071', 'Strategic Management II', 'Applies the concepts of strategic management to real-life organizational situations. Students are required to analyze an existing organization and to submit a detailed report of their findings, analyses, and recommendations for the future. Although this is a half-course equivalent, this course will be scheduled over both fall and winter terms. It is strongly recommended that students consult the instructor and begin planning their activities before the end of their third year. The work in this course will build on the topics in 3071 and will include a detailed strategy implementation plan for an organization.');
INSERT INTO Course VALUES ('MUSI', '4330', 'String Ensemble IV', 'The topic of this ensemble will vary from year to year. Consult the Department for further details.');
INSERT INTO Course VALUES ('PHYS', '4411', 'Advanced Experimental Physics I', 'The experiments will be based on fourth year physics courses. Topics considered will include several of the following: x-ray diffraction and crystal structure determination, investigation of laser types and applications, and the use of dispersive and interferometric optical spectrometers.');
INSERT INTO Course VALUES ('ENST', '4011', 'Environmental Biochemistry', 'An introduction to the principles of stable isotope geochemistry, with specific emphasis on the behaviour of oxygen, hydrogen and carbon isotopes among the bio-,hydro-,litho-, and atmosphere. Students will be introduced to theoretical and practical applications of stable isotopes to environmental studies.');
INSERT INTO Course VALUES ('VISU', '4110', 'Senior Ceramics I', 'An advanced and intensive exploration of the students chosen medium. Students are expected to produce a significant body of exhibition quality works of art following an individualized outline decided in consultation with the instructor.');
INSERT INTO Course VALUES ('SOCI', '5111', 'Problem and Issues in Socialogy', 'A critical examination of theoretical problems and issues in Sociology.');
INSERT INTO Course VALUES ('MEDI', '5045', 'Social and Population Health I', 'Students develop their knowledge and understanding of the principles of primary health care and the Canadian health care system; public health; cultural/social/economic aspects of health and illness; history of disease; health promotion and disease prevention for individuals, communities, and populations; workplace health and safety; and research methods and critical appraisal, epidemiology, and statistics. Particular foci will include the determinants of health, health-related risk factors, interprofessional roles, and the impact of health policy on health.');
INSERT INTO Course VALUES ('BUSI', '5052', 'Financial Reporting and Analysis', 'Provides a user perspective on the role of financial accounting and reporting in capturing and conveying economic information about an organization. Students are introduced to principles and concepts underlying accounting information and recording, compiling, summarizing, organizing and processing accounting information. Student will also become familiar with the format, analysis, and interpretation of financial statements for better decision-making and learn how to use the concepts and vocabulary of accounting to communicate business performance.');
INSERT INTO Course VALUES ('EDUC', '6411', 'Cognition and Learning', 'Provides an analysis of epistemological theories through a critical examination of foundational and current research and a reflection on historical and philosophical orientations as they relate to contemporary issues in cognition and learning.');
INSERT INTO Course VALUES ('HESC', '6010', 'Emerging Issues in Health Science', 'A critical examination of applied and clinical health issues, with a special consideration for at-risk populations.');
INSERT INTO Course VALUES ('PSYC', '6011', 'Dialectual Behviour Therapy', 'Examination of theoretical perspectives, empirical foundations, and treatment strategies of Dialectical Behaviour Therapy (DBT). Students will learn about theoretical foundations, various modes of treatment, and core skills. Students will demonstrate their knowledge and acquired skills through course-based session planning and discussion, skill demonstration, and reflection. Students may have an opportunity to apply their skills through community-based practica (e.g., co-facilitating a DBT skills training group).');
#Section
INSERT INTO Section VALUES ('ENGL', '1012', 'FA', 7892152, '18:00:00', 15, 15);
INSERT INTO Section VALUES ('ENGL', '1012', 'FB', 7892152, '10:30:00', 20, 20);
INSERT INTO Section VALUES ('WOME', '1100', 'FA', 6319921, '08:30:00', 35, 35);
INSERT INTO Section VALUES ('SPAN', '1000', 'FA', 0021521, '12:00:00', 25, 25);
INSERT INTO Section VALUES ('EMEC', '1112', 'FA', 6319921, '20:00:00', 25, 25);
INSERT INTO Section VALUES ('RELI', '1100', 'FA', 3450968, '07:00:00', 50, 50);
INSERT INTO Section VALUES ('FREN', '1510', 'FA', 0646314, '11:00:00', 20, 20);
INSERT INTO Section VALUES ('KINE', '1035', 'FA', 5678762, '07:00:00', 15, 15);
INSERT INTO Section VALUES ('PHYS', '1070', 'FA', 4210012, '14:00:00', 40, 40);
INSERT INTO Section VALUES ('PHYS', '1070', 'FB', 4210012, '19:00:00', 40, 40);
INSERT INTO Section VALUES ('BIOL', '2011', 'FA', 7214777, '10:30:00', 60, 60);
INSERT INTO Section VALUES ('NURS', '2055', 'FA', 7214777, '08:30:00', 60, 60);
INSERT INTO Section VALUES ('NURS', '2055', 'FB', 7214777, '13:30:00', 40, 40);
INSERT INTO Section VALUES ('GERO', '2016', 'FA', 5678762, '08:30:00', 25, 25);
INSERT INTO Section VALUES ('GEOL', '2210', 'FA', 0021521, '15:30:00', 35, 35);
INSERT INTO Section VALUES ('POLI', '2311', 'FA', 3450968, '20:00:00', 100, 100);
INSERT INTO Section VALUES ('CHEM', '2211', 'FA', 7821942, '14:30:00', 35, 35);
INSERT INTO Section VALUES ('ESOF', '3050', 'FA', 0646314, '13:30:00', 45, 45);
INSERT INTO Section VALUES ('ESOF', '3050', 'FB', 0646314, '10:00:00', 10, 10);
INSERT INTO Section VALUES ('ESOF', '3655', 'FA', 7214777, '12:00:00', 45, 45);
INSERT INTO Section VALUES ('EDUC', '3910', 'FA', 2419522, '16:00:00', 45, 45);
INSERT INTO Section VALUES ('MATH', '3071', 'FA', 5678762, '08:30:00', 20, 20);
INSERT INTO Section VALUES ('MATH', '3071', 'FB', 2192100, '10:30:00', 20, 20);
INSERT INTO Section VALUES ('MATH', '3071', 'FC', 2419522, '12:30:00', 45, 45);
INSERT INTO Section VALUES ('NRMT', '3051', 'FA', 3450968, '14:30:00', 25, 25);
INSERT INTO Section VALUES ('ANTH', '3011', 'FA', 3450968, '20:30:00', 69, 69);
INSERT INTO Section VALUES ('BUSI', '4071', 'FA', 7544327, '17:15:00', 10, 10);
INSERT INTO Section VALUES ('BUSI', '4071', 'FB', 7544327, '15:00:00', 15, 15);
INSERT INTO Section VALUES ('MUSI', '4330', 'FA', 4210012, '14:30:00', 20, 20);
INSERT INTO Section VALUES ('PHYS', '4411', 'FA', 5678762, '08:30:00', 20, 20);
INSERT INTO Section VALUES ('ENST', '4011', 'FA', 7821942, '12:30:00', 15, 15);
INSERT INTO Section VALUES ('VISU', '4110', 'FA', 6319921, '10:30:00', 32, 32);
INSERT INTO Section VALUES ('SOCI', '5111', 'FA', 7544327, '07:15:00', 25, 25);
INSERT INTO Section VALUES ('MEDI', '5045', 'FA', 2419522, '08:30:00', 50, 50);
INSERT INTO Section VALUES ('BUSI', '5052', 'FA', 2192100, '07:15:00', 25, 25);
INSERT INTO Section VALUES ('EDUC', '6411', 'FA', 2419215, '18:45:00', 20, 20);
INSERT INTO Section VALUES ('HESC', '6010', 'FA', 6319921, '12:45:00', 40, 40);
INSERT INTO Section VALUES ('PSYC', '6011', 'FA', 2419522, '10:30:00', 15, 15);
#CourseList
#Part Time Students
INSERT INTO CourseList VALUES (1231231, 'SPAN', '1000', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'SPAN' AND courseCode = '1000' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1231231, 'NURS', '2055', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'NURS' AND courseCode = '2055' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (4215976, 'ENGL', '1012', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ENGL' AND courseCode = '1012' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (4215976, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5188121, 'SPAN', '1000', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'SPAN' AND courseCode = '1000' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (9015219, 'NURS', '2055', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'NURS' AND courseCode = '2055' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (7537134, 'WOME', '1100', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'WOME' AND courseCode = '1100' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (0125392, 'ENGL', '1012', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ENGL' AND courseCode = '1012' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5329210, 'MUSI', '4330', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MUSI' AND courseCode = '4330' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5329210, 'ENGL', '1012', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ENGL' AND courseCode = '1012' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1205189, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (2125890, 'WOME', '1100', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'WOME' AND courseCode = '1100' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5181205, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5181205, 'SOCI', '5111', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'SOCI' AND courseCode = '5111' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (2195182, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (2195182, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (9518953, 'WOME', '1100', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'WOME' AND courseCode = '1100' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (9518953, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (7531923, 'SPAN', '1000', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'SPAN' AND courseCode = '1000' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (7531923, 'WOME', '1100', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'WOME' AND courseCode = '1100' AND courseSection = 'FA';
#Full Time Students
INSERT INTO CourseList VALUES (0124829, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (0124829, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (0124829, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (0124829, 'VISU', '4110', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'VISU' AND courseCode = '4110' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (0124829, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1583815, 'NURS', '2055', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'NURS' AND courseCode = '2055' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1583815, 'GEOL', '2210', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'GEOL' AND courseCode = '2210' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1583815, 'GERO', '2016', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'GERO' AND courseCode = '2016' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1583815, 'BIOL', '2011', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'BIOL' AND courseCode = '2011' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1583815, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (8215721, 'SPAN', '1000', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'SPAN' AND courseCode = '1000' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (8215721, 'PHYS', '1070', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (8215721, 'FREN', '1510', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'FREN' AND courseCode = '1510' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (8215721, 'ENGL', '1012', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ENGL' AND courseCode = '1012' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (8215721, 'KINE', '1035', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'KINE' AND courseCode = '1035' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5292719, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5292719, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5292719, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (5292719, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (5292719, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1929148, 'NURS', '2055', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'NURS' AND courseCode = '2055' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1929148, 'GEOL', '2210', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'NURS' AND courseCode = '2055' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1929148, 'GERO', '2016', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'GERO' AND courseCode = '2016' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1929148, 'BIOL', '2011', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'BIOL' AND courseCode = '2055' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1929148, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (7214933, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (7214933, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (7214933, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (7214933, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (7214933, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (6216862, 'SPAN', '1000', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'SPAN' AND courseCode = '1000' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (6216862, 'PHYS', '1070', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (6216862, 'FREN', '1510', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'FREN' AND courseCode = '1510' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (6216862, 'ENGL', '1012', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ENGL' AND courseCode = '1012' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (6216862, 'KINE', '1035', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'KINE' AND courseCode = '1035' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5320911, 'NURS', '2055', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'NURS' AND courseCode = '2055' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5320911, 'GEOL', '2210', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'NURS' AND courseCode = '2055' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5320911, 'GERO', '2016', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'GERO' AND courseCode = '2016' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5320911, 'BIOL', '2011', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'BIOL' AND courseCode = '2055' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5320911, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (3190185, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (3190185, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (3190185, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (3190185, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (3190185, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (4210305, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (4210305, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (4210305, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (4210305, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (4210305, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (6102213, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (6102213, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (6102213, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (6102213, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (6102213, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5901821, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5901821, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5901821, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (5901821, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (5901821, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (0912942, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (0912942, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (0912942, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (0912942, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (0912942, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (3219998, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (3219998, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (3219998, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (3219998, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (3219998, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5153912, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5153912, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (5153912, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (5153912, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (5153912, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1005190, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1005190, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1005190, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (1005190, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (1005190, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (8892149, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (8892149, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (8892149, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (8892149, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (8892149, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (6661293, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (6661293, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (6661293, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (6661293, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (6661293, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1024920, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1024920, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (1024920, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (1024920, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (1024920, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (9218529, 'ESOF', '3050', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3050' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (9218529, 'ESOF', '3655', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'ESOF' AND courseCode = '3655' AND courseSection = 'FA';
INSERT INTO CourseList VALUES (9218529, 'MATH', '3071', 'FC');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'MATH' AND courseCode = '3071' AND courseSection = 'FC';
INSERT INTO CourseList VALUES (9218529, 'PHYS', '1070', 'FB');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'PHYS' AND courseCode = '1070' AND courseSection = 'FB';
INSERT INTO CourseList VALUES (9218529, 'CHEM', '2211', 'FA');
UPDATE Section SET capacity = capacity - 1 WHERE courseName = 'CHEM' AND courseCode = '2211' AND courseSection = 'FA';
#Part Time Students
INSERT INTO CourseGrades VALUES ('SPAN', '1000', 'FA', 1231231, 78);
INSERT INTO CourseGrades VALUES ('NURS', '2055', 'FA', 1231231, 67);
INSERT INTO CourseGrades VALUES ('ENGL', '1012', 'FA', 4215976, 89);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 4215976, 87);
INSERT INTO CourseGrades VALUES ('SPAN', '1000', 'FA', 5188121, 56);
INSERT INTO CourseGrades VALUES ('NURS', '2055', 'FB', 9015219, 56);
INSERT INTO CourseGrades VALUES ('WOME', '1100', 'FA', 7537134, 77);
INSERT INTO CourseGrades VALUES ('ENGL', '1012', 'FA', 0125392, 32);
INSERT INTO CourseGrades VALUES ('MUSI', '4330', 'FA', 5329210, 87);
INSERT INTO CourseGrades VALUES ('ENGL', '1012', 'FA', 5329210, 98);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 1205189, 76);
INSERT INTO CourseGrades VALUES ('WOME', '1100', 'FA', 2125890, 76);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 5181205, 76);
INSERT INTO CourseGrades VALUES ('SOCI', '5111', 'FA', 5181205, 59);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 2195182, 77);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 2195182, 88);
INSERT INTO CourseGrades VALUES ('WOME', '1100', 'FA', 9518953, 77);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 9518953, 92);
INSERT INTO CourseGrades VALUES ('SPAN', '1000', 'FA', 7531923, 83);
INSERT INTO CourseGrades VALUES ('WOME', '1100', 'FA', 7531923, 74);
#Full Time Students
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 0124829, 100);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 0124829, 89);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 0124829, 83);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 0124829, 95);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 0124829, 78);
INSERT INTO CourseGrades VALUES ('NURS', '2055', 'FA', 1583815, 80);
INSERT INTO CourseGrades VALUES ('GEOL', '2210', 'FA', 1583815, 87);
INSERT INTO CourseGrades VALUES ('GERO', '2016', 'FA', 1583815, 75);
INSERT INTO CourseGrades VALUES ('BIOL', '2011', 'FA', 1583815, 94);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 1583815, 69);
INSERT INTO CourseGrades VALUES ('SPAN', '1000', 'FA', 8215721, 67);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FA', 8215721, 55);
INSERT INTO CourseGrades VALUES ('FREN', '1510', 'FA', 8215721, 65);
INSERT INTO CourseGrades VALUES ('ENGL', '1012', 'FB', 8215721, 56);
INSERT INTO CourseGrades VALUES ('KINE', '1035', 'FA', 8215721, 49);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 5292719, 50);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 5292719, 78);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 5292719, 95);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 5292719, 43);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 5292719, 88);
INSERT INTO CourseGrades VALUES ('NURS', '2055', 'FA', 1929148, 99);
INSERT INTO CourseGrades VALUES ('GEOL', '2210', 'FA', 1929148, 98);
INSERT INTO CourseGrades VALUES ('GERO', '2016', 'FA', 1929148, 87);
INSERT INTO CourseGrades VALUES ('BIOL', '2011', 'FA', 1929148, 78);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 1929148, 78);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 7214933, 95);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 7214933, 78);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 7214933, 76);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 7214933, 87);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 7214933, 66);
INSERT INTO CourseGrades VALUES ('SPAN', '1000', 'FA', 6216862, 100);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FA', 6216862, 89);
INSERT INTO CourseGrades VALUES ('FREN', '1510', 'FA', 6216862, 83);
INSERT INTO CourseGrades VALUES ('ENGL', '1012', 'FB', 6216862, 95);
INSERT INTO CourseGrades VALUES ('KINE', '1035', 'FA', 6216862, 78);
INSERT INTO CourseGrades VALUES ('NURS', '2055', 'FA', 5320911, 80);
INSERT INTO CourseGrades VALUES ('GEOL', '2210', 'FA', 5320911, 87);
INSERT INTO CourseGrades VALUES ('GERO', '2016', 'FA', 5320911, 75);
INSERT INTO CourseGrades VALUES ('BIOL', '2011', 'FA', 5320911, 94);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 5320911, 69);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 3190185, 67);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 3190185, 55);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 3190185, 65);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 3190185, 56);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 3190185, 49);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 4210305, 99);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 4210305, 98);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 4210305, 87);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 4210305, 78);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 4210305, 78);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 6102213, 80);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 6102213, 87);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 6102213, 75);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 6102213, 94);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 6102213, 69);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 5901821, 50);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 5901821, 78);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 5901821, 95);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 5901821, 43);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 5901821, 88);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 0912942, 99);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 0912942, 98);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 0912942, 87);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 0912942, 78);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 0912942, 78);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 3219998, 100);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 3219998, 89);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 3219998, 83);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 3219998, 95);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 3219998, 78);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 5153912, 80);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 5153912, 87);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 5153912, 75);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 5153912, 94);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 5153912, 69);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 1005190, 67);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 1005190, 55);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 1005190, 65);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 1005190, 56);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 1005190, 49);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 8892149, 50);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 8892149, 78);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 8892149, 95);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 8892149, 43);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 8892149, 88);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 6661293, 99);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 6661293, 98);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 6661293, 87);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 6661293, 78);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 6661293, 78);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 1024920, 95);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 1024920, 78);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 1024920, 76);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 1024920, 87);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 1024920, 66);
INSERT INTO CourseGrades VALUES ('ESOF', '3050', 'FA', 9218529, 100);
INSERT INTO CourseGrades VALUES ('ESOF', '3655', 'FA', 9218529, 89);
INSERT INTO CourseGrades VALUES ('MATH', '3071', 'FC', 9218529, 83);
INSERT INTO CourseGrades VALUES ('PHYS', '1070', 'FB', 9218529, 95);
INSERT INTO CourseGrades VALUES ('CHEM', '2211', 'FA', 9218529, 78);
#Login
INSERT INTO Login VALUES (1231231, 'password', 'student');
INSERT INTO Login VALUES (4215976, 'password', 'student');
INSERT INTO Login VALUES (5188121, 'password', 'student');
INSERT INTO Login VALUES (9015219, 'password', 'student');
INSERT INTO Login VALUES (7537134, 'password', 'student');
INSERT INTO Login VALUES (0125392, 'password', 'student');
INSERT INTO Login VALUES (5329210, 'password', 'student');
INSERT INTO Login VALUES (1205189, 'password', 'student');
INSERT INTO Login VALUES (2125890, 'password', 'student');
INSERT INTO Login VALUES (5181205, 'password', 'student');
INSERT INTO Login VALUES (2195182, 'password', 'student');
INSERT INTO Login VALUES (9518953, 'password', 'student');
INSERT INTO Login VALUES (7531923, 'password', 'student');
INSERT INTO Login VALUES (0124829, 'password', 'student');
INSERT INTO Login VALUES (1583815, 'password', 'student');
INSERT INTO Login VALUES (8215721, 'password', 'student');
INSERT INTO Login VALUES (5292719, 'password', 'student');
INSERT INTO Login VALUES (1929148, 'password', 'student');
INSERT INTO Login VALUES (7214933, 'password', 'student');
INSERT INTO Login VALUES (6216862, 'password', 'student');
INSERT INTO Login VALUES (5320911, 'password', 'student');
INSERT INTO Login VALUES (3190185, 'password', 'student');
INSERT INTO Login VALUES (2109012, 'password', 'student');
INSERT INTO Login VALUES (4210305, 'password', 'student');
INSERT INTO Login VALUES (2190182, 'password', 'student');
INSERT INTO Login VALUES (5031219, 'password', 'student');
INSERT INTO Login VALUES (6102213, 'password', 'student');
INSERT INTO Login VALUES (1294194, 'password', 'student');
INSERT INTO Login VALUES (5901821, 'password', 'student');
INSERT INTO Login VALUES (0912942, 'password', 'student');
INSERT INTO Login VALUES (5429195, 'password', 'student');
INSERT INTO Login VALUES (6942091, 'password', 'student');
INSERT INTO Login VALUES (3219998, 'password', 'student');
INSERT INTO Login VALUES (5153912, 'password', 'student');
INSERT INTO Login VALUES (1005190, 'password', 'student');
INSERT INTO Login VALUES (8892149, 'password', 'student');
INSERT INTO Login VALUES (6661293, 'password', 'student');
INSERT INTO Login VALUES (1024920, 'password', 'student');
INSERT INTO Login VALUES (9218529, 'password', 'student');
INSERT INTO Login VALUES (0646314, 'password', 'instructor');
INSERT INTO Login VALUES (2419215, 'password', 'instructor');
INSERT INTO Login VALUES (6319921, 'password', 'instructor');
INSERT INTO Login VALUES (0021521, 'password', 'instructor');
INSERT INTO Login VALUES (2419522, 'password', 'instructor');
INSERT INTO Login VALUES (7214777, 'password', 'instructor');
INSERT INTO Login VALUES (3450968, 'password', 'instructor');
INSERT INTO Login VALUES (7892152, 'password', 'instructor');
INSERT INTO Login VALUES (2192100, 'password', 'instructor');
INSERT INTO Login VALUES (4210012, 'password', 'instructor');
INSERT INTO Login VALUES (7821942, 'password', 'instructor');
INSERT INTO Login VALUES (5678762, 'password', 'instructor');
INSERT INTO Login VALUES (7544327, 'password', 'instructor');
INSERT INTO Login VALUES (9000546, 'password', 'administrator');
INSERT INTO Login VALUES (5129851, 'password', 'administrator');
INSERT INTO Login VALUES (2199921, 'password', 'administrator');
INSERT INTO Login VALUES (8582188, 'password', 'administrator');
INSERT INTO Login VALUES (7772147, 'password', 'administrator');
commit;