Add some sample students
Our tables are ready, but they are empty. Let's add a few students that we can use for testing. Add this to the migration:
sql
INSERT INTO students (
student_first_name,
student_last_name,
student_course
) VALUES
('CLIFF AMADEUS', 'EVANGELIO', 'BSIT'),
('JAN XAVIER', 'EVANGELIO', 'BSA-AGRONOMY'),
('RON EDMUND', 'EVANGELIO', 'BSEE'),
('RK', 'FERNANDEZ', 'BSIT');
text
ID | First Name | Last Name | Course
------------------------------------------------------------
1 | CLIFF AMADEUS | EVANGELIO | BSIT
2 | JAN XAVIER | EVANGELIO | BSA-AGRONOMY
3 | RON EDMUND | EVANGELIO | BSEE
4 | RK | FERNANDEZ | BSIT
Sign in to save your progress permanently.
Progress is saved in your browser session
Step 8 of 19