-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb_insert_students.sql
More file actions
21 lines (21 loc) · 2.39 KB
/
db_insert_students.sql
File metadata and controls
21 lines (21 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
INSERT INTO students (first_name, last_name, email, phone, address, enrollment_date, major, status) VALUES
('John', 'Doe', 'john.doe@example.com', '555-1234', '123 Main St', '2022-09-01', 'Computer Science', 'active'),
('Jane', 'Smith', 'jane.smith@example.com', '555-5678', '456 Oak Ave', '2022-09-01', 'Mathematics', 'active'),
('Michael', 'Johnson', 'michael.johnson@example.com', '555-8765', '789 Pine Rd', '2022-09-01', 'Physics', 'active'),
('Emily', 'Davis', 'emily.davis@example.com', '555-4321', '321 Maple St', '2022-09-01', 'Chemistry', 'active'),
('William', 'Brown', 'william.brown@example.com', '555-6789', '654 Elm St', '2022-09-01', 'Biology', 'active'),
('Olivia', 'Wilson', 'olivia.wilson@example.com', '555-9876', '987 Cedar Ave', '2022-09-01', 'English', 'active'),
('James', 'Taylor', 'james.taylor@example.com', '555-3456', '246 Spruce Rd', '2022-09-01', 'History', 'active'),
('Sophia', 'Anderson', 'sophia.anderson@example.com', '555-6543', '135 Birch St', '2022-09-01', 'Philosophy', 'active'),
('Benjamin', 'Thomas', 'benjamin.thomas@example.com', '555-7890', '864 Walnut Ave', '2022-09-01', 'Economics', 'active'),
('Isabella', 'Jackson', 'isabella.jackson@example.com', '555-2109', '975 Chestnut Rd', '2022-09-01', 'Political Science', 'active'),
('Mason', 'White', 'mason.white@example.com', '555-1122', '111 Spruce St', '2022-09-01', 'Engineering', 'active'),
('Mia', 'Harris', 'mia.harris@example.com', '555-3344', '222 Oak St', '2022-09-01', 'Art', 'active'),
('Ethan', 'Martin', 'ethan.martin@example.com', '555-5566', '333 Pine St', '2022-09-01', 'Music', 'active'),
('Amelia', 'Thompson', 'amelia.thompson@example.com', '555-7788', '444 Maple St', '2022-09-01', 'Psychology', 'active'),
('Alexander', 'Garcia', 'alexander.garcia@example.com', '555-9900', '555 Elm St', '2022-09-01', 'Sociology', 'active'),
('Charlotte', 'Martinez', 'charlotte.martinez@example.com', '555-2233', '666 Cedar St', '2022-09-01', 'Political Science', 'active'),
('Daniel', 'Robinson', 'daniel.robinson@example.com', '555-4455', '777 Birch St', '2022-09-01', 'Philosophy', 'active'),
('Ella', 'Clark', 'ella.clark@example.com', '555-6677', '888 Walnut St', '2022-09-01', 'Economics', 'active'),
('Matthew', 'Rodriguez', 'matthew.rodriguez@example.com', '555-8899', '999 Chestnut St', '2022-09-01', 'History', 'active'),
('Ava', 'Lewis', 'ava.lewis@example.com', '555-1010', '1010 Spruce St', '2022-09-01', 'Computer Science', 'active');