-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsprintech.sql
20 lines (19 loc) · 1.45 KB
/
sprintech.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
-- Query: select * from product
LIMIT 0, 500
-- Date: 2021-05-10 10:31
*/
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Laptop','lenovo b40','Europe',40000);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Laptop','lenovo b50','Europe',49500);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Laptop','lenovo b60','Europe',39300);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Laptop','hp EliteBook','USA',50100);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Laptop','hp Pavillion','USA',67000);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Desktop','hp','Europe',29000);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Desktop','Dell','Europe',25500);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Mobile Phone','Samsung','Europe',21000);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Mandazi','Mandazi','Gaitega',90);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Bag','Fiber','Muranga',600);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Table','Wood','Muranga',8000);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Mobile Phone','Samsung S20','Europe',120000);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Mobile Phone','Huawei P9','China',29000);
INSERT INTO product (`name`,`brand`,`madein`,`price`) VALUES ('Microsoft PlayStation','XBox 360','USA',40000);