forked from BrianRamsay/basic-python-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.sql
More file actions
18 lines (16 loc) · 685 Bytes
/
data.sql
File metadata and controls
18 lines (16 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
INSERT INTO student
VALUES (1,'Finn Bledsoe', 'B0230300','Junior'),
(2,'Karina Agliullova','B0302300','Senior');
insert into department VALUES
(1,'Computer Science','CSC',2),
(2,'Engineering Technology and Applied Design','ETAD',2),
(3,'African-American Studies','AFR',6),
(4,'Mathematics','MAT',1);
insert into course VALUES
(1,'Survey of African History',103,'Leanna T Luney',3),
(2,'Readings Moorish History',255, 'Jose V Pimienta-Bey',3),
(3,'Electricity and Electronics',265,'Wei Wu',2),
(4,'Power and Energy Technology',275,'Kendall Gadd',2),
(5,'Numerical Analysis',433,'Larry Gratton',4),
(6,'Calculus II',225,'Larry Gratton',4),
(7,'Database Systems',330,'Jasmine Jones',1);