INSERT INTO laptops (brand, model, processor, ram, storage, price, release_year)
VALUES
('Apple', 'MacBook Air', 'M1', 8, 256, 999, 2021),
('Apple', 'MacBook Pro', 'M1 Pro', 16, 512, 1999, 2022),
('Dell', 'XPS 13', 'Intel i7-1165G7', 16, 512, 1399, 2021),
('Dell', 'Inspiron 15', 'Intel i5-1135G7', 8, 256, 749, 2020),
('HP', 'Spectre x360', 'Intel i7-1165G7', 16, 512, 1449, 2021),
('HP', 'Pavilion 14', 'AMD Ryzen 5 4500U', 8, 256, 699, 2020),
('Lenovo', 'ThinkPad X1 Carbon', 'Intel i7-1165G7', 16, 512, 1499, 2021),
('Lenovo', 'Legion 5', 'AMD Ryzen 7 5800H', 16, 1000, 1199, 2022),
('Asus', 'ZenBook 14', 'Intel i5-1135G7', 8, 512, 999, 2021),
('Asus', 'ROG Strix G15', 'AMD Ryzen 9 5900HX', 32, 1000, 1799, 2022),
('Acer', 'Swift 3', 'Intel i5-1135G7', 8, 512, 799, 2021),
('Acer', 'Nitro 5', 'Intel i7-10750H', 16, 1000, 1099, 2020),
('Microsoft', 'Surface Laptop 4', 'AMD Ryzen 7 4980U', 16, 512, 1399, 2021),
('Microsoft', 'Surface Pro 7', 'Intel i5-1035G4', 8, 128, 749, 2020),
('Razer', 'Blade 15', 'Intel i7-11800H', 16, 1000, 2199, 2021),
('MSI', 'GS66 Stealth', 'Intel i9-11900H', 32, 1000, 2499, 2022),
('Samsung', 'Galaxy Book Pro', 'Intel i7-1165G7', 16, 512, 1299, 2021),
('Samsung', 'Galaxy Book Flex', 'Intel i5-1135G7', 8, 256, 999, 2020),
('Alienware', 'M15 R6', 'Intel i7-11800H', 16, 1000, 2099, 2022),
('Google', 'Pixelbook Go', 'Intel i5-10210U', 8, 128, 649, 2019);