-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseed.sql
More file actions
58 lines (48 loc) · 1.79 KB
/
Copy pathseed.sql
File metadata and controls
58 lines (48 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# ************************************************************
# Sequel Pro SQL dump
# Version 4541
#
# http://www.sequelpro.com/
# https://github.com/sequelpro/sequelpro
#
# Host: 127.0.0.1 (MySQL 5.6.35)
# Database: bamazon
# Generation Time: 2018-02-08 00:37:30 +0000
# ************************************************************
# Dump of table departments
# ------------------------------------------------------------
LOCK TABLES `departments` WRITE;
/*!40000 ALTER TABLE `departments` DISABLE KEYS */;
INSERT INTO `departments` (`department_id`, `department_name`, `over_head_costs`)
VALUES
(1,'Electrics',500),
(2,'Home Improvements',2000),
(3,'Kitchen',1500),
(4,'Clothing',200),
(5,'Sports',1000);
/*!40000 ALTER TABLE `departments` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table products
# ------------------------------------------------------------
LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
INSERT INTO `products` (`item_id`, `product_name`, `department_name`, `price`, `stock_quantity`, `product_sale`)
VALUES
(1,'GoPro','Electrics',399,19,0),
(2,'DJI Drone','Electrics',828,22,0),
(3,'Echo','Electrics',49.99,144,799.84),
(4,'Kindle','Electrics',119.99,86,4559.62),
(5,'Screwdriver','Home Improvements',10.99,248,21.98),
(6,'Water Filter','Home Improvements',47.84,356,0),
(7,'Fire Alert','Home Improvements',28.88,415,28.88),
(8,'Chef Knife','Kitchen',9.99,89,339.66),
(9,'Non-Stick Pan','Kitchen',19.99,440,219.89),
(10,'Blender','Kitchen',97.02,4,0),
(11,'IPAD','Electrics',399.99,3,1199.97),
(12,'Jacket','Clothing',49.99,124,0),
(13,'Jeans','Clothing',36.99,14,332.91),
(14,'Blazer','Clothing',199.99,23,0),
(15,'Hoodie','Clothing',35.99,13,0),
(16,'Basketball','Sports',119.99,12,0);
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;