-- Insert initial data into the 'drivers' table
INSERT INTO drivers (driver_id, driver_name, city) VALUES
('D001', 'John Doe', 'Almaty'),
('D002', 'Jane Smith', 'Nur-Sultan'),
('D003', 'Mike Brown', 'Shymkent');
-- Insert initial data into the 'daily_orders' table
INSERT INTO daily_orders (driver_id, date, orders_count) VALUES
('D001', '2024-01-15', 10),
('D002', '2024-01-15', 8),
('D003', '2024-01-15', 7),
('D001', '2024-01-16', 12),
('D002', '2024-01-16', 14),
('D002', '2024-01-17', 9),
('D003', '2024-01-17', 10);
-- Insert initial data into the 'drivers' table
INSERT INTO drivers (driver_id, driver_name, city) VALUES
('D001', 'John Doe', 'Almaty'),
('D002', 'Jane Smith', 'Nur-Sultan'),
('D003', 'Mike Brown', 'Shymkent');
-- Insert initial data into the 'daily_orders' table
INSERT INTO daily_orders (driver_id, date, orders_count) VALUES
('D001', '2024-01-15', 10),
('D002', '2024-01-15', 8),
('D003', '2024-01-15', 7),
('D001', '2024-01-16', 12),
('D002', '2024-01-16', 14),
('D002', '2024-01-17', 9),
('D003', '2024-01-17', 10);