-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathSQL Master.sql
315 lines (287 loc) · 15.5 KB
/
SQL Master.sql
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Feb 13, 2020 at 04:26 PM
-- Server version: 10.4.6-MariaDB
-- PHP Version: 7.1.31
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `infytq`
--
-- --------------------------------------------------------
--
-- Table structure for table `customer`
--
CREATE TABLE `customer` (
`Id` int(11) NOT NULL,
`FirstName` varchar(40) NOT NULL,
`LastName` varchar(40) NOT NULL,
`City` varchar(40) DEFAULT NULL,
`Country` varchar(40) DEFAULT NULL,
`Phone` varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `customer`
--
INSERT INTO `customer` (`Id`, `FirstName`, `LastName`, `City`, `Country`, `Phone`) VALUES
(1, 'Maria', 'Anders', 'Berlin', 'Germany', '030-0074321'),
(2, 'Ana', 'Trujillo', 'México D.F.', 'Mexico', '(5) 555-4729'),
(3, 'Antonio', 'Moreno', 'México D.F.', 'Mexico', '(5) 555-3932'),
(4, 'Thomas', 'Hardy', 'London', 'UK', '(171) 555-7788'),
(5, 'Christina', 'Berglund', 'Luleå', 'Sweden', '0921-12 34 65'),
(6, 'Hanna', 'Moos', 'Mannheim', 'Germany', '0621-08460'),
(7, 'Frédérique', 'Citeaux', 'Strasbourg', 'France', '88.60.15.31'),
(8, 'Martín', 'Sommer', 'Madrid', 'Spain', '(91) 555 22 82'),
(9, 'Laurence', 'Lebihan', 'Marseille', 'France', '91.24.45.40'),
(10, 'Elizabeth', 'Lincoln', 'Tsawassen', 'Canada', '(604) 555-4729'),
(11, 'Victoria', 'Ashworth', 'London', 'UK', '(171) 555-1212'),
(12, 'Patricio', 'Simpson', 'Buenos Aires', 'Argentina', '(1) 135-5555'),
(13, 'Francisco', 'Chang', 'México D.F.', 'Mexico', '(5) 555-3392'),
(14, 'Yang', 'Wang', 'Bern', 'Switzerland', '0452-076545'),
(15, 'Pedro', 'Afonso', 'Sao Paulo', 'Brazil', '(11) 555-7647'),
(16, 'Elizabeth', 'Brown', 'London', 'UK', '(171) 555-2282'),
(17, 'Sven', 'Ottlieb', 'Aachen', 'Germany', '0241-039123'),
(18, 'Janine', 'Labrune', 'Nantes', 'France', '40.67.88.88'),
(19, 'Ann', 'Devon', 'London', 'UK', '(171) 555-0297'),
(20, 'Roland', 'Mendel', 'Graz', 'Austria', '7675-3425'),
(21, 'Aria', 'Cruz', 'Sao Paulo', 'Brazil', '(11) 555-9857'),
(22, 'Diego', 'Roel', 'Madrid', 'Spain', '(91) 555 94 44'),
(23, 'Martine', 'Rancé', 'Lille', 'France', '20.16.10.16'),
(24, 'Maria', 'Larsson', 'Bräcke', 'Sweden', '0695-34 67 21'),
(25, 'Peter', 'Franken', 'München', 'Germany', '089-0877310'),
(26, 'Carine', 'Schmitt', 'Nantes', 'France', '40.32.21.21'),
(27, 'Paolo', 'Accorti', 'Torino', 'Italy', '011-4988260'),
(28, 'Lino', 'Rodriguez', 'Lisboa', 'Portugal', '(1) 354-2534'),
(29, 'Eduardo', 'Saavedra', 'Barcelona', 'Spain', '(93) 203 4560'),
(30, 'José', 'Pedro Freyre', 'Sevilla', 'Spain', '(95) 555 82 82'),
(31, 'André', 'Fonseca', 'Campinas', 'Brazil', '(11) 555-9482'),
(32, 'Howard', 'Snyder', 'Eugene', 'USA', '(503) 555-7555'),
(33, 'Manuel', 'Pereira', 'Caracas', 'Venezuela', '(2) 283-2951'),
(34, 'Mario', 'Pontes', 'Rio de Janeiro', 'Brazil', '(21) 555-0091'),
(35, 'Carlos', 'Hernández', 'San Cristóbal', 'Venezuela', '(5) 555-1340'),
(36, 'Yoshi', 'Latimer', 'Elgin', 'USA', '(503) 555-6874'),
(37, 'Patricia', 'McKenna', 'Cork', 'Ireland', '2967 542'),
(38, 'Helen', 'Bennett', 'Cowes', 'UK', '(198) 555-8888'),
(39, 'Philip', 'Cramer', 'Brandenburg', 'Germany', '0555-09876'),
(40, 'Daniel', 'Tonini', 'Versailles', 'France', '30.59.84.10'),
(41, 'Annette', 'Roulet', 'Toulouse', 'France', '61.77.61.10'),
(42, 'Yoshi', 'Tannamuri', 'Vancouver', 'Canada', '(604) 555-3392'),
(43, 'John', 'Steel', 'Walla Walla', 'USA', '(509) 555-7969'),
(44, 'Renate', 'Messner', 'Frankfurt a.M.', 'Germany', '069-0245984'),
(45, 'Jaime', 'Yorres', 'San Francisco', 'USA', '(415) 555-5938'),
(46, 'Carlos', 'González', 'Barquisimeto', 'Venezuela', '(9) 331-6954'),
(47, 'Felipe', 'Izquierdo', 'I. de Margarita', 'Venezuela', '(8) 34-56-12'),
(48, 'Fran', 'Wilson', 'Portland', 'USA', '(503) 555-9573'),
(49, 'Giovanni', 'Rovelli', 'Bergamo', 'Italy', '035-640230'),
(50, 'Catherine', 'Dewey', 'Bruxelles', 'Belgium', '(02) 201 24 67'),
(51, 'Jean', 'Fresnière', 'Montréal', 'Canada', '(514) 555-8054'),
(52, 'Alexander', 'Feuer', 'Leipzig', 'Germany', '0342-023176'),
(53, 'Simon', 'Crowther', 'London', 'UK', '(171) 555-7733'),
(54, 'Yvonne', 'Moncada', 'Buenos Aires', 'Argentina', '(1) 135-5333'),
(55, 'Rene', 'Phillips', 'Anchorage', 'USA', '(907) 555-7584'),
(56, 'Henriette', 'Pfalzheim', 'Köln', 'Germany', '0221-0644327'),
(57, 'Marie', 'Bertrand', 'Paris', 'France', '(1) 42.34.22.66'),
(58, 'Guillermo', 'Fernández', 'México D.F.', 'Mexico', '(5) 552-3745'),
(59, 'Georg', 'Pipps', 'Salzburg', 'Austria', '6562-9722'),
(60, 'Isabel', 'de Castro', 'Lisboa', 'Portugal', '(1) 356-5634'),
(61, 'Bernardo', 'Batista', 'Rio de Janeiro', 'Brazil', '(21) 555-4252'),
(62, 'Lúcia', 'Carvalho', 'Sao Paulo', 'Brazil', '(11) 555-1189'),
(63, 'Horst', 'Kloss', 'Cunewalde', 'Germany', '0372-035188'),
(64, 'Sergio', 'Gutiérrez', 'Buenos Aires', 'Argentina', '(1) 123-5555'),
(65, 'Paula', 'Wilson', 'Albuquerque', 'USA', '(505) 555-5939'),
(66, 'Maurizio', 'Moroni', 'Reggio Emilia', 'Italy', '0522-556721'),
(67, 'Janete', 'Limeira', 'Rio de Janeiro', 'Brazil', '(21) 555-3412'),
(68, 'Michael', 'Holz', 'Genève', 'Switzerland', '0897-034214'),
(69, 'Alejandra', 'Camino', 'Madrid', 'Spain', '(91) 745 6200'),
(70, 'Jonas', 'Bergulfsen', 'Stavern', 'Norway', '07-98 92 35'),
(71, 'Jose', 'Pavarotti', 'Boise', 'USA', '(208) 555-8097'),
(72, 'Hari', 'Kumar', 'London', 'UK', '(171) 555-1717'),
(73, 'Jytte', 'Petersen', 'Kobenhavn', 'Denmark', '31 12 34 56'),
(74, 'Dominique', 'Perrier', 'Paris', 'France', '(1) 47.55.60.10'),
(75, 'Art', 'Braunschweiger', 'Lander', 'USA', '(307) 555-4680'),
(76, 'Pascale', 'Cartrain', 'Charleroi', 'Belgium', '(071) 23 67 22 20'),
(77, 'Liz', 'Nixon', 'Portland', 'USA', '(503) 555-3612'),
(78, 'Liu', 'Wong', 'Butte', 'USA', '(406) 555-5834'),
(79, 'Karin', 'Josephs', 'Münster', 'Germany', '0251-031259'),
(80, 'Miguel', 'Angel Paolino', 'México D.F.', 'Mexico', '(5) 555-2933'),
(81, 'Anabela', 'Domingues', 'Sao Paulo', 'Brazil', '(11) 555-2167'),
(82, 'Helvetius', 'Nagy', 'Kirkland', 'USA', '(206) 555-8257'),
(83, 'Palle', 'Ibsen', 'Århus', 'Denmark', '86 21 32 43'),
(84, 'Mary', 'Saveley', 'Lyon', 'France', '78.32.54.86'),
(85, 'Paul', 'Henriot', 'Reims', 'France', '26.47.15.10'),
(86, 'Rita', 'Müller', 'Stuttgart', 'Germany', '0711-020361'),
(87, 'Pirkko', 'Koskitalo', 'Oulu', 'Finland', '981-443655'),
(88, 'Paula', 'Parente', 'Resende', 'Brazil', '(14) 555-8122'),
(89, 'Karl', 'Jablonski', 'Seattle', 'USA', '(206) 555-4112'),
(90, 'Matti', 'Karttunen', 'Helsinki', 'Finland', '90-224 8858'),
(91, 'Zbyszek', 'Piestrzeniewicz', 'Warszawa', 'Poland', '(26) 642-7012');
-- --------------------------------------------------------
--
-- Table structure for table `order1`
--
CREATE TABLE `order1` (
`Id` int(11) NOT NULL,
`OrderDate` datetime NOT NULL,
`OrderNumber` varchar(10) DEFAULT NULL,
`CustomerId` int(11) NOT NULL,
`TotalAmount` decimal(12,2) DEFAULT 0.00
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `product`
--
CREATE TABLE `product` (
`Id` int(11) NOT NULL,
`ProductName` varchar(50) NOT NULL,
`SupplierId` int(11) NOT NULL,
`UnitPrice` decimal(12,2) DEFAULT 0.00,
`Package` varchar(30) DEFAULT NULL,
`IsDiscontinued` bit(1) NOT NULL DEFAULT b'0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `product`
--
INSERT INTO `product` (`Id`, `ProductName`, `SupplierId`, `UnitPrice`, `Package`, `IsDiscontinued`) VALUES
(1, 'Chai', 1, '18.00', '10 boxes x 20 bags', b'0'),
(2, 'Chang', 1, '19.00', '24 - 12 oz bottles', b'0'),
(3, 'Aniseed Syrup', 1, '10.00', '12 - 550 ml bottles', b'0'),
(4, 'Chef Anton\'s Cajun Seasoning', 2, '22.00', '48 - 6 oz jars', b'0'),
(5, 'Chef Anton\'s Gumbo Mix', 2, '21.35', '36 boxes', b'1'),
(6, 'Grandma\'s Boysenberry Spread', 3, '25.00', '12 - 8 oz jars', b'0'),
(7, 'Uncle Bob\'s Organic Dried Pears', 3, '30.00', '12 - 1 lb pkgs.', b'0'),
(8, 'Northwoods Cranberry Sauce', 3, '40.00', '12 - 12 oz jars', b'0'),
(9, 'Mishi Kobe Niku', 4, '97.00', '18 - 500 g pkgs.', b'1'),
(10, 'Ikura', 4, '31.00', '12 - 200 ml jars', b'0'),
(11, 'Queso Cabrales', 5, '21.00', '1 kg pkg.', b'0'),
(12, 'Queso Manchego La Pastora', 5, '38.00', '10 - 500 g pkgs.', b'0'),
(13, 'Konbu', 6, '6.00', '2 kg box', b'0'),
(14, 'Tofu', 6, '23.25', '40 - 100 g pkgs.', b'0'),
(15, 'Genen Shouyu', 6, '15.50', '24 - 250 ml bottles', b'0'),
(16, 'Pavlova', 7, '17.45', '32 - 500 g boxes', b'0'),
(17, 'Alice Mutton', 7, '39.00', '20 - 1 kg tins', b'1'),
(18, 'Carnarvon Tigers', 7, '62.50', '16 kg pkg.', b'0'),
(19, 'Teatime Chocolate Biscuits', 8, '9.20', '10 boxes x 12 pieces', b'0'),
(20, 'Sir Rodney\'s Marmalade', 8, '81.00', '30 gift boxes', b'0'),
(21, 'Sir Rodney\'s Scones', 8, '10.00', '24 pkgs. x 4 pieces', b'0'),
(22, 'Gustaf\'s Knäckebröd', 9, '21.00', '24 - 500 g pkgs.', b'0'),
(23, 'Tunnbröd', 9, '9.00', '12 - 250 g pkgs.', b'0'),
(24, 'Guaraná Fantástica', 10, '4.50', '12 - 355 ml cans', b'1'),
(25, 'NuNuCa Nuß-Nougat-Creme', 11, '14.00', '20 - 450 g glasses', b'0'),
(26, 'Gumbär Gummibärchen', 11, '31.23', '100 - 250 g bags', b'0'),
(27, 'Schoggi Schokolade', 11, '43.90', '100 - 100 g pieces', b'0'),
(28, 'Rössle Sauerkraut', 12, '45.60', '25 - 825 g cans', b'1'),
(29, 'Thüringer Rostbratwurst', 12, '123.79', '50 bags x 30 sausgs.', b'1'),
(30, 'Nord-Ost Matjeshering', 13, '25.89', '10 - 200 g glasses', b'0'),
(31, 'Gorgonzola Telino', 14, '12.50', '12 - 100 g pkgs', b'0'),
(32, 'Mascarpone Fabioli', 14, '32.00', '24 - 200 g pkgs.', b'0'),
(33, 'Geitost', 15, '2.50', '500 g', b'0'),
(34, 'Sasquatch Ale', 16, '14.00', '24 - 12 oz bottles', b'0'),
(35, 'Steeleye Stout', 16, '18.00', '24 - 12 oz bottles', b'0'),
(36, 'Inlagd Sill', 17, '19.00', '24 - 250 g jars', b'0'),
(37, 'Gravad lax', 17, '26.00', '12 - 500 g pkgs.', b'0'),
(38, 'Côte de Blaye', 18, '263.50', '12 - 75 cl bottles', b'0'),
(39, 'Chartreuse verte', 18, '18.00', '750 cc per bottle', b'0'),
(40, 'Boston Crab Meat', 19, '18.40', '24 - 4 oz tins', b'0'),
(41, 'Jack\'s New England Clam Chowder', 19, '9.65', '12 - 12 oz cans', b'0'),
(42, 'Singaporean Hokkien Fried Mee', 20, '14.00', '32 - 1 kg pkgs.', b'1'),
(43, 'Ipoh Coffee', 20, '46.00', '16 - 500 g tins', b'0'),
(44, 'Gula Malacca', 20, '19.45', '20 - 2 kg bags', b'0'),
(45, 'Rogede sild', 21, '9.50', '1k pkg.', b'0'),
(46, 'Spegesild', 21, '12.00', '4 - 450 g glasses', b'0'),
(47, 'Zaanse koeken', 22, '9.50', '10 - 4 oz boxes', b'0'),
(48, 'Chocolade', 22, '12.75', '10 pkgs.', b'0'),
(49, 'Maxilaku', 23, '20.00', '24 - 50 g pkgs.', b'0'),
(50, 'Valkoinen suklaa', 23, '16.25', '12 - 100 g bars', b'0'),
(51, 'Manjimup Dried Apples', 24, '53.00', '50 - 300 g pkgs.', b'0'),
(52, 'Filo Mix', 24, '7.00', '16 - 2 kg boxes', b'0'),
(55, 'Pâté chinois', 25, '24.00', '24 boxes x 2 pies', b'0'),
(56, 'Gnocchi di nonna Alice', 26, '38.00', '24 - 250 g pkgs.', b'0'),
(57, 'Ravioli Angelo', 26, '19.50', '24 - 250 g pkgs.', b'0'),
(58, 'Escargots de Bourgogne', 27, '13.25', '24 pieces', b'0'),
(59, 'Raclette Courdavault', 28, '55.00', '5 kg pkg.', b'0'),
(60, 'Camembert Pierrot', 28, '34.00', '15 - 300 g rounds', b'0'),
(61, 'Sirop d\'érable', 29, '28.50', '24 - 500 ml bottles', b'0');
-- --------------------------------------------------------
--
-- Table structure for table `supplier`
--
CREATE TABLE `supplier` (
`Id` int(11) NOT NULL,
`CompanyName` varchar(40) NOT NULL,
`ContactName` varchar(50) DEFAULT NULL,
`ContactTitle` varchar(40) DEFAULT NULL,
`City` varchar(40) DEFAULT NULL,
`Country` varchar(40) DEFAULT NULL,
`Phone` varchar(30) DEFAULT NULL,
`Fax` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `supplier`
--
INSERT INTO `supplier` (`Id`, `CompanyName`, `ContactName`, `ContactTitle`, `City`, `Country`, `Phone`, `Fax`) VALUES
(1, 'Exotic Liquids', 'Charlotte Cooper', NULL, 'London', 'UK', '(171) 555-2222', NULL),
(2, 'New Orleans Cajun Delights', 'Shelley Burke', NULL, 'New Orleans', 'USA', '(100) 555-4822', NULL),
(3, 'Grandma Kelly\'s Homestead', 'Regina Murphy', NULL, 'Ann Arbor', 'USA', '(313) 555-5735', '(313) 555-3349'),
(4, 'Tokyo Traders', 'Yoshi Nagase', NULL, 'Tokyo', 'Japan', '(03) 3555-5011', NULL),
(5, 'Cooperativa de Quesos \'Las Cabras\'', 'Antonio del Valle Saavedra', NULL, 'Oviedo', 'Spain', '(98) 598 76 54', NULL),
(6, 'Mayumi\'s', 'Mayumi Ohno', NULL, 'Osaka', 'Japan', '(06) 431-7877', NULL),
(7, 'Pavlova, Ltd.', 'Ian Devling', NULL, 'Sydney', 'Australia', '(03) 444-2343', '(03) 444-6588'),
(8, 'Specialty Biscuits, Ltd.', 'Peter Wilson', NULL, 'Manchester', 'UK', '(161) 555-4448', NULL),
(9, 'PB Knäckebröd AB', 'Lars Peterson', NULL, 'Göteborg', 'Sweden', '031-987 65 43', '031-987 65 91'),
(10, 'Refrescos Americanas LTDA', 'Carlos Diaz', NULL, 'Sao Paulo', 'Brazil', '(11) 555 4640', NULL),
(11, 'Heli Süßwaren GmbH & Co. KG', 'Petra Winkler', NULL, 'Berlin', 'Germany', '(010) 9984510', NULL),
(12, 'Plutzer Lebensmittelgroßmärkte AG', 'Martin Bein', NULL, 'Frankfurt', 'Germany', '(069) 992755', NULL),
(13, 'Nord-Ost-Fisch Handelsgesellschaft mbH', 'Sven Petersen', NULL, 'Cuxhaven', 'Germany', '(04721) 8713', '(04721) 8714'),
(14, 'Formaggi Fortini s.r.l.', 'Elio Rossi', NULL, 'Ravenna', 'Italy', '(0544) 60323', '(0544) 60603'),
(15, 'Norske Meierier', 'Beate Vileid', NULL, 'Sandvika', 'Norway', '(0)2-953010', NULL),
(16, 'Bigfoot Breweries', 'Cheryl Saylor', NULL, 'Bend', 'USA', '(503) 555-9931', NULL),
(17, 'Svensk Sjöföda AB', 'Michael Björn', NULL, 'Stockholm', 'Sweden', '08-123 45 67', NULL),
(18, 'Aux joyeux ecclésiastiques', 'Guylène Nodier', NULL, 'Paris', 'France', '(1) 03.83.00.68', '(1) 03.83.00.62'),
(19, 'New England Seafood Cannery', 'Robb Merchant', NULL, 'Boston', 'USA', '(617) 555-3267', '(617) 555-3389'),
(20, 'Leka Trading', 'Chandra Leka', NULL, 'Singapore', 'Singapore', '555-8787', NULL),
(21, 'Lyngbysild', 'Niels Petersen', NULL, 'Lyngby', 'Denmark', '43844108', '43844115'),
(22, 'Zaanse Snoepfabriek', 'Dirk Luchte', NULL, 'Zaandam', 'Netherlands', '(12345) 1212', '(12345) 1210'),
(23, 'Karkki Oy', 'Anne Heikkonen', NULL, 'Lappeenranta', 'Finland', '(953) 10956', NULL),
(24, 'G\'day, Mate', 'Wendy Mackenzie', NULL, 'Sydney', 'Australia', '(02) 555-5914', '(02) 555-4873'),
(25, 'Ma Maison', 'Jean-Guy Lauzon', NULL, 'Montréal', 'Canada', '(514) 555-9022', NULL),
(26, 'Pasta Buttini s.r.l.', 'Giovanni Giudici', NULL, 'Salerno', 'Italy', '(089) 6547665', '(089) 6547667'),
(27, 'Escargots Nouveaux', 'Marie Delamare', NULL, 'Montceau', 'France', '85.57.00.07', NULL),
(28, 'Gai pâturage', 'Eliane Noz', NULL, 'Annecy', 'France', '38.76.98.06', '38.76.98.58'),
(29, 'Forêts d\'érables', 'Chantal Goulet', NULL, 'Ste-Hyacinthe', 'Canada', '(514) 555-2955', '(514) 555-2921');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `customer`
--
ALTER TABLE `customer`
ADD PRIMARY KEY (`Id`),
ADD KEY `IndexCustomerName` (`LastName`,`FirstName`);
--
-- Indexes for table `order1`
--
ALTER TABLE `order1`
ADD PRIMARY KEY (`Id`);
--
-- Indexes for table `product`
--
ALTER TABLE `product`
ADD PRIMARY KEY (`Id`);
--
-- Indexes for table `supplier`
--
ALTER TABLE `supplier`
ADD PRIMARY KEY (`Id`);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;