· 8 years ago · Apr 01, 2018, 03:48 AM
1drop database if exists 장현준;
2create database 장현준;
3use 장현준;
4#í…Œì´ë¸” ìƒì„±
5create table 장현준_Department(
6 D_id int not null primary key,
7 name char(10)
8);
9create table 장현준_Student(
10 S_id int not null primary key,
11 S_name char(10),
12 S_major int,
13 S_address char(30),
14 Gpa double,
15 Bdate char(20),
16 foreign key(S_major) references 장현준_Department(D_id)
17);
18create table 장현준_Instructor(
19 P_id int not null primary key,
20 name char(10),
21 Dept int,
22 foreign key(dept) references 장현준_Department(D_id)
23);
24
25create table 장현준_Course(
26 C_id int not null primary key,
27 C_name char(10),
28 C_instuctor int,
29 C_prerequisite int,
30 foreign key(C_instuctor) references 장현준_Instructor(P_id),
31 foreign key(C_prerequisite) references 장현준_Course(C_id)
32);
33create table 장현준_Course_Taken(
34 Num int not null primary key auto_increment,
35 CT_Sid int,
36 CT_Cid int,
37 Grede double,
38 Year int,
39 foreign key(CT_Sid) references 장현준_Student(S_id),
40 foreign key(CT_Cid) references 장현준_Course(C_id)
41);
42#ì •ë³´ ìž…ë ¥
43insert into 장현준_Department
44values (201, '소프트웨어학과'),
45 (210, '통계학과'),
46 (309, '기계공학과');
47
48insert into 장현준_Student
49values (32154024, '장현준', 201,'ê°•ì›ë„ í™ì²œêµ° 내촌면 290번지', 3.5, '1996-04-14'),
50 (32167842, 'ê¹€ì² ìˆ˜', 210, '서울특별시 강남구 강남대로 233', 4.0, '1997-12-03'),
51 (32182258, '한ì˜í¬', 309, 'ê²½ê¸°ë„ ìš©ì¸ì‹œ 수지구 152번지', 2.5, '1999-04-27'),
52 (32144910, '김사람', 201, '부산광ì—시 남구 해운대로 152', 3.0, '1955-02-09');
53
54insert into 장현준_Instructor
55values (20495, 'ê°•ì¸ì•„', 201), (38920, '구하나', 210),
56 (30091, '박지훈', 309), (17602, 'ì´ì„±ì¸', 201),
57 (25672, 'ì´ì„ê· ', 201);
58
59insert into 장현준_Course
60values (391020, 'ì¼ë°˜ìˆ˜í•™', 30091, null), (447940, '프로그래ë°', 20495, null),
61 (452660, 'ë°ì´í„°ë² ì´ìŠ¤ê¸°ì´ˆ', 25672, null), (303470, 'ê°ì²´ì§€í–¥í”„로그래ë°', 17602 , 447940),
62 (395042, '공학수학', 38920, 391020);
63
64insert into 장현준_Course_Taken (CT_Sid, CT_Cid, grede, year)
65values (32154024, 391020, 3.5, 2015), (32154024, 447940, 3.0, 2015),
66 (32167842, 447940, 4.0, 2016), (32167842, 452660, 2.5, 2016),
67 (32182258, 452660, 4.5, 2018), (32182258, 303470, 2.0, 2018),
68 (32144910, 303470, 1.5, 2015), (32144910, 391020, 4.0, 2015),
69 (32154024, 452660, 4.5, 2018), (32167842, 303470, 3.0, 2018);
70#ê²°ê³¼ ì¶œë ¥
71select * from 장현준_Student;
72select * from 장현준_Department;
73select * from 장현준_Instructor;
74select * from 장현준_Course;
75select * from 장현준_Course_Taken;