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:17:42 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
82b2f64a5949535e1d4e40367642e8b51529a156
82b2f64a
1 parent
4dacde21
Create DB dummy data
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
DB/SQL/create_dummy_data.sql
DB/SQL/create_dummy_data.sql
0 → 100644
View file @
82b2f64
INSERT
INTO
lecture
(
lecture_id
,
lecture_name
,
lecture_room
)
VALUES
(
'0'
,
'캡스톤디자인1'
,
'소융대'
);
INSERT
INTO
student
(
student_id
,
student_name
)
VALUES
(
'2014104149'
,
'정해갑'
);
INSERT
INTO
student
(
student_id
,
student_name
)
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
)
VALUES
(
'0'
,
'2014104149'
);
INSERT
INTO
lecture_students
(
lecture_id
,
student_id
)
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
Please
register
or
login
to post a comment