-
Notifications
You must be signed in to change notification settings - Fork 0
/
Members.sql
23 lines (23 loc) · 2.14 KB
/
Members.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- Insert 20 real records into the Members table
INSERT INTO Members (MemberID, FirstName, LastName, Email, Phone, Address)
VALUES
(1, 'John', 'Doe', '[email protected]', '555-1234', '123 Main St, Cityville, USA'),
(2, 'Jane', 'Smith', '[email protected]', '555-5678', '456 Oak St, Townsville, USA'),
(3, 'Alice', 'Johnson', '[email protected]', '555-9012', '789 Pine St, Villageton, USA'),
(4, 'Bob', 'Williams', '[email protected]', '555-3456', '101 Cedar St, Hamletville, USA'),
(5, 'Charlie', 'Brown', '[email protected]', '555-7890', '202 Maple St, Boroughburg, USA'),
(6, 'Eva', 'Martinez', '[email protected]', '555-4321', '303 Elm St, Municipality City, USA'),
(7, 'David', 'Jones', '[email protected]', '555-8765', '404 Birch St, Townshipville, USA'),
(8, 'Sophie', 'Lee', '[email protected]', '555-2109', '505 Walnut St, Settlement City, USA'),
(9, 'Daniel', 'Kim', '[email protected]', '555-6543', '606 Redwood St, Districtburg, USA'),
(10, 'Emily', 'Miller', '[email protected]', '555-0987', '707 Cedar St, Precinct Town, USA'),
(11, 'Ryan', 'Nguyen', '[email protected]', '555-4321', '808 Oak St, Sectorville, USA'),
(12, 'Mia', 'Chen', '[email protected]', '555-8765', '909 Pine St, Municipality City, USA'),
(13, 'Oliver', 'Davis', '[email protected]', '555-2109', '1010 Birch St, Boroughburg, USA'),
(14, 'Ava', 'Garcia', '[email protected]', '555-6543', '1111 Maple St, Hamletville, USA'),
(15, 'Liam', 'Rodriguez', '[email protected]', '555-0987', '1212 Elm St, Townsville, USA'),
(16, 'Emma', 'Lopez', '[email protected]', '555-4321', '1313 Redwood St, Townshipville, USA'),
(17, 'Noah', 'Wang', '[email protected]', '555-8765', '1414 Walnut St, Districtburg, USA'),
(18, 'Isabella', 'Martinez', '[email protected]', '555-2109', '1515 Cedar St, Settlement City, USA'),
(19, 'James', 'Lee', '[email protected]', '555-6543', '1616 Oak St, Precinct Town, USA'),
(20, 'Sophia', 'Smith', '[email protected]', '555-0987', '1717 Pine St, Sectorville, USA');