Skip to content

Commit 200312d

Browse files
authored
Create manual-method.sql
1 parent 1cb8d6e commit 200312d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
INSERT INTO students (id, name, national_id, birth_date, enrollment_date, graduation_date, gpa)
2+
VALUES (10, 'Alice Johnson', '5832043130', '2000-01-15', '2018-09-01', '2022-06-15', 3.75);
3+
4+
INSERT INTO students (id, name, national_id, birth_date, enrollment_date, graduation_date, gpa)
5+
VALUES (11, 'Bob Smith', '4448883118', '1999-05-20', '2017-09-01', '2021-06-15', 2.82);
6+
7+
INSERT INTO students (id, name, national_id, birth_date, enrollment_date, graduation_date, gpa)
8+
VALUES (12, 'Charlie Brown', '1023871400', '2001-03-12', '2019-09-01', '2023-06-15', 3.82);
9+
10+
INSERT INTO students (id, name, national_id, birth_date, enrollment_date, graduation_date, gpa)
11+
VALUES (13, 'Diana Prince', '1259075078', '2002-07-25', '2020-09-01', '2024-06-15', 3.47);
12+
13+
INSERT INTO students (id, name, national_id, birth_date, enrollment_date, graduation_date, gpa)
14+
VALUES (14, 'Ethan Hunt', '5120248524', '1998-12-11', '2016-09-01', '2020-06-15', 2.5);

0 commit comments

Comments
 (0)