-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase_dump.sql
More file actions
10941 lines (10874 loc) · 348 KB
/
database_dump.sql
File metadata and controls
10941 lines (10874 loc) · 348 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
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 2.11.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 13, 2011 at 07:32 PM
-- Server version: 4.1.22
-- PHP Version: 5.2.8
SET FOREIGN_KEY_CHECKS=0;
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `smsshafi`
--
-- --------------------------------------------------------
--
-- Table structure for table `fydp_aisles`
--
DROP TABLE IF EXISTS `fydp_aisles`;
CREATE TABLE IF NOT EXISTS `fydp_aisles` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(50) NOT NULL default '',
`number` int(3) NOT NULL default '0',
`store_id` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `number` (`number`),
KEY `store_id` (`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1317 ;
--
-- Dumping data for table `fydp_aisles`
--
INSERT INTO `fydp_aisles` (`id`, `name`, `number`, `store_id`) VALUES
(659, 'Bakery', 1, 1),
(660, 'Baking Supplies', 2, 1),
(661, 'Candy & Confectionery', 3, 1),
(662, 'Canned Fruits and Vegetables', 4, 1),
(663, 'Coffee, Tea & Cocoa', 5, 1),
(664, 'Condiments', 6, 1),
(665, 'Dairy Products & Eggs', 7, 1),
(666, 'Desserts', 8, 1),
(667, 'Frozen Food', 9, 1),
(668, 'Household Supplies', 10, 1),
(669, 'Meat', 11, 1),
(670, 'Pasta & Grains', 12, 1),
(671, 'Pet Supplies', 13, 1),
(672, 'Produce', 14, 1),
(673, 'Bakery', 1, 3),
(674, 'Baking Supplies', 2, 3),
(675, 'Candy & Confectionery', 3, 3),
(676, 'Canned Fruits and Vegetables', 4, 3),
(677, 'Coffee, Tea & Cocoa', 5, 3),
(678, 'Condiments', 6, 3),
(679, 'Dairy Products & Eggs', 7, 3),
(680, 'Desserts', 8, 3),
(681, 'Frozen Food', 9, 3),
(682, 'Household Supplies', 10, 3),
(683, 'Meat', 11, 3),
(684, 'Pasta & Grains', 12, 3),
(685, 'Pet Supplies', 13, 3),
(686, 'Produce', 14, 3),
(687, 'Bakery', 1, 6),
(688, 'Baking Supplies', 2, 6),
(689, 'Candy & Confectionery', 3, 6),
(690, 'Canned Fruits and Vegetables', 4, 6),
(691, 'Coffee, Tea & Cocoa', 5, 6),
(692, 'Condiments', 6, 6),
(693, 'Dairy Products & Eggs', 7, 6),
(694, 'Desserts', 8, 6),
(695, 'Frozen Food', 9, 6),
(696, 'Household Supplies', 10, 6),
(697, 'Meat', 11, 6),
(698, 'Pasta & Grains', 12, 6),
(699, 'Pet Supplies', 13, 6),
(700, 'Produce', 14, 6),
(701, 'Bakery', 1, 7),
(702, 'Baking Supplies', 2, 7),
(703, 'Candy & Confectionery', 3, 7),
(704, 'Canned Fruits and Vegetables', 4, 7),
(705, 'Coffee, Tea & Cocoa', 5, 7),
(706, 'Condiments', 6, 7),
(707, 'Dairy Products & Eggs', 7, 7),
(708, 'Desserts', 8, 7),
(709, 'Frozen Food', 9, 7),
(710, 'Household Supplies', 10, 7),
(711, 'Meat', 11, 7),
(712, 'Pasta & Grains', 12, 7),
(713, 'Pet Supplies', 13, 7),
(714, 'Produce', 14, 7),
(715, 'Bakery', 1, 8),
(716, 'Baking Supplies', 2, 8),
(717, 'Candy & Confectionery', 3, 8),
(718, 'Canned Fruits and Vegetables', 4, 8),
(719, 'Coffee, Tea & Cocoa', 5, 8),
(720, 'Condiments', 6, 8),
(721, 'Dairy Products & Eggs', 7, 8),
(722, 'Desserts', 8, 8),
(723, 'Frozen Food', 9, 8),
(724, 'Household Supplies', 10, 8),
(725, 'Meat', 11, 8),
(726, 'Pasta & Grains', 12, 8),
(727, 'Pet Supplies', 13, 8),
(728, 'Produce', 14, 8),
(729, 'Bakery', 1, 9),
(730, 'Baking Supplies', 2, 9),
(731, 'Candy & Confectionery', 3, 9),
(732, 'Canned Fruits and Vegetables', 4, 9),
(733, 'Coffee, Tea & Cocoa', 5, 9),
(734, 'Condiments', 6, 9),
(735, 'Dairy Products & Eggs', 7, 9),
(736, 'Desserts', 8, 9),
(737, 'Frozen Food', 9, 9),
(738, 'Household Supplies', 10, 9),
(739, 'Meat', 11, 9),
(740, 'Pasta & Grains', 12, 9),
(741, 'Pet Supplies', 13, 9),
(742, 'Produce', 14, 9),
(743, 'Bakery', 1, 10),
(744, 'Baking Supplies', 2, 10),
(745, 'Candy & Confectionery', 3, 10),
(746, 'Canned Fruits and Vegetables', 4, 10),
(747, 'Coffee, Tea & Cocoa', 5, 10),
(748, 'Condiments', 6, 10),
(749, 'Dairy Products & Eggs', 7, 10),
(750, 'Desserts', 8, 10),
(751, 'Frozen Food', 9, 10),
(752, 'Household Supplies', 10, 10),
(753, 'Meat', 11, 10),
(754, 'Pasta & Grains', 12, 10),
(755, 'Pet Supplies', 13, 10),
(756, 'Produce', 14, 10),
(757, 'Bakery', 1, 14),
(758, 'Baking Supplies', 2, 14),
(759, 'Candy & Confectionery', 3, 14),
(760, 'Canned Fruits and Vegetables', 4, 14),
(761, 'Coffee, Tea & Cocoa', 5, 14),
(762, 'Condiments', 6, 14),
(763, 'Dairy Products & Eggs', 7, 14),
(764, 'Desserts', 8, 14),
(765, 'Frozen Food', 9, 14),
(766, 'Household Supplies', 10, 14),
(767, 'Meat', 11, 14),
(768, 'Pasta & Grains', 12, 14),
(769, 'Pet Supplies', 13, 14),
(770, 'Produce', 14, 14),
(771, 'Bakery', 1, 15),
(772, 'Baking Supplies', 2, 15),
(773, 'Candy & Confectionery', 3, 15),
(774, 'Canned Fruits and Vegetables', 4, 15),
(775, 'Coffee, Tea & Cocoa', 5, 15),
(776, 'Condiments', 6, 15),
(777, 'Dairy Products & Eggs', 7, 15),
(778, 'Desserts', 8, 15),
(779, 'Frozen Food', 9, 15),
(780, 'Household Supplies', 10, 15),
(781, 'Meat', 11, 15),
(782, 'Pasta & Grains', 12, 15),
(783, 'Pet Supplies', 13, 15),
(784, 'Produce', 14, 15),
(785, 'Bakery', 1, 16),
(786, 'Baking Supplies', 2, 16),
(787, 'Candy & Confectionery', 3, 16),
(788, 'Canned Fruits and Vegetables', 4, 16),
(789, 'Coffee, Tea & Cocoa', 5, 16),
(790, 'Condiments', 6, 16),
(791, 'Dairy Products & Eggs', 7, 16),
(792, 'Desserts', 8, 16),
(793, 'Frozen Food', 9, 16),
(794, 'Household Supplies', 10, 16),
(795, 'Meat', 11, 16),
(796, 'Pasta & Grains', 12, 16),
(797, 'Pet Supplies', 13, 16),
(798, 'Produce', 14, 16),
(799, 'Bakery', 1, 17),
(800, 'Baking Supplies', 2, 17),
(801, 'Candy & Confectionery', 3, 17),
(802, 'Canned Fruits and Vegetables', 4, 17),
(803, 'Coffee, Tea & Cocoa', 5, 17),
(804, 'Condiments', 6, 17),
(805, 'Dairy Products & Eggs', 7, 17),
(806, 'Desserts', 8, 17),
(807, 'Frozen Food', 9, 17),
(808, 'Household Supplies', 10, 17),
(809, 'Meat', 11, 17),
(810, 'Pasta & Grains', 12, 17),
(811, 'Pet Supplies', 13, 17),
(812, 'Produce', 14, 17),
(813, 'Bakery', 1, 18),
(814, 'Baking Supplies', 2, 18),
(815, 'Candy & Confectionery', 3, 18),
(816, 'Canned Fruits and Vegetables', 4, 18),
(817, 'Coffee, Tea & Cocoa', 5, 18),
(818, 'Condiments', 6, 18),
(819, 'Dairy Products & Eggs', 7, 18),
(820, 'Desserts', 8, 18),
(821, 'Frozen Food', 9, 18),
(822, 'Household Supplies', 10, 18),
(823, 'Meat', 11, 18),
(824, 'Pasta & Grains', 12, 18),
(825, 'Pet Supplies', 13, 18),
(826, 'Produce', 14, 18),
(827, 'Bakery', 1, 19),
(828, 'Baking Supplies', 2, 19),
(829, 'Candy & Confectionery', 3, 19),
(830, 'Canned Fruits and Vegetables', 4, 19),
(831, 'Coffee, Tea & Cocoa', 5, 19),
(832, 'Condiments', 6, 19),
(833, 'Dairy Products & Eggs', 7, 19),
(834, 'Desserts', 8, 19),
(835, 'Frozen Food', 9, 19),
(836, 'Household Supplies', 10, 19),
(837, 'Meat', 11, 19),
(838, 'Pasta & Grains', 12, 19),
(839, 'Pet Supplies', 13, 19),
(840, 'Produce', 14, 19),
(841, 'Bakery', 1, 20),
(842, 'Baking Supplies', 2, 20),
(843, 'Candy & Confectionery', 3, 20),
(844, 'Canned Fruits and Vegetables', 4, 20),
(845, 'Coffee, Tea & Cocoa', 5, 20),
(846, 'Condiments', 6, 20),
(847, 'Dairy Products & Eggs', 7, 20),
(848, 'Desserts', 8, 20),
(849, 'Frozen Food', 9, 20),
(850, 'Household Supplies', 10, 20),
(851, 'Meat', 11, 20),
(852, 'Pasta & Grains', 12, 20),
(853, 'Pet Supplies', 13, 20),
(854, 'Produce', 14, 20),
(855, 'Bakery', 1, 21),
(856, 'Baking Supplies', 2, 21),
(857, 'Candy & Confectionery', 3, 21),
(858, 'Canned Fruits and Vegetables', 4, 21),
(859, 'Coffee, Tea & Cocoa', 5, 21),
(860, 'Condiments', 6, 21),
(861, 'Dairy Products & Eggs', 7, 21),
(862, 'Desserts', 8, 21),
(863, 'Frozen Food', 9, 21),
(864, 'Household Supplies', 10, 21),
(865, 'Meat', 11, 21),
(866, 'Pasta & Grains', 12, 21),
(867, 'Pet Supplies', 13, 21),
(868, 'Produce', 14, 21),
(869, 'Bakery', 1, 22),
(870, 'Baking Supplies', 2, 22),
(871, 'Candy & Confectionery', 3, 22),
(872, 'Canned Fruits and Vegetables', 4, 22),
(873, 'Coffee, Tea & Cocoa', 5, 22),
(874, 'Condiments', 6, 22),
(875, 'Dairy Products & Eggs', 7, 22),
(876, 'Desserts', 8, 22),
(877, 'Frozen Food', 9, 22),
(878, 'Household Supplies', 10, 22),
(879, 'Meat', 11, 22),
(880, 'Pasta & Grains', 12, 22),
(881, 'Pet Supplies', 13, 22),
(882, 'Produce', 14, 22),
(883, 'Bakery', 1, 23),
(884, 'Baking Supplies', 2, 23),
(885, 'Candy & Confectionery', 3, 23),
(886, 'Canned Fruits and Vegetables', 4, 23),
(887, 'Coffee, Tea & Cocoa', 5, 23),
(888, 'Condiments', 6, 23),
(889, 'Dairy Products & Eggs', 7, 23),
(890, 'Desserts', 8, 23),
(891, 'Frozen Food', 9, 23),
(892, 'Household Supplies', 10, 23),
(893, 'Meat', 11, 23),
(894, 'Pasta & Grains', 12, 23),
(895, 'Pet Supplies', 13, 23),
(896, 'Produce', 14, 23),
(897, 'Bakery', 1, 24),
(898, 'Baking Supplies', 2, 24),
(899, 'Candy & Confectionery', 3, 24),
(900, 'Canned Fruits and Vegetables', 4, 24),
(901, 'Coffee, Tea & Cocoa', 5, 24),
(902, 'Condiments', 6, 24),
(903, 'Dairy Products & Eggs', 7, 24),
(904, 'Desserts', 8, 24),
(905, 'Frozen Food', 9, 24),
(906, 'Household Supplies', 10, 24),
(907, 'Meat', 11, 24),
(908, 'Pasta & Grains', 12, 24),
(909, 'Pet Supplies', 13, 24),
(910, 'Produce', 14, 24),
(911, 'Bakery', 1, 25),
(912, 'Baking Supplies', 2, 25),
(913, 'Candy & Confectionery', 3, 25),
(914, 'Canned Fruits and Vegetables', 4, 25),
(915, 'Coffee, Tea & Cocoa', 5, 25),
(916, 'Condiments', 6, 25),
(917, 'Dairy Products & Eggs', 7, 25),
(918, 'Desserts', 8, 25),
(919, 'Frozen Food', 9, 25),
(920, 'Household Supplies', 10, 25),
(921, 'Meat', 11, 25),
(922, 'Pasta & Grains', 12, 25),
(923, 'Pet Supplies', 13, 25),
(924, 'Produce', 14, 25),
(925, 'Bakery', 1, 26),
(926, 'Baking Supplies', 2, 26),
(927, 'Candy & Confectionery', 3, 26),
(928, 'Canned Fruits and Vegetables', 4, 26),
(929, 'Coffee, Tea & Cocoa', 5, 26),
(930, 'Condiments', 6, 26),
(931, 'Dairy Products & Eggs', 7, 26),
(932, 'Desserts', 8, 26),
(933, 'Frozen Food', 9, 26),
(934, 'Household Supplies', 10, 26),
(935, 'Meat', 11, 26),
(936, 'Pasta & Grains', 12, 26),
(937, 'Pet Supplies', 13, 26),
(938, 'Produce', 14, 26),
(939, 'Bakery', 1, 27),
(940, 'Baking Supplies', 2, 27),
(941, 'Candy & Confectionery', 3, 27),
(942, 'Canned Fruits and Vegetables', 4, 27),
(943, 'Coffee, Tea & Cocoa', 5, 27),
(944, 'Condiments', 6, 27),
(945, 'Dairy Products & Eggs', 7, 27),
(946, 'Desserts', 8, 27),
(947, 'Frozen Food', 9, 27),
(948, 'Household Supplies', 10, 27),
(949, 'Meat', 11, 27),
(950, 'Pasta & Grains', 12, 27),
(951, 'Pet Supplies', 13, 27),
(952, 'Produce', 14, 27),
(953, 'Bakery', 1, 28),
(954, 'Baking Supplies', 2, 28),
(955, 'Candy & Confectionery', 3, 28),
(956, 'Canned Fruits and Vegetables', 4, 28),
(957, 'Coffee, Tea & Cocoa', 5, 28),
(958, 'Condiments', 6, 28),
(959, 'Dairy Products & Eggs', 7, 28),
(960, 'Desserts', 8, 28),
(961, 'Frozen Food', 9, 28),
(962, 'Household Supplies', 10, 28),
(963, 'Meat', 11, 28),
(964, 'Pasta & Grains', 12, 28),
(965, 'Pet Supplies', 13, 28),
(966, 'Produce', 14, 28),
(967, 'Bakery', 1, 29),
(968, 'Baking Supplies', 2, 29),
(969, 'Candy & Confectionery', 3, 29),
(970, 'Canned Fruits and Vegetables', 4, 29),
(971, 'Coffee, Tea & Cocoa', 5, 29),
(972, 'Condiments', 6, 29),
(973, 'Dairy Products & Eggs', 7, 29),
(974, 'Desserts', 8, 29),
(975, 'Frozen Food', 9, 29),
(976, 'Household Supplies', 10, 29),
(977, 'Meat', 11, 29),
(978, 'Pasta & Grains', 12, 29),
(979, 'Pet Supplies', 13, 29),
(980, 'Produce', 14, 29),
(981, 'Bakery', 1, 30),
(982, 'Baking Supplies', 2, 30),
(983, 'Candy & Confectionery', 3, 30),
(984, 'Canned Fruits and Vegetables', 4, 30),
(985, 'Coffee, Tea & Cocoa', 5, 30),
(986, 'Condiments', 6, 30),
(987, 'Dairy Products & Eggs', 7, 30),
(988, 'Desserts', 8, 30),
(989, 'Frozen Food', 9, 30),
(990, 'Household Supplies', 10, 30),
(991, 'Meat', 11, 30),
(992, 'Pasta & Grains', 12, 30),
(993, 'Pet Supplies', 13, 30),
(994, 'Produce', 14, 30),
(995, 'Bakery', 1, 31),
(996, 'Baking Supplies', 2, 31),
(997, 'Candy & Confectionery', 3, 31),
(998, 'Canned Fruits and Vegetables', 4, 31),
(999, 'Coffee, Tea & Cocoa', 5, 31),
(1000, 'Condiments', 6, 31),
(1001, 'Dairy Products & Eggs', 7, 31),
(1002, 'Desserts', 8, 31),
(1003, 'Frozen Food', 9, 31),
(1004, 'Household Supplies', 10, 31),
(1005, 'Meat', 11, 31),
(1006, 'Pasta & Grains', 12, 31),
(1007, 'Pet Supplies', 13, 31),
(1008, 'Produce', 14, 31),
(1009, 'Bakery', 1, 32),
(1010, 'Baking Supplies', 2, 32),
(1011, 'Candy & Confectionery', 3, 32),
(1012, 'Canned Fruits and Vegetables', 4, 32),
(1013, 'Coffee, Tea & Cocoa', 5, 32),
(1014, 'Condiments', 6, 32),
(1015, 'Dairy Products & Eggs', 7, 32),
(1016, 'Desserts', 8, 32),
(1017, 'Frozen Food', 9, 32),
(1018, 'Household Supplies', 10, 32),
(1019, 'Meat', 11, 32),
(1020, 'Pasta & Grains', 12, 32),
(1021, 'Pet Supplies', 13, 32),
(1022, 'Produce', 14, 32),
(1023, 'Bakery', 1, 33),
(1024, 'Baking Supplies', 2, 33),
(1025, 'Candy & Confectionery', 3, 33),
(1026, 'Canned Fruits and Vegetables', 4, 33),
(1027, 'Coffee, Tea & Cocoa', 5, 33),
(1028, 'Condiments', 6, 33),
(1029, 'Dairy Products & Eggs', 7, 33),
(1030, 'Desserts', 8, 33),
(1031, 'Frozen Food', 9, 33),
(1032, 'Household Supplies', 10, 33),
(1033, 'Meat', 11, 33),
(1034, 'Pasta & Grains', 12, 33),
(1035, 'Pet Supplies', 13, 33),
(1036, 'Produce', 14, 33),
(1037, 'Bakery', 1, 37),
(1038, 'Baking Supplies', 2, 37),
(1039, 'Candy & Confectionery', 3, 37),
(1040, 'Canned Fruits and Vegetables', 4, 37),
(1041, 'Coffee, Tea & Cocoa', 5, 37),
(1042, 'Condiments', 6, 37),
(1043, 'Dairy Products & Eggs', 7, 37),
(1044, 'Desserts', 8, 37),
(1045, 'Frozen Food', 9, 37),
(1046, 'Household Supplies', 10, 37),
(1047, 'Meat', 11, 37),
(1048, 'Pasta & Grains', 12, 37),
(1049, 'Pet Supplies', 13, 37),
(1050, 'Produce', 14, 37),
(1051, 'Bakery', 1, 41),
(1052, 'Baking Supplies', 2, 41),
(1053, 'Candy & Confectionery', 3, 41),
(1054, 'Canned Fruits and Vegetables', 4, 41),
(1055, 'Coffee, Tea & Cocoa', 5, 41),
(1056, 'Condiments', 6, 41),
(1057, 'Dairy Products & Eggs', 7, 41),
(1058, 'Desserts', 8, 41),
(1059, 'Frozen Food', 9, 41),
(1060, 'Household Supplies', 10, 41),
(1061, 'Meat', 11, 41),
(1062, 'Pasta & Grains', 12, 41),
(1063, 'Pet Supplies', 13, 41),
(1064, 'Produce', 14, 41),
(1065, 'Bakery', 1, 42),
(1066, 'Baking Supplies', 2, 42),
(1067, 'Candy & Confectionery', 3, 42),
(1068, 'Canned Fruits and Vegetables', 4, 42),
(1069, 'Coffee, Tea & Cocoa', 5, 42),
(1070, 'Condiments', 6, 42),
(1071, 'Dairy Products & Eggs', 7, 42),
(1072, 'Desserts', 8, 42),
(1073, 'Frozen Food', 9, 42),
(1074, 'Household Supplies', 10, 42),
(1075, 'Meat', 11, 42),
(1076, 'Pasta & Grains', 12, 42),
(1077, 'Pet Supplies', 13, 42),
(1078, 'Produce', 14, 42),
(1079, 'Bakery', 1, 43),
(1080, 'Baking Supplies', 2, 43),
(1081, 'Candy & Confectionery', 3, 43),
(1082, 'Canned Fruits and Vegetables', 4, 43),
(1083, 'Coffee, Tea & Cocoa', 5, 43),
(1084, 'Condiments', 6, 43),
(1085, 'Dairy Products & Eggs', 7, 43),
(1086, 'Desserts', 8, 43),
(1087, 'Frozen Food', 9, 43),
(1088, 'Household Supplies', 10, 43),
(1089, 'Meat', 11, 43),
(1090, 'Pasta & Grains', 12, 43),
(1091, 'Pet Supplies', 13, 43),
(1092, 'Produce', 14, 43),
(1093, 'Bakery', 1, 44),
(1094, 'Baking Supplies', 2, 44),
(1095, 'Candy & Confectionery', 3, 44),
(1096, 'Canned Fruits and Vegetables', 4, 44),
(1097, 'Coffee, Tea & Cocoa', 5, 44),
(1098, 'Condiments', 6, 44),
(1099, 'Dairy Products & Eggs', 7, 44),
(1100, 'Desserts', 8, 44),
(1101, 'Frozen Food', 9, 44),
(1102, 'Household Supplies', 10, 44),
(1103, 'Meat', 11, 44),
(1104, 'Pasta & Grains', 12, 44),
(1105, 'Pet Supplies', 13, 44),
(1106, 'Produce', 14, 44),
(1107, 'Bakery', 1, 45),
(1108, 'Baking Supplies', 2, 45),
(1109, 'Candy & Confectionery', 3, 45),
(1110, 'Canned Fruits and Vegetables', 4, 45),
(1111, 'Coffee, Tea & Cocoa', 5, 45),
(1112, 'Condiments', 6, 45),
(1113, 'Dairy Products & Eggs', 7, 45),
(1114, 'Desserts', 8, 45),
(1115, 'Frozen Food', 9, 45),
(1116, 'Household Supplies', 10, 45),
(1117, 'Meat', 11, 45),
(1118, 'Pasta & Grains', 12, 45),
(1119, 'Pet Supplies', 13, 45),
(1120, 'Produce', 14, 45),
(1121, 'Bakery', 1, 46),
(1122, 'Baking Supplies', 2, 46),
(1123, 'Candy & Confectionery', 3, 46),
(1124, 'Canned Fruits and Vegetables', 4, 46),
(1125, 'Coffee, Tea & Cocoa', 5, 46),
(1126, 'Condiments', 6, 46),
(1127, 'Dairy Products & Eggs', 7, 46),
(1128, 'Desserts', 8, 46),
(1129, 'Frozen Food', 9, 46),
(1130, 'Household Supplies', 10, 46),
(1131, 'Meat', 11, 46),
(1132, 'Pasta & Grains', 12, 46),
(1133, 'Pet Supplies', 13, 46),
(1134, 'Produce', 14, 46),
(1135, 'Bakery', 1, 47),
(1136, 'Baking Supplies', 2, 47),
(1137, 'Candy & Confectionery', 3, 47),
(1138, 'Canned Fruits and Vegetables', 4, 47),
(1139, 'Coffee, Tea & Cocoa', 5, 47),
(1140, 'Condiments', 6, 47),
(1141, 'Dairy Products & Eggs', 7, 47),
(1142, 'Desserts', 8, 47),
(1143, 'Frozen Food', 9, 47),
(1144, 'Household Supplies', 10, 47),
(1145, 'Meat', 11, 47),
(1146, 'Pasta & Grains', 12, 47),
(1147, 'Pet Supplies', 13, 47),
(1148, 'Produce', 14, 47),
(1149, 'Bakery', 1, 48),
(1150, 'Baking Supplies', 2, 48),
(1151, 'Candy & Confectionery', 3, 48),
(1152, 'Canned Fruits and Vegetables', 4, 48),
(1153, 'Coffee, Tea & Cocoa', 5, 48),
(1154, 'Condiments', 6, 48),
(1155, 'Dairy Products & Eggs', 7, 48),
(1156, 'Desserts', 8, 48),
(1157, 'Frozen Food', 9, 48),
(1158, 'Household Supplies', 10, 48),
(1159, 'Meat', 11, 48),
(1160, 'Pasta & Grains', 12, 48),
(1161, 'Pet Supplies', 13, 48),
(1162, 'Produce', 14, 48),
(1163, 'Bakery', 1, 49),
(1164, 'Baking Supplies', 2, 49),
(1165, 'Candy & Confectionery', 3, 49),
(1166, 'Canned Fruits and Vegetables', 4, 49),
(1167, 'Coffee, Tea & Cocoa', 5, 49),
(1168, 'Condiments', 6, 49),
(1169, 'Dairy Products & Eggs', 7, 49),
(1170, 'Desserts', 8, 49),
(1171, 'Frozen Food', 9, 49),
(1172, 'Household Supplies', 10, 49),
(1173, 'Meat', 11, 49),
(1174, 'Pasta & Grains', 12, 49),
(1175, 'Pet Supplies', 13, 49),
(1176, 'Produce', 14, 49),
(1177, 'Bakery', 1, 50),
(1178, 'Baking Supplies', 2, 50),
(1179, 'Candy & Confectionery', 3, 50),
(1180, 'Canned Fruits and Vegetables', 4, 50),
(1181, 'Coffee, Tea & Cocoa', 5, 50),
(1182, 'Condiments', 6, 50),
(1183, 'Dairy Products & Eggs', 7, 50),
(1184, 'Desserts', 8, 50),
(1185, 'Frozen Food', 9, 50),
(1186, 'Household Supplies', 10, 50),
(1187, 'Meat', 11, 50),
(1188, 'Pasta & Grains', 12, 50),
(1189, 'Pet Supplies', 13, 50),
(1190, 'Produce', 14, 50),
(1191, 'Bakery', 1, 51),
(1192, 'Baking Supplies', 2, 51),
(1193, 'Candy & Confectionery', 3, 51),
(1194, 'Canned Fruits and Vegetables', 4, 51),
(1195, 'Coffee, Tea & Cocoa', 5, 51),
(1196, 'Condiments', 6, 51),
(1197, 'Dairy Products & Eggs', 7, 51),
(1198, 'Desserts', 8, 51),
(1199, 'Frozen Food', 9, 51),
(1200, 'Household Supplies', 10, 51),
(1201, 'Meat', 11, 51),
(1202, 'Pasta & Grains', 12, 51),
(1203, 'Pet Supplies', 13, 51),
(1204, 'Produce', 14, 51),
(1205, 'Bakery', 1, 52),
(1206, 'Baking Supplies', 2, 52),
(1207, 'Candy & Confectionery', 3, 52),
(1208, 'Canned Fruits and Vegetables', 4, 52),
(1209, 'Coffee, Tea & Cocoa', 5, 52),
(1210, 'Condiments', 6, 52),
(1211, 'Dairy Products & Eggs', 7, 52),
(1212, 'Desserts', 8, 52),
(1213, 'Frozen Food', 9, 52),
(1214, 'Household Supplies', 10, 52),
(1215, 'Meat', 11, 52),
(1216, 'Pasta & Grains', 12, 52),
(1217, 'Pet Supplies', 13, 52),
(1218, 'Produce', 14, 52),
(1219, 'Bakery', 1, 53),
(1220, 'Baking Supplies', 2, 53),
(1221, 'Candy & Confectionery', 3, 53),
(1222, 'Canned Fruits and Vegetables', 4, 53),
(1223, 'Coffee, Tea & Cocoa', 5, 53),
(1224, 'Condiments', 6, 53),
(1225, 'Dairy Products & Eggs', 7, 53),
(1226, 'Desserts', 8, 53),
(1227, 'Frozen Food', 9, 53),
(1228, 'Household Supplies', 10, 53),
(1229, 'Meat', 11, 53),
(1230, 'Pasta & Grains', 12, 53),
(1231, 'Pet Supplies', 13, 53),
(1232, 'Produce', 14, 53),
(1233, 'Bakery', 1, 54),
(1234, 'Baking Supplies', 2, 54),
(1235, 'Candy & Confectionery', 3, 54),
(1236, 'Canned Fruits and Vegetables', 4, 54),
(1237, 'Coffee, Tea & Cocoa', 5, 54),
(1238, 'Condiments', 6, 54),
(1239, 'Dairy Products & Eggs', 7, 54),
(1240, 'Desserts', 8, 54),
(1241, 'Frozen Food', 9, 54),
(1242, 'Household Supplies', 10, 54),
(1243, 'Meat', 11, 54),
(1244, 'Pasta & Grains', 12, 54),
(1245, 'Pet Supplies', 13, 54),
(1246, 'Produce', 14, 54),
(1247, 'Bakery', 1, 55),
(1248, 'Baking Supplies', 2, 55),
(1249, 'Candy & Confectionery', 3, 55),
(1250, 'Canned Fruits and Vegetables', 4, 55),
(1251, 'Coffee, Tea & Cocoa', 5, 55),
(1252, 'Condiments', 6, 55),
(1253, 'Dairy Products & Eggs', 7, 55),
(1254, 'Desserts', 8, 55),
(1255, 'Frozen Food', 9, 55),
(1256, 'Household Supplies', 10, 55),
(1257, 'Meat', 11, 55),
(1258, 'Pasta & Grains', 12, 55),
(1259, 'Pet Supplies', 13, 55),
(1260, 'Produce', 14, 55),
(1261, 'Bakery', 1, 56),
(1262, 'Baking Supplies', 2, 56),
(1263, 'Candy & Confectionery', 3, 56),
(1264, 'Canned Fruits and Vegetables', 4, 56),
(1265, 'Coffee, Tea & Cocoa', 5, 56),
(1266, 'Condiments', 6, 56),
(1267, 'Dairy Products & Eggs', 7, 56),
(1268, 'Desserts', 8, 56),
(1269, 'Frozen Food', 9, 56),
(1270, 'Household Supplies', 10, 56),
(1271, 'Meat', 11, 56),
(1272, 'Pasta & Grains', 12, 56),
(1273, 'Pet Supplies', 13, 56),
(1274, 'Produce', 14, 56),
(1275, 'Bakery', 1, 57),
(1276, 'Baking Supplies', 2, 57),
(1277, 'Candy & Confectionery', 3, 57),
(1278, 'Canned Fruits and Vegetables', 4, 57),
(1279, 'Coffee, Tea & Cocoa', 5, 57),
(1280, 'Condiments', 6, 57),
(1281, 'Dairy Products & Eggs', 7, 57),
(1282, 'Desserts', 8, 57),
(1283, 'Frozen Food', 9, 57),
(1284, 'Household Supplies', 10, 57),
(1285, 'Meat', 11, 57),
(1286, 'Pasta & Grains', 12, 57),
(1287, 'Pet Supplies', 13, 57),
(1288, 'Produce', 14, 57),
(1289, 'Bakery', 1, 58),
(1290, 'Baking Supplies', 2, 58),
(1291, 'Candy & Confectionery', 3, 58),
(1292, 'Canned Fruits and Vegetables', 4, 58),
(1293, 'Coffee, Tea & Cocoa', 5, 58),
(1294, 'Condiments', 6, 58),
(1295, 'Dairy Products & Eggs', 7, 58),
(1296, 'Desserts', 8, 58),
(1297, 'Frozen Food', 9, 58),
(1298, 'Household Supplies', 10, 58),
(1299, 'Meat', 11, 58),
(1300, 'Pasta & Grains', 12, 58),
(1301, 'Pet Supplies', 13, 58),
(1302, 'Produce', 14, 58),
(1303, 'Bakery', 1, 59),
(1304, 'Baking Supplies', 2, 59),
(1305, 'Candy & Confectionery', 3, 59),
(1306, 'Canned Fruits and Vegetables', 4, 59),
(1307, 'Coffee, Tea & Cocoa', 5, 59),
(1308, 'Condiments', 6, 59),
(1309, 'Dairy Products & Eggs', 7, 59),
(1310, 'Desserts', 8, 59),
(1311, 'Frozen Food', 9, 59),
(1312, 'Household Supplies', 10, 59),
(1313, 'Meat', 11, 59),
(1314, 'Pasta & Grains', 12, 59),
(1315, 'Pet Supplies', 13, 59),
(1316, 'Produce', 14, 59);
-- --------------------------------------------------------
--
-- Table structure for table `fydp_categories`
--
DROP TABLE IF EXISTS `fydp_categories`;
CREATE TABLE IF NOT EXISTS `fydp_categories` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
--
-- Dumping data for table `fydp_categories`
--
INSERT INTO `fydp_categories` (`id`, `name`) VALUES
(1, 'Condiments'),
(2, 'Desserts'),
(3, 'Pasta & Grains'),
(4, 'Coffee, Tea & Cocoa'),
(5, 'Pet Supplies'),
(6, 'Household Supplies'),
(7, 'Bakery'),
(8, 'Meat'),
(9, 'Dairy Products & Eggs'),
(10, 'Baking Supplies'),
(11, 'Frozen Food'),
(12, 'Canned Fruits and Vegetables'),
(13, 'Candy & Confectionery'),
(14, 'Produce'),
(15, 'Test');
-- --------------------------------------------------------
--
-- Table structure for table `fydp_listitems`
--
DROP TABLE IF EXISTS `fydp_listitems`;
CREATE TABLE IF NOT EXISTS `fydp_listitems` (
`id` int(11) NOT NULL auto_increment,
`product_id` int(11) NOT NULL default '0',
`list_id` int(11) NOT NULL default '0',
`quantity` int(3) default NULL,
PRIMARY KEY (`id`),
KEY `product_id` (`product_id`,`list_id`),
KEY `list_id` (`list_id`),
KEY `quantity` (`quantity`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=577 ;
--
-- Dumping data for table `fydp_listitems`
--
INSERT INTO `fydp_listitems` (`id`, `product_id`, `list_id`, `quantity`) VALUES
(15, 14, 6, 8),
(17, 47, 6, 4),
(18, 54, 6, 3),
(22, 2, 7, 2),
(23, 24, 7, 1),
(24, 92, 7, 1),
(52, 3, 11, 1),
(53, 4, 11, 55),
(55, 140, 12, 2),
(69, 15, 16, 1),
(70, 152, 16, 1),
(71, 160, 16, 3),
(89, 2, 17, 1),
(90, 105, 17, 1),
(91, 3, 17, 1),
(92, 81, 17, 1),
(93, 139, 17, 4),
(94, 107, 17, 1),
(95, 88, 17, 1),
(96, 12, 17, 1),
(170, 193, 18, 1),
(171, 194, 18, 1),
(172, 2, 18, 1),
(178, 139, 18, 1),
(179, 122, 18, 1),
(180, 103, 18, 1),
(181, 107, 18, 1),
(182, 96, 18, 1),
(183, 7, 18, 1),
(184, 80, 18, 1),
(185, 104, 18, 1),
(186, 153, 18, 1),
(187, 135, 18, 1),
(188, 1, 18, 1),
(189, 148, 18, 1),
(190, 58, 18, 1),
(191, 88, 18, 1),
(192, 51, 18, 1),
(193, 82, 18, 1),
(194, 198, 18, 1),
(332, 11, 22, 1),
(333, 23, 22, 1),
(334, 82, 22, 1),
(335, 80, 22, 1),
(336, 7, 22, 1),
(338, 3, 22, 1),
(340, 58, 22, 2),
(341, 96, 22, 5),
(342, 29, 22, 1),
(343, 200, 22, 1),
(344, 157, 22, 1),
(345, 199, 22, 1),
(371, 29, 25, 6),
(372, 200, 25, 6),
(373, 157, 25, 6),
(374, 199, 25, 6),
(384, 198, 26, 1),
(385, 153, 26, 1),
(386, 46, 26, 1),
(387, 51, 26, 1),
(486, 2, 27, 1),
(487, 191, 1, 6),
(489, 2, 1, 2),
(492, 12, 1, 4),
(504, 136, 1, 1),
(505, 80, 1, 2),
(518, 139, 1, 9),
(524, 29, 1, 4),
(526, 81, 1, 4),
(527, 58, 1, 1),
(528, 199, 1, 2),
(530, 25, 1, 3),
(531, 154, 1, 2),
(536, 182, 1, 2),
(538, 24, 1, 1),
(543, 103, 1, 3),
(544, 74, 1, 2),
(546, 95, 1, 1),
(550, 144, 1, 2),
(551, 157, 1, 1),
(556, 181, 1, 2),
(557, 23, 1, 2),
(561, 26, 1, 1),
(562, 147, 1, 1),
(563, 99, 1, 1),
(566, 183, 1, 3),
(567, 176, 1, 1),
(569, 8, 1, 1),
(570, 198, 1, 1),
(571, 186, 1, 1),
(572, 134, 1, 1),
(576, 135, 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `fydp_lists`
--
DROP TABLE IF EXISTS `fydp_lists`;
CREATE TABLE IF NOT EXISTS `fydp_lists` (
`id` int(11) NOT NULL auto_increment,
`user_id` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `owner` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=29 ;
--
-- Dumping data for table `fydp_lists`
--
INSERT INTO `fydp_lists` (`id`, `user_id`) VALUES
(1, 1),
(2, 2),
(4, 23),
(6, 26),
(7, 27),
(11, 31),
(12, 32),
(14, 34),
(16, 36),
(17, 37),
(18, 38),
(19, 39),
(21, 41),
(22, 42),
(23, 43),
(24, 44),
(25, 45),
(26, 46),
(27, 47),
(28, 48);
-- --------------------------------------------------------
--
-- Table structure for table `fydp_products`
--
DROP TABLE IF EXISTS `fydp_products`;
CREATE TABLE IF NOT EXISTS `fydp_products` (
`id` int(11) NOT NULL auto_increment,
`title` varchar(100) NOT NULL default '',
`category_id` int(11) NOT NULL default '0',
`subcategory_id` int(11) NOT NULL default '0',
`description` text NOT NULL,
`image` varchar(200) NOT NULL default '',
`price` varchar(10) default NULL,
`saleprice` varchar(10) default NULL,
PRIMARY KEY (`id`),
KEY `category` (`category_id`,`subcategory_id`),
KEY `subcategory_id` (`subcategory_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=213 ;
--
-- Dumping data for table `fydp_products`
--
INSERT INTO `fydp_products` (`id`, `title`, `category_id`, `subcategory_id`, `description`, `image`, `price`, `saleprice`) VALUES
(1, 'Heinz Tomato Ketchup', 1, 1, 'Heinz Tomato Ketchup is a brand of ketchup by H. J. Heinz Company. It is Heinz''s largest and fastest selling product the company has ever distributed, worldwide. ', 'images/products/f139a_939f4_heinz.jpg', '4.99', '2.49'),
(2, 'Compliments European Flavour Cultured Butter Salted 250 gram', 9, 25, '', 'images/products/5b134_Butter1.jpg', '1.49', '1.00'),
(3, 'Compliments European Flavour Cultured Butter Unsalted 250 gram', 9, 25, '', 'images/products/65705_Butter1.jpg', '3.49', '1.99'),
(4, 'Dairyland Creamery Butter Salted 454 gram', 9, 25, '', 'images/products/51b23_Butter1.jpg', '1.49', '0'),
(5, 'Dairyland Creamery Butter Unsalted 454 gram', 9, 25, '', 'images/products/59486_Butter1.jpg', '2.49', '0'),
(6, 'Compliments Garlic Margarine 250 gram', 9, 25, '', 'images/products/5f84c_Butter1.jpg', '3.49', '0'),
(7, 'Becel Margarine with Bertolli Olive Oil 907 gram', 9, 25, 'Source of Omega-3 polyunsaturated fat, No trans fat, Non-Hydrogenated, Low in saturated fat.82% Canola oil, 10% Olive oil, 8% Vegetable oils.', 'images/products/7d947_Butter1.jpg', '4.59', '2.99'),
(8, 'Dairyland Milk 2%, 2l carton', 9, 22, '', 'images/products/ffe7f_milk.jpg', '3.99', '0'),
(9, 'Dairyland Homo Milk, 2l carton', 9, 22, '', 'images/products/0cc5a_milk.jpg', '5.99', '0'),
(10, 'Dairyland Whipping Cream 250ml', 9, 28, 'DairyLand Whipping Cream 250 ml, 33% M.F\n', 'images/products/9a455_cream.jpg', '2.99', NULL),
(11, 'Compliments Whipped Topping 1l', 9, 28, '', 'images/products/e34b5_cream.jpg', '3.49', '2.49'),
(12, 'Kraft Cool Whip Ultra Low Fat 1l', 9, 28, '76% Less fat than our regular Cool Whip Topping', 'images/products/f4ca2_cream.jpg', '4.49', '3.99'),
(13, 'Parmalat Whip Cream 250ml', 9, 28, '', 'images/products/2fbfa_cream.jpg', '2.99', '0'),
(14, 'Danone Activia Yogurt 4 Prune 4 Peach X 100 gram', 9, 23, 'Ingredients Skim milk, cream, concentrated skim milk, sugar, milk and whey protein concentrate, fructose, corn starch, gelatin and active bacterial cultures.', 'images/products/2d461_cream.jpg', '6.49', '0'),
(15, 'Danone Silhouette Cherry Yogurt Fat Free 650 gram', 9, 23, 'O Sugar added, 0 fat, Plus vitamins,calcium and protein. No aspartame.', 'images/products/e0aca_cream.jpg', '3.49', '0'),
(22, 'Astro Low Fat Yogurt Peaches and Cream 750 gram', 9, 23, 'Naturally Flavoured Yogurt,Low Fat, Low Cholesterol 1% M.F', 'images/products/b5fe9_cream.jpg', '3.49', '0'),
(23, 'Yoplait Source Fat Free Stirred Yogurt 16 X 100 gram', 9, 23, 'Yoplait Source Fat Free Stirred Yogourt 16 X 100 gram, Each package contains 4-Strawberry,4-Fieldberry,4-Peach & 4-Raspberry, 39% Less calories, Fat free stirred yogourt with fruit chunks, a source of calcium,Vitamin A and d, sweetened with Splenda, 0% M.F', 'images/products/fc7ae_cream.jpg', '6.49', '3.99'),
(24, 'Kraft Cracker Barrel Cheddar Cheese Mild 400 gram', 9, 24, 'Kraft Cracker Barrel Cheddar Cheese Mild 400 gram,35% M.F, 37% Moisture.', 'images/products/d3df5_cream.jpg', '4.99', '0'),
(25, 'Compliments Cheddar Cheese Medium 350 gram', 9, 24, 'Compliments Cheddar Cheese Medium 350 gram,31% M.F. , 39% Moisture, a good source of calcium.\n', 'images/products/2e709_cream.jpg', '3.49', '2.49'),
(26, 'Compliments Part Skim Mozzarella Cheese 350 gram', 9, 24, '18% M.F, 48% Moisture, A good source of calcium.', 'images/products/4afe7_cream.jpg', '4.49', '0'),
(27, 'Kraft Mozzarella Cheese 400 gram', 9, 24, 'Kraft Mozzarella Cheese 400 gram,28% M.F,42% Moisture.', 'images/products/2d689_cream.jpg', '2.49', '0'),
(28, 'Compliments Swiss Cheese Fondue 400 gram', 9, 24, 'Product of Switzerland', 'images/products/6baee_cream.jpg', '5.49', '0'),
(29, 'Kraft Four Cheese Italiano Shredded Cheese 400 gram', 9, 24, 'Kraft 4 Cheese Italiano Shredded Cheese 400 gram, Provolone,Part-Skim Mozzarella,Parmesan and Emmental, 25% M.F, 42% Moisture.', 'images/products/01122_cream.jpg', '3.29', '0'),
(30, 'Compliments Three Cheese Pasta & Sauce Mix 133 gram', 3, 29, '', 'images/products/05f16_milk.jpg', '1.29', '0'),
(31, 'Compliments Creamy Carbonara Pasta & Sauce Mix 134 gram', 3, 29, '', 'images/products/7e016_Butter1.jpg', '1.29', '0'),
(32, 'Compliments Creamy Parmesan Pasta & Sauce Mix 124 gram', 3, 29, '', 'images/products/e718b_Butter1.jpg', '1.29', '0'),
(33, 'Compliments Sour Cream & Chives Pasta & Sauce Mix 120 gram', 3, 29, '', 'images/products/333fa_Butter1.jpg', '1.29', '0'),
(34, 'Compliments Mushroom Alfredo Pasta & Sauce Mix 138 gram', 3, 29, '', 'images/products/3bc2d_Butter1.jpg', '1.29', '0'),
(35, 'Compliments Chicken Pasta & Sauce Mix 126 gram', 3, 29, '', 'images/products/e41b3_Butter1.jpg', '1.49', '0'),
(36, 'Compliments Tomato & Herbs Pasta Sauce 1.8 l', 3, 15, '', 'images/products/e6523_Butter1.jpg', '8.99', '0'),
(37, 'Compliments Four Cheese Pasta Sauce 700ml', 3, 15, '', 'images/products/49343_Butter1.jpg', '4.49', '0'),
(38, 'Classico Alfredo Sauce', 3, 15, '', 'images/products/05ceb_Butter1.jpg', '3.89', '0'),
(39, 'Classico Tomato and Basil', 3, 15, '', 'images/products/e60af_Butter1.jpg', '3.69', '0'),
(40, 'Catelli Spaghetti 500 gram', 3, 30, 'Catelli Spaghetti 500 gram,low fat, Sodium free, Cooks in 10 minutes', 'images/products/b6af8_Butter1.jpg', '2.99', '0'),
(41, 'Catelli Fettuccine 500 gram', 3, 30, '', 'images/products/058eb_Butter1.jpg', '2.99', '0'),
(42, 'Compliments Fettuccine 900 gram', 3, 30, '', 'images/products/4b393_Butter1.jpg', '3.49', '0'),
(43, 'Catelli Macroni Ready Cut 500 gram', 3, 30, 'Catelli Macaroni Ready Cut 500 gram, Low fat,Sodium free,No preservatives, Cooks in 6 minutes.', 'images/products/0b9e8_Butter1.jpg', '2.49', '0'),
(44, 'Compliments Rotini 900 gram', 3, 30, '100% Durum Semolina.', 'images/products/01f68_Butter1.jpg', '3.49', '2.29'),
(45, 'Catelli Rotini 700 gram', 3, 30, '', 'images/products/f2ccd_Butter1.jpg', '3.49', '0'),
(46, 'Nescafe Creamy Flavoured Coffee Mix 240 gram', 4, 31, '', 'images/products/5f5af_Butter1.jpg', '3.49', '0'),
(47, 'Nescafe Tasters Choice 100% Colombian 150 gram', 4, 31, '', 'images/products/c01c4_Butter1.jpg', '3.99', '0'),
(48, 'Tim Hortons French Vanilla Cappuccino 454 gram', 4, 31, 'Tim Hortons Cappuccino French Vanilla 454 gram,Just add hot water stir well and enjoy.\n', 'images/products/05bc4_Butter1.jpg', '5.99', '4.49'),
(49, 'Maxwell House White Chocolate Truffle 255 gram', 4, 31, '', 'images/products/f52eb_Butter1.jpg', '5.49', '0'),
(50, 'Maxwell House Original Roast 150 gram', 4, 31, '', 'images/products/f6edd_Butter1.jpg', '3.29', '0'),
(51, 'Tim Hortons English Toffee Cappuccino 454 gram', 4, 31, '', 'images/products/84368_Butter1.jpg', '5.49', '3.99'),
(52, 'Stash Premium Herbal Tea Wild Rasberry 28 x 38 gram', 4, 32, '', 'images/products/034c6_Butter1.jpg', '3.27', '0'),
(53, 'Tetly Premium Earl Grey Tea 24 x 48 gram', 4, 32, '', 'images/products/ee459_Butter1.jpg', '2.99', '0'),
(54, 'Tetly Premium Strawberry Tea 24 x 48 gram', 4, 32, '', 'images/products/95e6b_Butter1.jpg', '3.49', '0'),
(55, 'Red Rose Orange Pekeo Tea 113 gram', 4, 32, '', 'images/products/07491_Butter1.jpg', '3.49', '0'),
(56, 'Lipton Orange Pekoe Tea 200 gram', 4, 32, '', 'images/products/d9165_Butter1.jpg', '3.99', '0'),
(57, 'Compliments English Breakfast Tea 227 gram', 4, 32, 'Made with two select grades of the best tea leaves from Kenya and Ceylon, 72 two cup bags per box', 'images/products/fd06f_Butter1.jpg', '2.49', '0'),
(58, 'Compliments Peach Melba Herbal Tea', 4, 32, '', 'images/products/34d38_Butter1.jpg', '2.49', '1.99'),
(59, 'Simply Natural Organic Dijon Mustard 250 ml', 1, 2, 'Ingredients: Organic apple cider vinegar,organic mustard seed,white wine,salt and organic spices.\n', 'images/products/54d95_a.jpg', '3.59', '0'),
(60, 'Simply Natural Organic Mustard Stone Ground 250 ml', 1, 2, 'Ingredients: Organic cider vinegar,organic mustard seed,salt and organic spices.\n', 'images/products/1e3d4_a.jpg', '3.49', '0'),
(61, 'Simply Natural Organic Yellow Prepared Mustard 250 ml', 1, 2, 'Ingredients: Organic apple cider vinegar,organic mustard seed,,salt,organic tumeric and organic spices.', 'images/products/126ca_a.jpg', '3.49', '0'),
(62, 'French''s Prepared Mustard Squeeze 400 ml', 1, 2, '', 'images/products/20e97_a.jpg', '2.29', '0'),
(63, 'Frenchs Bold n'' Spicy Deli Mustard Squeeze 325 ml', 1, 2, '', 'images/products/e0fd4_a.jpg', '2.69', '0'),
(64, 'Compliments Prepared Mustard 500ml', 1, 2, '', 'images/products/3d335_a.jpg', '1.69', '0'),
(65, 'Maille Dijon Mustard Original 175 ml', 1, 2, '', 'images/products/4f128_a.jpg', '3.19', '0'),
(66, 'Maille Dijon Mustard "Extra Hot" 75 ml', 1, 2, '', 'images/products/1d31c_a.jpg', '3.19', '0'),
(67, 'Cascadian Farm Organic Sweet Relish 375 ml', 1, 34, '', 'images/products/20fbd_a.jpg', '4.99', '0'),
(68, 'Bick''s Tangy Dill Relish 375 ml', 1, 34, '', 'images/products/76148_a.jpg', '2.69', '0'),
(69, 'Compliments Sweet Green Relish 500ml', 1, 34, '', 'images/products/4a6ab_a.jpg', '1.69', '0'),
(70, 'Bick''s Sweet Green Relish 500 ml', 1, 34, '', 'images/products/824df_a.jpg', '3.39', '0'),
(71, 'Compliments Tomato Ketchup 1.5 litre', 1, 1, '', 'images/products/3ece0_a.jpg', '3.99', '0'),
(72, 'Heinz Tomato Ketchup New Easy Squeeze 750 ml', 1, 1, 'Heinz Tomato Ketchup New Easy Squeeze 750 ml, No wait, No mess', 'images/products/b3824_a.jpg', '3.99', '0'),
(73, 'Heinz Organic Tomato Ketchup 575 ml', 1, 1, 'Enjoy New Heinz Organic Ketchup, authentic Heinz Ketchup made from vine-riened 100% certified organic tomatoes. Heinz undergoes a careful process which prohibits the use of artificial fertilizers, herbicides and pesticides to produce a natural organic ketchup', 'images/products/89bf4_a.jpg', '3.99', '0'),
(74, 'Compliments Asparagus Cuts 341 ml', 12, 11, '', 'images/products/fb233_a.jpg', '3.29', '0'),
(75, 'Bick`s Pickled Baby Beets Sliced 500 ml', 12, 11, '', 'images/products/cd1eb_a.jpg', '3.69', '0'),
(76, 'Compliments Queen Olives 375 ml', 12, 11, '', 'images/products/c4cdc_a.jpg', '2.49', '0'),
(77, 'Compliments Stuffed Manzanilla Olives 375 ml', 12, 11, 'Stuffed with pimento paste', 'images/products/e32ba_a.jpg', '2.49', '0'),
(78, 'Compliments Sliced Green Olives 375 ml', 12, 11, '', 'images/products/85ac5_a.jpg', '2.29', '0'),
(79, 'McLaren''s manzanilla olive 375 ml', 12, 11, '', 'images/products/7c735_a.jpg', '3.19', '0'),
(80, 'Compliments Garlic Dill Pickles 1 litre', 1, 35, '', 'images/products/e6b00_a.jpg', '2.99', '2.49'),
(81, 'Compliments Baby Dill Pickles 1 litre', 1, 35, '', 'images/products/2ff32_a.jpg', '2.99', '2.49'),
(82, 'Compliments Organic Bread & Butter Pickels 750 ml', 1, 35, '', 'images/products/33567_a.jpg', '3.99', '3.29'),
(83, 'Bick''s Sweet Mustard Pickle 500 ml', 1, 35, '', 'images/products/ef9f7_a.jpg', '4.29', '3.59'),
(84, 'Bick''s Sweet Mixed Pickles 500 ml', 1, 35, '', 'images/products/b23d9_a.jpg', '3.49', '0'),
(85, 'Bick''s Sandwich Savers Extra Garlic 500 ml', 1, 35, '', 'images/products/25db6_a.jpg', '3.59', '0'),
(86, 'Compliments Sweet Gerkins 375 ml', 1, 35, '', 'images/products/344d2_a.jpg', '2.29', '0'),
(87, 'Compliments Pickled Hot Peppers Rings 750 ml', 1, 35, '', 'images/products/d686b_a.jpg', '2.69', '0'),
(88, 'Compliments Sweet Mixed Pickles 1 litre', 1, 35, '', 'images/products/573c8_a.jpg', '2.99', '2.49'),
(89, 'McLaren''s Sweet Gherkins Pickles 375 ml', 1, 35, '', 'images/products/0881d_a.jpg', '3.19', '0'),
(90, 'Vlasic Zesty Dills 1 L', 1, 35, '', 'images/products/618cd_a.jpg', '4.49', '0'),
(91, 'Vlasic Stackers Bread & Butter Pickles 500 ml', 1, 35, '', 'images/products/76362_a.jpg', '3.59', '0'),
(92, 'Vlasic Ovals Hamburger Dill Chips 500 ml', 1, 35, '', 'images/products/d4062_a.jpg', '3.49', '0'),