INSERT INTO customers (first_name, last_name, email, phone_number, address_line1, address_line2, city, zip_code)
VALUES
('John', 'Doe', 'john.doe@example.com', '206-555-0101', '123 Main St', 'Apt 4B', 'Seattle', '98101'),
('Jane', 'Smith', 'jane.smith@example.com', '360-555-0102', '456 Pine St', NULL, 'Bellevue', '98004'),
('Michael', 'Johnson', 'michael.johnson@example.com', '425-555-0103', '789 Oak St', NULL, 'Redmond', '98052'),
('Emily', 'Davis', 'emily.davis@example.com', '253-555-0104', '321 Elm St', 'Unit 3A', 'Tacoma', '98402'),
('William', 'Martinez', 'william.martinez@example.com', '509-555-0105', '654 Maple St', NULL, 'Spokane', '99201'),
('Elizabeth', 'Taylor', 'elizabeth.taylor@example.com', '206-555-0106', '987 Cedar St', NULL, 'Seattle', '98102'),
('David', 'Anderson', 'david.anderson@example.com', '360-555-0107', '147 Pineview Dr', NULL, 'Bellevue', '98005'),
('Nancy', 'Thomas', 'nancy.thomas@example.com', '425-555-0108', '369 Willow Ln', 'Apt 2C', 'Redmond', '98053'),
('Samantha', 'Jackson', 'samantha.jackson@example.com', '253-555-0109', '852 Spruce St', NULL, 'Tacoma', '98403'),
('Daniel', 'White', 'daniel.white@example.com', '509-555-0110', '681 Oakwood Ave', NULL, 'Spokane', '99202'),
('Sophia', 'Harris', 'sophia.harris@example.com', '206-555-0111', '408 Park Pl', 'Unit 1A', 'Seattle', '98103'),
('Christopher', 'Clark', 'christopher.clark@example.com', '360-555-0112', '246 Evergreen Dr', NULL, 'Bellevue', '98006'),
('Olivia', 'Lewis', 'olivia.lewis@example.com', '425-555-0113', '533 Pinecrest Ct', NULL, 'Redmond', '98054'),
('Joshua', 'Young', 'joshua.young@example.com', '253-555-0114', '129 Elmwood St', 'Apt 3B', 'Tacoma', '98404'),
('Mia', 'Walker', 'mia.walker@example.com', '509-555-0115', '926 Maplewood Rd', NULL, 'Spokane', '99203'),
('Matthew', 'Hall', 'matthew.hall@example.com', '206-555-0116', '734 Cedarwood Dr', NULL, 'Seattle', '98104'),
('Madison', 'Allen', 'madison.allen@example.com', '360-555-0117', '349 Pineview Ln', 'Apt 5C', 'Bellevue', '98007');