Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
KHY_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Graduate
2020-06-09 16:52:18 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2ebbee9ec61fc3e5679919ea517d668f55b17531
2ebbee9e
1 parent
f82506d1
Change DB dummy data
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
11 deletions
DB/SQL/create_dummy_data.sql
DB/SQL/create_dummy_data.sql
View file @
2ebbee9
...
...
@@ -8,12 +8,6 @@ VALUES('2014104161', '허진호');
INSERT
INTO
student
(
student_id
,
student_name
)
VALUES
(
'2014104117'
,
'양원영'
);
INSERT
INTO
student
(
student_id
,
student_name
)
VALUES
(
'2019310943'
,
'김소언'
);
INSERT
INTO
student
(
student_id
,
student_name
)
VALUES
(
'2019310152'
,
'이준범'
);
INSERT
INTO
student
(
student_id
,
student_name
)
VALUES
(
'2018315456'
,
'이석영'
);
INSERT
INTO
student
(
student_id
,
student_name
)
VALUES
(
'2016100789'
,
'이준오'
);
INSERT
INTO
lecture_students
(
lecture_id
,
student_id
)
...
...
@@ -23,8 +17,4 @@ VALUES('0', '2014104161');
INSERT
INTO
lecture_students
(
lecture_id
,
student_id
)
VALUES
(
'0'
,
'2014104117'
);
INSERT
INTO
lecture_students
(
lecture_id
,
student_id
)
VALUES
(
'0'
,
'2019310943'
);
INSERT
INTO
lecture_students
(
lecture_id
,
student_id
)
VALUES
(
'0'
,
'2019310152'
);
INSERT
INTO
lecture_students
(
lecture_id
,
student_id
)
VALUES
(
'0'
,
'2018315456'
);
\ No newline at end of file
VALUES
(
'0'
,
'2016100789'
);
\ No newline at end of file
...
...
Please
register
or
login
to post a comment