drop table if exists stocks; create table stocks ( id INT NOT NULL, showroom_id INT, product_id INT, quantity INT, stock_date DATE, update_date TIMESTAMP NOT NULL ON UPDATE CURRENT_TIMESTAMP, create_date TIMESTAMP NOT NULL ); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (1, 14, 915, 7, '2018-01-17 21:27:20', '2018-01-17', '2018-01-17 21:27:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (2, 2, 948, 10, '2018-01-13 11:03:46', '2018-01-13', '2018-01-13 11:03:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (3, 8, 262, 10, '2018-01-07 18:38:38', '2018-01-07', '2018-01-07 18:38:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (4, 3, 582, 6, '2018-01-16 11:55:43', '2018-01-16', '2018-01-16 11:55:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (5, 15, 307, 9, '2018-01-24 19:36:45', '2018-01-24', '2018-01-24 19:36:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (6, 1, 823, 10, '2018-01-21 05:30:40', '2018-01-21', '2018-01-21 05:30:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (7, 9, 43, 8, '2018-01-05 01:30:39', '2018-01-05', '2018-01-05 01:30:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (8, 3, 467, 10, '2018-01-07 11:22:16', '2018-01-07', '2018-01-07 11:22:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (9, 6, 706, 1, '2018-01-06 15:50:38', '2018-01-06', '2018-01-06 15:50:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (10, 4, 703, 9, '2018-01-09 15:22:31', '2018-01-09', '2018-01-09 15:22:31'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (11, 5, 462, 9, '2018-01-21 20:08:59', '2018-01-21', '2018-01-21 20:08:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (12, 3, 31, 10, '2018-01-02 21:43:32', '2018-01-02', '2018-01-02 21:43:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (13, 4, 35, 14, '2018-01-02 22:23:21', '2018-01-02', '2018-01-02 22:23:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (14, 1, 63, 6, '2018-01-23 05:58:09', '2018-01-23', '2018-01-23 05:58:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (15, 13, 268, 15, '2018-01-14 06:13:42', '2018-01-14', '2018-01-14 06:13:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (16, 11, 101, 16, '2018-01-07 18:34:59', '2018-01-07', '2018-01-07 18:34:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (17, 5, 143, 10, '2018-01-18 15:08:46', '2018-01-18', '2018-01-18 15:08:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (18, 13, 329, 15, '2018-01-26 17:28:55', '2018-01-26', '2018-01-26 17:28:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (19, 12, 182, 12, '2018-01-21 10:14:45', '2018-01-21', '2018-01-21 10:14:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (20, 5, 400, 13, '2018-01-03 05:15:32', '2018-01-03', '2018-01-03 05:15:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (21, 3, 924, 10, '2018-01-12 15:49:04', '2018-01-12', '2018-01-12 15:49:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (22, 9, 137, 16, '2018-01-15 09:37:06', '2018-01-15', '2018-01-15 09:37:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (23, 14, 336, 16, '2018-01-23 21:49:20', '2018-01-23', '2018-01-23 21:49:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (24, 7, 578, 16, '2018-01-23 19:44:30', '2018-01-23', '2018-01-23 19:44:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (25, 12, 557, 8, '2018-01-05 11:14:30', '2018-01-05', '2018-01-05 11:14:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (26, 9, 59, 13, '2018-01-25 11:27:21', '2018-01-25', '2018-01-25 11:27:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (27, 11, 203, 6, '2018-01-12 11:32:41', '2018-01-12', '2018-01-12 11:32:41'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (28, 6, 264, 8, '2018-01-03 05:25:28', '2018-01-03', '2018-01-03 05:25:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (29, 4, 361, 11, '2018-01-25 19:44:47', '2018-01-25', '2018-01-25 19:44:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (30, 7, 668, 8, '2018-01-17 08:54:13', '2018-01-17', '2018-01-17 08:54:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (31, 13, 801, 14, '2018-01-24 16:55:46', '2018-01-24', '2018-01-24 16:55:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (32, 3, 855, 6, '2018-01-10 15:44:42', '2018-01-10', '2018-01-10 15:44:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (33, 1, 704, 13, '2018-01-18 02:18:45', '2018-01-18', '2018-01-18 02:18:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (34, 3, 364, 11, '2018-01-30 17:04:47', '2018-01-30', '2018-01-30 17:04:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (35, 2, 310, 8, '2018-01-29 20:40:54', '2018-01-29', '2018-01-29 20:40:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (36, 8, 215, 12, '2018-01-20 08:35:25', '2018-01-20', '2018-01-20 08:35:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (37, 13, 281, 11, '2018-01-20 19:19:18', '2018-01-20', '2018-01-20 19:19:18'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (38, 14, 519, 11, '2018-01-21 20:08:27', '2018-01-21', '2018-01-21 20:08:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (39, 15, 475, 8, '2018-01-09 00:31:25', '2018-01-09', '2018-01-09 00:31:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (40, 10, 28, 10, '2018-01-06 13:29:59', '2018-01-06', '2018-01-06 13:29:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (41, 14, 160, 10, '2018-01-29 17:42:21', '2018-01-29', '2018-01-29 17:42:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (42, 6, 189, 14, '2018-01-25 00:24:50', '2018-01-25', '2018-01-25 00:24:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (43, 8, 203, 15, '2018-01-15 12:30:00', '2018-01-15', '2018-01-15 12:30:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (44, 15, 592, 12, '2018-01-17 01:25:54', '2018-01-17', '2018-01-17 01:25:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (45, 7, 186, 8, '2018-01-11 22:56:07', '2018-01-11', '2018-01-11 22:56:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (46, 9, 216, 15, '2018-01-02 23:05:48', '2018-01-02', '2018-01-02 23:05:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (47, 3, 939, 12, '2018-01-08 13:14:45', '2018-01-08', '2018-01-08 13:14:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (48, 14, 305, 14, '2018-01-19 10:11:57', '2018-01-19', '2018-01-19 10:11:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (49, 10, 951, 12, '2018-01-01 09:21:10', '2018-01-01', '2018-01-01 09:21:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (50, 11, 960, 14, '2018-01-03 21:49:14', '2018-01-03', '2018-01-03 21:49:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (51, 6, 805, 9, '2018-01-12 00:36:32', '2018-01-12', '2018-01-12 00:36:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (52, 15, 8, 11, '2018-01-16 01:02:50', '2018-01-16', '2018-01-16 01:02:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (53, 3, 724, 10, '2018-01-14 21:29:03', '2018-01-14', '2018-01-14 21:29:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (54, 7, 359, 12, '2018-01-16 16:06:40', '2018-01-16', '2018-01-16 16:06:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (55, 13, 928, 8, '2018-01-05 23:32:35', '2018-01-05', '2018-01-05 23:32:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (56, 13, 347, 11, '2018-01-07 16:14:19', '2018-01-07', '2018-01-07 16:14:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (57, 11, 474, 8, '2018-01-25 06:43:20', '2018-01-25', '2018-01-25 06:43:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (58, 5, 981, 10, '2018-01-04 14:01:16', '2018-01-04', '2018-01-04 14:01:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (59, 7, 286, 13, '2018-01-12 00:00:16', '2018-01-12', '2018-01-12 00:00:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (60, 3, 324, 11, '2018-01-13 07:22:56', '2018-01-13', '2018-01-13 07:22:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (61, 4, 809, 14, '2018-01-27 10:33:38', '2018-01-27', '2018-01-27 10:33:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (62, 10, 649, 12, '2018-01-07 02:28:43', '2018-01-07', '2018-01-07 02:28:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (63, 8, 780, 14, '2018-01-26 09:08:04', '2018-01-26', '2018-01-26 09:08:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (64, 3, 896, 13, '2018-01-13 11:43:39', '2018-01-13', '2018-01-13 11:43:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (65, 14, 174, 16, '2018-01-08 14:08:04', '2018-01-08', '2018-01-08 14:08:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (66, 15, 52, 11, '2018-01-15 14:02:57', '2018-01-15', '2018-01-15 14:02:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (67, 4, 407, 7, '2018-01-04 00:44:31', '2018-01-04', '2018-01-04 00:44:31'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (68, 4, 170, 13, '2018-01-11 08:55:50', '2018-01-11', '2018-01-11 08:55:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (69, 10, 421, 7, '2018-01-24 15:52:57', '2018-01-24', '2018-01-24 15:52:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (70, 7, 445, 11, '2018-01-26 02:49:34', '2018-01-26', '2018-01-26 02:49:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (71, 11, 739, 12, '2018-01-30 00:59:34', '2018-01-30', '2018-01-30 00:59:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (72, 1, 754, 8, '2018-01-25 09:59:28', '2018-01-25', '2018-01-25 09:59:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (73, 6, 64, 11, '2018-01-15 05:58:29', '2018-01-15', '2018-01-15 05:58:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (74, 5, 87, 11, '2018-01-06 06:05:05', '2018-01-06', '2018-01-06 06:05:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (75, 11, 861, 11, '2018-01-25 21:46:16', '2018-01-25', '2018-01-25 21:46:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (76, 2, 904, 13, '2018-01-08 16:05:20', '2018-01-08', '2018-01-08 16:05:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (77, 14, 325, 10, '2018-01-22 23:31:15', '2018-01-22', '2018-01-22 23:31:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (78, 6, 929, 13, '2018-01-11 07:25:39', '2018-01-11', '2018-01-11 07:25:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (79, 4, 924, 9, '2018-01-04 05:14:17', '2018-01-04', '2018-01-04 05:14:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (80, 9, 627, 7, '2018-01-30 00:51:33', '2018-01-30', '2018-01-30 00:51:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (81, 5, 773, 6, '2018-01-12 16:43:42', '2018-01-12', '2018-01-12 16:43:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (82, 7, 753, 13, '2018-01-30 13:21:30', '2018-01-30', '2018-01-30 13:21:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (83, 10, 558, 12, '2018-01-26 13:46:32', '2018-01-26', '2018-01-26 13:46:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (84, 14, 26, 11, '2018-01-24 19:57:28', '2018-01-24', '2018-01-24 19:57:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (85, 15, 650, 5, '2018-01-22 20:45:52', '2018-01-22', '2018-01-22 20:45:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (86, 5, 251, 10, '2018-01-20 20:46:59', '2018-01-20', '2018-01-20 20:46:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (87, 8, 833, 6, '2018-01-30 22:23:59', '2018-01-30', '2018-01-30 22:23:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (88, 7, 25, 10, '2018-01-19 23:27:05', '2018-01-19', '2018-01-19 23:27:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (89, 6, 158, 7, '2018-01-24 16:03:23', '2018-01-24', '2018-01-24 16:03:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (90, 3, 151, 11, '2018-01-25 08:23:02', '2018-01-25', '2018-01-25 08:23:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (91, 15, 357, 12, '2018-01-03 00:27:34', '2018-01-03', '2018-01-03 00:27:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (92, 6, 655, 13, '2018-01-13 04:11:07', '2018-01-13', '2018-01-13 04:11:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (93, 13, 273, 11, '2018-01-10 08:36:58', '2018-01-10', '2018-01-10 08:36:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (94, 1, 583, 7, '2018-01-16 00:04:51', '2018-01-16', '2018-01-16 00:04:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (95, 12, 560, 1, '2018-01-20 03:26:37', '2018-01-20', '2018-01-20 03:26:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (96, 7, 970, 12, '2018-01-16 17:13:14', '2018-01-16', '2018-01-16 17:13:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (97, 12, 947, 12, '2018-01-25 00:00:51', '2018-01-25', '2018-01-25 00:00:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (98, 9, 732, 5, '2018-01-20 00:50:30', '2018-01-20', '2018-01-20 00:50:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (99, 1, 855, 6, '2018-01-17 14:42:42', '2018-01-17', '2018-01-17 14:42:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (100, 7, 484, 12, '2018-01-01 15:14:04', '2018-01-01', '2018-01-01 15:14:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (101, 3, 619, 8, '2018-01-12 14:08:35', '2018-01-12', '2018-01-12 14:08:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (102, 13, 14, 14, '2018-01-01 22:37:43', '2018-01-01', '2018-01-01 22:37:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (103, 1, 144, 8, '2018-01-11 22:45:11', '2018-01-11', '2018-01-11 22:45:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (104, 9, 97, 9, '2018-01-25 23:22:16', '2018-01-25', '2018-01-25 23:22:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (105, 5, 238, 11, '2018-01-26 21:59:57', '2018-01-26', '2018-01-26 21:59:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (106, 8, 218, 9, '2018-01-27 15:45:15', '2018-01-27', '2018-01-27 15:45:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (107, 6, 558, 8, '2018-01-19 15:22:05', '2018-01-19', '2018-01-19 15:22:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (108, 12, 987, 12, '2018-01-05 07:01:14', '2018-01-05', '2018-01-05 07:01:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (109, 5, 902, 11, '2018-01-13 08:22:30', '2018-01-13', '2018-01-13 08:22:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (110, 15, 737, 12, '2018-01-23 23:17:06', '2018-01-23', '2018-01-23 23:17:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (111, 7, 572, 14, '2018-01-24 01:21:04', '2018-01-24', '2018-01-24 01:21:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (112, 13, 395, 6, '2018-01-15 10:53:51', '2018-01-15', '2018-01-15 10:53:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (113, 15, 622, 8, '2018-01-22 20:21:01', '2018-01-22', '2018-01-22 20:21:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (114, 6, 206, 3, '2018-01-30 20:12:48', '2018-01-30', '2018-01-30 20:12:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (115, 8, 980, 14, '2018-01-17 20:36:06', '2018-01-17', '2018-01-17 20:36:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (116, 15, 789, 13, '2018-01-03 11:55:35', '2018-01-03', '2018-01-03 11:55:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (117, 3, 221, 8, '2018-01-25 07:41:11', '2018-01-25', '2018-01-25 07:41:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (118, 6, 344, 9, '2018-01-25 02:10:47', '2018-01-25', '2018-01-25 02:10:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (119, 7, 972, 11, '2018-01-14 18:41:50', '2018-01-14', '2018-01-14 18:41:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (120, 2, 250, 13, '2018-01-02 03:27:13', '2018-01-02', '2018-01-02 03:27:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (121, 4, 777, 13, '2018-01-24 10:51:01', '2018-01-24', '2018-01-24 10:51:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (122, 8, 855, 11, '2018-01-12 23:01:47', '2018-01-12', '2018-01-12 23:01:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (123, 7, 294, 9, '2018-01-25 05:11:17', '2018-01-25', '2018-01-25 05:11:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (124, 3, 356, 10, '2018-01-15 03:18:13', '2018-01-15', '2018-01-15 03:18:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (125, 9, 221, 9, '2018-01-06 21:16:08', '2018-01-06', '2018-01-06 21:16:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (126, 8, 430, 9, '2018-01-12 03:17:03', '2018-01-12', '2018-01-12 03:17:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (127, 13, 802, 12, '2018-01-25 17:21:36', '2018-01-25', '2018-01-25 17:21:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (128, 12, 548, 9, '2018-01-07 09:40:47', '2018-01-07', '2018-01-07 09:40:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (129, 4, 390, 10, '2018-01-30 08:23:01', '2018-01-30', '2018-01-30 08:23:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (130, 15, 812, 11, '2018-01-07 22:17:24', '2018-01-07', '2018-01-07 22:17:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (131, 6, 372, 10, '2018-01-16 21:10:04', '2018-01-16', '2018-01-16 21:10:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (132, 4, 172, 16, '2018-01-16 13:57:05', '2018-01-16', '2018-01-16 13:57:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (133, 9, 301, 14, '2018-01-10 21:03:38', '2018-01-10', '2018-01-10 21:03:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (134, 4, 978, 7, '2018-01-02 02:45:51', '2018-01-02', '2018-01-02 02:45:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (135, 2, 667, 12, '2018-01-17 00:00:47', '2018-01-17', '2018-01-17 00:00:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (136, 6, 667, 5, '2018-01-01 11:53:02', '2018-01-01', '2018-01-01 11:53:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (137, 3, 150, 7, '2018-01-12 22:33:39', '2018-01-12', '2018-01-12 22:33:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (138, 13, 286, 7, '2018-01-08 14:38:33', '2018-01-08', '2018-01-08 14:38:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (139, 12, 765, 8, '2018-01-02 21:01:52', '2018-01-02', '2018-01-02 21:01:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (140, 9, 922, 9, '2018-01-25 13:04:18', '2018-01-25', '2018-01-25 13:04:18'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (141, 3, 952, 15, '2018-01-18 05:09:32', '2018-01-18', '2018-01-18 05:09:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (142, 4, 154, 12, '2018-01-05 12:21:12', '2018-01-05', '2018-01-05 12:21:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (143, 5, 454, 7, '2018-01-05 23:29:13', '2018-01-05', '2018-01-05 23:29:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (144, 5, 58, 9, '2018-01-28 07:19:29', '2018-01-28', '2018-01-28 07:19:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (145, 4, 872, 9, '2018-01-02 03:21:58', '2018-01-02', '2018-01-02 03:21:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (146, 14, 829, 13, '2018-01-09 13:13:21', '2018-01-09', '2018-01-09 13:13:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (147, 14, 328, 12, '2018-01-27 15:06:30', '2018-01-27', '2018-01-27 15:06:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (148, 15, 14, 7, '2018-01-30 23:31:53', '2018-01-30', '2018-01-30 23:31:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (149, 3, 289, 13, '2018-01-02 20:19:06', '2018-01-02', '2018-01-02 20:19:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (150, 9, 291, 11, '2018-01-12 01:11:25', '2018-01-12', '2018-01-12 01:11:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (151, 14, 187, 12, '2018-01-19 21:23:39', '2018-01-19', '2018-01-19 21:23:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (152, 5, 696, 8, '2018-01-08 16:13:10', '2018-01-08', '2018-01-08 16:13:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (153, 5, 708, 11, '2018-01-17 08:28:14', '2018-01-17', '2018-01-17 08:28:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (154, 8, 182, 14, '2018-01-15 19:34:09', '2018-01-15', '2018-01-15 19:34:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (155, 11, 701, 9, '2018-01-20 21:05:43', '2018-01-20', '2018-01-20 21:05:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (156, 3, 956, 15, '2018-01-08 01:52:36', '2018-01-08', '2018-01-08 01:52:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (157, 15, 228, 7, '2018-01-04 00:29:31', '2018-01-04', '2018-01-04 00:29:31'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (158, 14, 903, 10, '2018-01-28 15:56:30', '2018-01-28', '2018-01-28 15:56:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (159, 5, 158, 10, '2018-01-17 19:07:16', '2018-01-17', '2018-01-17 19:07:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (160, 13, 205, 4, '2018-01-05 05:29:48', '2018-01-05', '2018-01-05 05:29:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (161, 12, 924, 8, '2018-01-28 04:57:13', '2018-01-28', '2018-01-28 04:57:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (162, 2, 49, 7, '2018-01-08 18:41:32', '2018-01-08', '2018-01-08 18:41:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (163, 1, 401, 7, '2018-01-29 08:24:25', '2018-01-29', '2018-01-29 08:24:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (164, 5, 543, 12, '2018-01-29 00:35:54', '2018-01-29', '2018-01-29 00:35:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (165, 6, 205, 14, '2018-01-04 19:30:24', '2018-01-04', '2018-01-04 19:30:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (166, 14, 98, 8, '2018-01-18 06:33:47', '2018-01-18', '2018-01-18 06:33:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (167, 5, 294, 11, '2018-01-22 00:21:15', '2018-01-22', '2018-01-22 00:21:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (168, 11, 526, 13, '2018-01-17 11:59:01', '2018-01-17', '2018-01-17 11:59:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (169, 10, 165, 11, '2018-01-08 11:12:22', '2018-01-08', '2018-01-08 11:12:22'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (170, 1, 110, 16, '2018-01-23 23:22:31', '2018-01-23', '2018-01-23 23:22:31'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (171, 2, 976, 11, '2018-01-11 19:38:19', '2018-01-11', '2018-01-11 19:38:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (172, 2, 7, 10, '2018-01-16 16:17:20', '2018-01-16', '2018-01-16 16:17:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (173, 13, 183, 15, '2018-01-30 11:03:09', '2018-01-30', '2018-01-30 11:03:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (174, 5, 140, 13, '2018-01-30 10:08:46', '2018-01-30', '2018-01-30 10:08:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (175, 5, 308, 6, '2018-01-18 19:16:11', '2018-01-18', '2018-01-18 19:16:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (176, 2, 824, 10, '2018-01-30 04:49:20', '2018-01-30', '2018-01-30 04:49:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (177, 14, 312, 14, '2018-01-01 08:01:53', '2018-01-01', '2018-01-01 08:01:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (178, 4, 224, 12, '2018-01-01 10:25:27', '2018-01-01', '2018-01-01 10:25:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (179, 12, 650, 12, '2018-01-18 13:20:58', '2018-01-18', '2018-01-18 13:20:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (180, 7, 864, 8, '2018-01-02 07:47:25', '2018-01-02', '2018-01-02 07:47:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (181, 7, 401, 7, '2018-01-29 21:45:47', '2018-01-29', '2018-01-29 21:45:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (182, 3, 124, 11, '2018-01-03 05:36:14', '2018-01-03', '2018-01-03 05:36:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (183, 10, 251, 7, '2018-01-27 05:08:56', '2018-01-27', '2018-01-27 05:08:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (184, 9, 726, 9, '2018-01-12 10:28:32', '2018-01-12', '2018-01-12 10:28:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (185, 9, 788, 13, '2018-01-08 22:55:19', '2018-01-08', '2018-01-08 22:55:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (186, 9, 855, 10, '2018-01-23 17:13:07', '2018-01-23', '2018-01-23 17:13:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (187, 9, 773, 12, '2018-01-14 17:54:50', '2018-01-14', '2018-01-14 17:54:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (188, 3, 53, 7, '2018-01-24 08:34:33', '2018-01-24', '2018-01-24 08:34:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (189, 9, 916, 10, '2018-01-16 10:36:46', '2018-01-16', '2018-01-16 10:36:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (190, 3, 209, 8, '2018-01-15 21:18:16', '2018-01-15', '2018-01-15 21:18:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (191, 11, 443, 8, '2018-01-25 23:33:08', '2018-01-25', '2018-01-25 23:33:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (192, 2, 540, 11, '2018-01-30 04:09:27', '2018-01-30', '2018-01-30 04:09:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (193, 15, 965, 9, '2018-01-16 04:32:32', '2018-01-16', '2018-01-16 04:32:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (194, 13, 676, 9, '2018-01-10 21:22:00', '2018-01-10', '2018-01-10 21:22:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (195, 4, 275, 5, '2018-01-29 03:32:37', '2018-01-29', '2018-01-29 03:32:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (196, 4, 914, 12, '2018-01-21 23:29:49', '2018-01-21', '2018-01-21 23:29:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (197, 3, 174, 14, '2018-01-30 06:47:57', '2018-01-30', '2018-01-30 06:47:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (198, 4, 452, 14, '2018-01-16 14:37:21', '2018-01-16', '2018-01-16 14:37:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (199, 6, 876, 10, '2018-01-01 21:28:50', '2018-01-01', '2018-01-01 21:28:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (200, 15, 348, 14, '2018-01-17 07:11:47', '2018-01-17', '2018-01-17 07:11:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (201, 3, 562, 3, '2018-01-09 19:58:58', '2018-01-09', '2018-01-09 19:58:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (202, 5, 32, 11, '2018-01-19 12:06:51', '2018-01-19', '2018-01-19 12:06:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (203, 3, 300, 8, '2018-01-27 15:54:53', '2018-01-27', '2018-01-27 15:54:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (204, 6, 1000, 8, '2018-01-17 03:03:33', '2018-01-17', '2018-01-17 03:03:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (205, 10, 993, 10, '2018-01-25 16:13:40', '2018-01-25', '2018-01-25 16:13:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (206, 15, 173, 11, '2018-01-02 18:08:18', '2018-01-02', '2018-01-02 18:08:18'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (207, 7, 227, 10, '2018-01-24 14:14:05', '2018-01-24', '2018-01-24 14:14:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (208, 10, 964, 10, '2018-01-17 11:09:14', '2018-01-17', '2018-01-17 11:09:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (209, 5, 467, 16, '2018-01-08 03:02:52', '2018-01-08', '2018-01-08 03:02:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (210, 11, 483, 4, '2018-01-26 12:59:11', '2018-01-26', '2018-01-26 12:59:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (211, 14, 473, 9, '2018-01-14 15:55:10', '2018-01-14', '2018-01-14 15:55:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (212, 1, 831, 13, '2018-01-14 04:29:22', '2018-01-14', '2018-01-14 04:29:22'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (213, 6, 628, 9, '2018-01-09 18:24:55', '2018-01-09', '2018-01-09 18:24:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (214, 4, 189, 7, '2018-01-29 05:39:08', '2018-01-29', '2018-01-29 05:39:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (215, 2, 939, 10, '2018-01-10 02:21:55', '2018-01-10', '2018-01-10 02:21:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (216, 4, 175, 7, '2018-01-27 07:55:22', '2018-01-27', '2018-01-27 07:55:22'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (217, 3, 407, 12, '2018-01-27 00:22:08', '2018-01-27', '2018-01-27 00:22:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (218, 5, 476, 7, '2018-01-13 22:15:10', '2018-01-13', '2018-01-13 22:15:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (219, 1, 608, 10, '2018-01-16 17:24:56', '2018-01-16', '2018-01-16 17:24:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (220, 14, 535, 14, '2018-01-06 00:52:49', '2018-01-06', '2018-01-06 00:52:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (221, 6, 747, 11, '2018-01-16 15:55:04', '2018-01-16', '2018-01-16 15:55:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (222, 15, 984, 12, '2018-01-30 01:13:26', '2018-01-30', '2018-01-30 01:13:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (223, 6, 778, 11, '2018-01-24 22:54:59', '2018-01-24', '2018-01-24 22:54:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (224, 3, 229, 8, '2018-01-12 16:16:56', '2018-01-12', '2018-01-12 16:16:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (225, 8, 290, 9, '2018-01-15 03:03:00', '2018-01-15', '2018-01-15 03:03:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (226, 7, 993, 8, '2018-01-02 01:26:53', '2018-01-02', '2018-01-02 01:26:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (227, 6, 85, 11, '2018-01-07 06:15:10', '2018-01-07', '2018-01-07 06:15:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (228, 13, 702, 8, '2018-01-28 08:48:06', '2018-01-28', '2018-01-28 08:48:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (229, 15, 740, 12, '2018-01-25 23:57:51', '2018-01-25', '2018-01-25 23:57:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (230, 12, 339, 8, '2018-01-25 10:35:07', '2018-01-25', '2018-01-25 10:35:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (231, 3, 574, 7, '2018-01-08 17:49:01', '2018-01-08', '2018-01-08 17:49:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (232, 9, 179, 4, '2018-01-18 07:03:14', '2018-01-18', '2018-01-18 07:03:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (233, 13, 536, 11, '2018-01-07 10:30:50', '2018-01-07', '2018-01-07 10:30:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (234, 9, 532, 4, '2018-01-05 10:44:13', '2018-01-05', '2018-01-05 10:44:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (235, 12, 775, 8, '2018-01-24 08:54:24', '2018-01-24', '2018-01-24 08:54:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (236, 11, 920, 14, '2018-01-11 03:39:17', '2018-01-11', '2018-01-11 03:39:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (237, 14, 836, 15, '2018-01-10 22:37:37', '2018-01-10', '2018-01-10 22:37:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (238, 15, 819, 13, '2018-01-06 03:19:24', '2018-01-06', '2018-01-06 03:19:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (239, 12, 181, 6, '2018-01-19 07:32:14', '2018-01-19', '2018-01-19 07:32:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (240, 8, 401, 4, '2018-01-28 03:53:48', '2018-01-28', '2018-01-28 03:53:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (241, 4, 248, 12, '2018-01-01 00:55:50', '2018-01-01', '2018-01-01 00:55:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (242, 9, 642, 11, '2018-01-17 13:54:55', '2018-01-17', '2018-01-17 13:54:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (243, 7, 175, 12, '2018-01-15 17:30:54', '2018-01-15', '2018-01-15 17:30:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (244, 9, 721, 10, '2018-01-26 22:36:01', '2018-01-26', '2018-01-26 22:36:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (245, 5, 813, 8, '2018-01-07 01:08:16', '2018-01-07', '2018-01-07 01:08:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (246, 4, 855, 9, '2018-01-24 15:57:27', '2018-01-24', '2018-01-24 15:57:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (247, 15, 553, 11, '2018-01-11 18:36:53', '2018-01-11', '2018-01-11 18:36:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (248, 11, 481, 7, '2018-01-17 11:45:25', '2018-01-17', '2018-01-17 11:45:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (249, 2, 231, 11, '2018-01-11 20:07:57', '2018-01-11', '2018-01-11 20:07:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (250, 7, 124, 16, '2018-01-04 01:35:37', '2018-01-04', '2018-01-04 01:35:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (251, 7, 239, 8, '2018-01-25 20:30:35', '2018-01-25', '2018-01-25 20:30:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (252, 14, 811, 15, '2018-01-24 16:44:29', '2018-01-24', '2018-01-24 16:44:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (253, 4, 806, 8, '2018-01-01 13:29:13', '2018-01-01', '2018-01-01 13:29:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (254, 10, 712, 10, '2018-01-17 23:25:28', '2018-01-17', '2018-01-17 23:25:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (255, 7, 462, 10, '2018-01-14 22:18:31', '2018-01-14', '2018-01-14 22:18:31'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (256, 12, 287, 12, '2018-01-02 07:45:48', '2018-01-02', '2018-01-02 07:45:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (257, 5, 43, 10, '2018-01-26 00:43:46', '2018-01-26', '2018-01-26 00:43:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (258, 12, 271, 12, '2018-01-16 15:46:28', '2018-01-16', '2018-01-16 15:46:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (259, 5, 532, 8, '2018-01-20 13:08:53', '2018-01-20', '2018-01-20 13:08:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (260, 2, 875, 12, '2018-01-02 23:54:47', '2018-01-02', '2018-01-02 23:54:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (261, 10, 433, 8, '2018-01-17 16:48:42', '2018-01-17', '2018-01-17 16:48:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (262, 12, 80, 13, '2018-01-15 01:05:21', '2018-01-15', '2018-01-15 01:05:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (263, 3, 148, 12, '2018-01-13 14:09:55', '2018-01-13', '2018-01-13 14:09:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (264, 8, 377, 12, '2018-01-08 05:35:44', '2018-01-08', '2018-01-08 05:35:44'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (265, 13, 865, 11, '2018-01-19 21:49:12', '2018-01-19', '2018-01-19 21:49:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (266, 5, 194, 13, '2018-01-01 10:51:03', '2018-01-01', '2018-01-01 10:51:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (267, 6, 523, 12, '2018-01-09 07:02:11', '2018-01-09', '2018-01-09 07:02:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (268, 15, 8, 7, '2018-01-13 08:41:09', '2018-01-13', '2018-01-13 08:41:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (269, 10, 528, 17, '2018-01-16 01:51:50', '2018-01-16', '2018-01-16 01:51:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (270, 8, 573, 10, '2018-01-16 07:29:30', '2018-01-16', '2018-01-16 07:29:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (271, 10, 953, 10, '2018-01-04 08:45:32', '2018-01-04', '2018-01-04 08:45:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (272, 6, 816, 7, '2018-01-23 11:31:34', '2018-01-23', '2018-01-23 11:31:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (273, 8, 39, 7, '2018-01-03 16:07:56', '2018-01-03', '2018-01-03 16:07:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (274, 11, 290, 8, '2018-01-04 19:27:57', '2018-01-04', '2018-01-04 19:27:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (275, 5, 163, 3, '2018-01-05 03:13:51', '2018-01-05', '2018-01-05 03:13:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (276, 13, 34, 7, '2018-01-29 19:23:36', '2018-01-29', '2018-01-29 19:23:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (277, 11, 799, 10, '2018-01-23 15:11:43', '2018-01-23', '2018-01-23 15:11:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (278, 11, 74, 15, '2018-01-13 04:04:11', '2018-01-13', '2018-01-13 04:04:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (279, 2, 89, 11, '2018-01-12 21:17:20', '2018-01-12', '2018-01-12 21:17:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (280, 9, 715, 7, '2018-01-03 23:31:41', '2018-01-03', '2018-01-03 23:31:41'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (281, 9, 73, 8, '2018-01-05 18:02:16', '2018-01-05', '2018-01-05 18:02:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (282, 3, 92, 15, '2018-01-09 11:23:06', '2018-01-09', '2018-01-09 11:23:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (283, 13, 790, 11, '2018-01-14 08:53:25', '2018-01-14', '2018-01-14 08:53:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (284, 3, 155, 10, '2018-01-10 16:15:42', '2018-01-10', '2018-01-10 16:15:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (285, 2, 122, 10, '2018-01-17 20:24:17', '2018-01-17', '2018-01-17 20:24:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (286, 6, 591, 10, '2018-01-19 21:34:56', '2018-01-19', '2018-01-19 21:34:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (287, 8, 65, 6, '2018-01-27 14:19:39', '2018-01-27', '2018-01-27 14:19:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (288, 12, 879, 14, '2018-01-09 12:19:25', '2018-01-09', '2018-01-09 12:19:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (289, 15, 314, 5, '2018-01-21 00:10:09', '2018-01-21', '2018-01-21 00:10:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (290, 15, 720, 12, '2018-01-11 18:49:08', '2018-01-11', '2018-01-11 18:49:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (291, 6, 416, 3, '2018-01-17 07:14:36', '2018-01-17', '2018-01-17 07:14:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (292, 1, 457, 14, '2018-01-27 11:16:06', '2018-01-27', '2018-01-27 11:16:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (293, 7, 715, 14, '2018-01-06 10:44:47', '2018-01-06', '2018-01-06 10:44:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (294, 12, 22, 6, '2018-01-28 14:43:07', '2018-01-28', '2018-01-28 14:43:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (295, 8, 444, 14, '2018-01-05 21:20:39', '2018-01-05', '2018-01-05 21:20:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (296, 7, 393, 11, '2018-01-25 00:43:01', '2018-01-25', '2018-01-25 00:43:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (297, 13, 742, 3, '2018-01-11 07:03:23', '2018-01-11', '2018-01-11 07:03:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (298, 10, 247, 8, '2018-01-01 15:50:21', '2018-01-01', '2018-01-01 15:50:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (299, 8, 199, 16, '2018-01-14 08:57:43', '2018-01-14', '2018-01-14 08:57:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (300, 14, 120, 12, '2018-01-12 13:28:14', '2018-01-12', '2018-01-12 13:28:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (301, 10, 41, 12, '2018-01-05 01:32:36', '2018-01-05', '2018-01-05 01:32:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (302, 7, 661, 10, '2018-01-05 07:37:46', '2018-01-05', '2018-01-05 07:37:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (303, 12, 948, 11, '2018-01-01 04:38:51', '2018-01-01', '2018-01-01 04:38:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (304, 11, 121, 11, '2018-01-01 20:07:07', '2018-01-01', '2018-01-01 20:07:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (305, 4, 721, 3, '2018-01-25 22:11:55', '2018-01-25', '2018-01-25 22:11:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (306, 2, 181, 12, '2018-01-13 10:40:21', '2018-01-13', '2018-01-13 10:40:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (307, 7, 312, 9, '2018-01-27 17:45:52', '2018-01-27', '2018-01-27 17:45:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (308, 12, 798, 9, '2018-01-30 01:59:39', '2018-01-30', '2018-01-30 01:59:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (309, 11, 404, 13, '2018-01-12 05:28:53', '2018-01-12', '2018-01-12 05:28:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (310, 14, 280, 13, '2018-01-10 14:08:35', '2018-01-10', '2018-01-10 14:08:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (311, 15, 853, 12, '2018-01-19 03:46:42', '2018-01-19', '2018-01-19 03:46:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (312, 12, 735, 14, '2018-01-08 19:45:15', '2018-01-08', '2018-01-08 19:45:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (313, 7, 512, 9, '2018-01-12 19:50:13', '2018-01-12', '2018-01-12 19:50:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (314, 5, 337, 15, '2018-01-08 05:54:55', '2018-01-08', '2018-01-08 05:54:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (315, 2, 57, 6, '2018-01-28 14:54:37', '2018-01-28', '2018-01-28 14:54:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (316, 3, 48, 10, '2018-01-30 05:40:06', '2018-01-30', '2018-01-30 05:40:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (317, 11, 547, 10, '2018-01-03 21:16:01', '2018-01-03', '2018-01-03 21:16:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (318, 4, 807, 8, '2018-01-08 18:37:34', '2018-01-08', '2018-01-08 18:37:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (319, 7, 630, 13, '2018-01-30 07:37:32', '2018-01-30', '2018-01-30 07:37:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (320, 5, 524, 15, '2018-01-06 04:12:06', '2018-01-06', '2018-01-06 04:12:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (321, 3, 691, 9, '2018-01-18 04:26:48', '2018-01-18', '2018-01-18 04:26:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (322, 5, 706, 12, '2018-01-04 12:07:36', '2018-01-04', '2018-01-04 12:07:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (323, 13, 475, 10, '2018-01-12 11:02:42', '2018-01-12', '2018-01-12 11:02:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (324, 8, 233, 16, '2018-01-20 00:29:45', '2018-01-20', '2018-01-20 00:29:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (325, 7, 300, 12, '2018-01-30 22:22:49', '2018-01-30', '2018-01-30 22:22:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (326, 6, 343, 11, '2018-01-03 08:19:08', '2018-01-03', '2018-01-03 08:19:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (327, 14, 515, 14, '2018-01-27 18:11:48', '2018-01-27', '2018-01-27 18:11:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (328, 11, 268, 6, '2018-01-24 21:38:51', '2018-01-24', '2018-01-24 21:38:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (329, 13, 766, 14, '2018-01-09 19:21:19', '2018-01-09', '2018-01-09 19:21:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (330, 6, 414, 9, '2018-01-03 00:22:56', '2018-01-03', '2018-01-03 00:22:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (331, 7, 985, 6, '2018-01-09 03:55:08', '2018-01-09', '2018-01-09 03:55:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (332, 15, 866, 5, '2018-01-30 08:55:37', '2018-01-30', '2018-01-30 08:55:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (333, 1, 942, 9, '2018-01-09 15:37:52', '2018-01-09', '2018-01-09 15:37:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (334, 10, 988, 8, '2018-01-11 19:54:45', '2018-01-11', '2018-01-11 19:54:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (335, 15, 3, 4, '2018-01-10 10:41:57', '2018-01-10', '2018-01-10 10:41:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (336, 2, 541, 8, '2018-01-20 09:06:12', '2018-01-20', '2018-01-20 09:06:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (337, 10, 607, 8, '2018-01-26 08:24:03', '2018-01-26', '2018-01-26 08:24:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (338, 3, 784, 10, '2018-01-27 11:16:27', '2018-01-27', '2018-01-27 11:16:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (339, 2, 281, 6, '2018-01-24 15:08:23', '2018-01-24', '2018-01-24 15:08:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (340, 9, 82, 11, '2018-01-16 04:25:37', '2018-01-16', '2018-01-16 04:25:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (341, 15, 543, 8, '2018-01-04 09:11:53', '2018-01-04', '2018-01-04 09:11:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (342, 8, 74, 12, '2018-01-30 05:46:21', '2018-01-30', '2018-01-30 05:46:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (343, 4, 399, 9, '2018-01-11 00:33:37', '2018-01-11', '2018-01-11 00:33:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (344, 9, 179, 6, '2018-01-22 03:01:46', '2018-01-22', '2018-01-22 03:01:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (345, 13, 827, 12, '2018-01-01 22:22:42', '2018-01-01', '2018-01-01 22:22:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (346, 7, 921, 7, '2018-01-06 08:40:23', '2018-01-06', '2018-01-06 08:40:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (347, 3, 719, 8, '2018-01-22 03:06:24', '2018-01-22', '2018-01-22 03:06:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (348, 4, 79, 9, '2018-01-20 11:59:50', '2018-01-20', '2018-01-20 11:59:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (349, 1, 995, 9, '2018-01-28 04:46:08', '2018-01-28', '2018-01-28 04:46:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (350, 3, 782, 9, '2018-01-13 00:49:42', '2018-01-13', '2018-01-13 00:49:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (351, 12, 450, 19, '2018-01-08 11:11:21', '2018-01-08', '2018-01-08 11:11:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (352, 3, 54, 14, '2018-01-26 06:42:12', '2018-01-26', '2018-01-26 06:42:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (353, 15, 653, 9, '2018-01-28 19:40:50', '2018-01-28', '2018-01-28 19:40:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (354, 13, 920, 10, '2018-01-15 07:58:38', '2018-01-15', '2018-01-15 07:58:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (355, 2, 860, 8, '2018-01-10 22:55:12', '2018-01-10', '2018-01-10 22:55:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (356, 1, 369, 4, '2018-01-21 15:38:51', '2018-01-21', '2018-01-21 15:38:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (357, 1, 269, 9, '2018-01-09 13:42:03', '2018-01-09', '2018-01-09 13:42:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (358, 8, 325, 6, '2018-01-11 14:22:47', '2018-01-11', '2018-01-11 14:22:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (359, 7, 62, 8, '2018-01-27 18:10:54', '2018-01-27', '2018-01-27 18:10:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (360, 15, 206, 13, '2018-01-15 22:21:45', '2018-01-15', '2018-01-15 22:21:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (361, 15, 372, 11, '2018-01-27 06:21:43', '2018-01-27', '2018-01-27 06:21:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (362, 1, 245, 7, '2018-01-09 21:39:47', '2018-01-09', '2018-01-09 21:39:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (363, 8, 583, 4, '2018-01-29 22:13:06', '2018-01-29', '2018-01-29 22:13:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (364, 15, 138, 8, '2018-01-08 14:59:57', '2018-01-08', '2018-01-08 14:59:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (365, 14, 760, 11, '2018-01-27 01:29:44', '2018-01-27', '2018-01-27 01:29:44'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (366, 11, 294, 16, '2018-01-21 15:06:49', '2018-01-21', '2018-01-21 15:06:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (367, 10, 804, 6, '2018-01-21 07:56:46', '2018-01-21', '2018-01-21 07:56:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (368, 7, 937, 7, '2018-01-27 08:40:36', '2018-01-27', '2018-01-27 08:40:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (369, 14, 219, 9, '2018-01-05 11:00:03', '2018-01-05', '2018-01-05 11:00:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (370, 11, 457, 11, '2018-01-20 07:47:27', '2018-01-20', '2018-01-20 07:47:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (371, 13, 125, 6, '2018-01-10 22:51:35', '2018-01-10', '2018-01-10 22:51:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (372, 1, 596, 13, '2018-01-19 19:07:18', '2018-01-19', '2018-01-19 19:07:18'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (373, 6, 81, 9, '2018-01-26 05:59:32', '2018-01-26', '2018-01-26 05:59:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (374, 4, 350, 10, '2018-01-09 00:45:45', '2018-01-09', '2018-01-09 00:45:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (375, 4, 890, 13, '2018-01-09 09:53:22', '2018-01-09', '2018-01-09 09:53:22'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (376, 7, 834, 12, '2018-01-27 20:55:32', '2018-01-27', '2018-01-27 20:55:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (377, 4, 474, 9, '2018-01-30 13:25:16', '2018-01-30', '2018-01-30 13:25:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (378, 7, 613, 12, '2018-01-24 04:14:55', '2018-01-24', '2018-01-24 04:14:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (379, 11, 87, 12, '2018-01-03 13:20:54', '2018-01-03', '2018-01-03 13:20:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (380, 13, 329, 15, '2018-01-27 13:30:44', '2018-01-27', '2018-01-27 13:30:44'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (381, 10, 332, 15, '2018-01-17 10:48:16', '2018-01-17', '2018-01-17 10:48:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (382, 3, 527, 9, '2018-01-17 22:08:49', '2018-01-17', '2018-01-17 22:08:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (383, 5, 752, 8, '2018-01-27 21:37:27', '2018-01-27', '2018-01-27 21:37:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (384, 8, 475, 9, '2018-01-20 21:54:36', '2018-01-20', '2018-01-20 21:54:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (385, 13, 456, 11, '2018-01-17 04:25:00', '2018-01-17', '2018-01-17 04:25:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (386, 15, 274, 14, '2018-01-11 21:14:06', '2018-01-11', '2018-01-11 21:14:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (387, 6, 518, 11, '2018-01-25 06:07:33', '2018-01-25', '2018-01-25 06:07:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (388, 1, 92, 10, '2018-01-11 16:36:57', '2018-01-11', '2018-01-11 16:36:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (389, 5, 358, 13, '2018-01-18 22:23:21', '2018-01-18', '2018-01-18 22:23:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (390, 11, 385, 8, '2018-01-04 15:09:00', '2018-01-04', '2018-01-04 15:09:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (391, 5, 884, 13, '2018-01-24 10:46:04', '2018-01-24', '2018-01-24 10:46:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (392, 9, 850, 11, '2018-01-19 21:13:26', '2018-01-19', '2018-01-19 21:13:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (393, 8, 774, 4, '2018-01-06 00:15:10', '2018-01-06', '2018-01-06 00:15:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (394, 13, 333, 9, '2018-01-17 15:18:21', '2018-01-17', '2018-01-17 15:18:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (395, 12, 158, 14, '2018-01-15 10:29:02', '2018-01-15', '2018-01-15 10:29:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (396, 13, 432, 11, '2018-01-23 19:13:22', '2018-01-23', '2018-01-23 19:13:22'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (397, 13, 88, 12, '2018-01-16 18:45:00', '2018-01-16', '2018-01-16 18:45:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (398, 11, 638, 8, '2018-01-03 23:38:05', '2018-01-03', '2018-01-03 23:38:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (399, 13, 632, 4, '2018-01-27 03:58:02', '2018-01-27', '2018-01-27 03:58:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (400, 8, 236, 7, '2018-01-05 13:00:10', '2018-01-05', '2018-01-05 13:00:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (401, 2, 637, 5, '2018-01-23 15:18:28', '2018-01-23', '2018-01-23 15:18:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (402, 11, 73, 9, '2018-01-21 01:21:07', '2018-01-21', '2018-01-21 01:21:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (403, 14, 810, 14, '2018-01-17 18:55:31', '2018-01-17', '2018-01-17 18:55:31'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (404, 11, 203, 12, '2018-01-12 00:24:44', '2018-01-12', '2018-01-12 00:24:44'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (405, 15, 739, 14, '2018-01-09 11:53:19', '2018-01-09', '2018-01-09 11:53:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (406, 8, 987, 11, '2018-01-12 04:58:49', '2018-01-12', '2018-01-12 04:58:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (407, 6, 365, 10, '2018-01-27 12:36:28', '2018-01-27', '2018-01-27 12:36:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (408, 11, 84, 11, '2018-01-17 13:24:34', '2018-01-17', '2018-01-17 13:24:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (409, 13, 630, 14, '2018-01-23 16:18:28', '2018-01-23', '2018-01-23 16:18:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (410, 11, 157, 4, '2018-01-14 21:53:57', '2018-01-14', '2018-01-14 21:53:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (411, 8, 158, 12, '2018-01-23 19:24:28', '2018-01-23', '2018-01-23 19:24:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (412, 2, 713, 10, '2018-01-15 08:14:04', '2018-01-15', '2018-01-15 08:14:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (413, 2, 759, 7, '2018-01-05 01:47:57', '2018-01-05', '2018-01-05 01:47:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (414, 12, 968, 8, '2018-01-08 09:03:40', '2018-01-08', '2018-01-08 09:03:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (415, 8, 73, 8, '2018-01-15 16:39:46', '2018-01-15', '2018-01-15 16:39:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (416, 6, 51, 4, '2018-01-12 20:31:01', '2018-01-12', '2018-01-12 20:31:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (417, 8, 797, 9, '2018-01-02 06:38:07', '2018-01-02', '2018-01-02 06:38:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (418, 6, 925, 9, '2018-01-11 20:34:16', '2018-01-11', '2018-01-11 20:34:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (419, 12, 918, 7, '2018-01-05 18:01:06', '2018-01-05', '2018-01-05 18:01:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (420, 13, 247, 11, '2018-01-03 12:43:30', '2018-01-03', '2018-01-03 12:43:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (421, 13, 360, 7, '2018-01-01 17:31:36', '2018-01-01', '2018-01-01 17:31:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (422, 5, 202, 9, '2018-01-26 18:20:26', '2018-01-26', '2018-01-26 18:20:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (423, 14, 601, 4, '2018-01-27 05:02:43', '2018-01-27', '2018-01-27 05:02:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (424, 8, 143, 10, '2018-01-05 23:07:21', '2018-01-05', '2018-01-05 23:07:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (425, 4, 696, 8, '2018-01-12 16:52:00', '2018-01-12', '2018-01-12 16:52:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (426, 9, 777, 13, '2018-01-25 10:00:25', '2018-01-25', '2018-01-25 10:00:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (427, 12, 353, 8, '2018-01-19 07:29:54', '2018-01-19', '2018-01-19 07:29:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (428, 15, 877, 12, '2018-01-06 23:18:21', '2018-01-06', '2018-01-06 23:18:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (429, 9, 135, 9, '2018-01-21 23:10:41', '2018-01-21', '2018-01-21 23:10:41'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (430, 15, 147, 13, '2018-01-03 23:01:10', '2018-01-03', '2018-01-03 23:01:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (431, 3, 936, 16, '2018-01-28 02:44:39', '2018-01-28', '2018-01-28 02:44:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (432, 11, 952, 3, '2018-01-11 14:07:17', '2018-01-11', '2018-01-11 14:07:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (433, 2, 910, 15, '2018-01-04 02:00:28', '2018-01-04', '2018-01-04 02:00:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (434, 7, 349, 12, '2018-01-24 21:10:03', '2018-01-24', '2018-01-24 21:10:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (435, 15, 960, 14, '2018-01-01 15:16:57', '2018-01-01', '2018-01-01 15:16:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (436, 14, 13, 5, '2018-01-21 09:13:25', '2018-01-21', '2018-01-21 09:13:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (437, 2, 253, 8, '2018-01-14 02:56:48', '2018-01-14', '2018-01-14 02:56:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (438, 4, 827, 10, '2018-01-20 15:46:16', '2018-01-20', '2018-01-20 15:46:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (439, 7, 729, 5, '2018-01-27 15:32:00', '2018-01-27', '2018-01-27 15:32:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (440, 13, 609, 10, '2018-01-13 12:33:11', '2018-01-13', '2018-01-13 12:33:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (441, 4, 656, 11, '2018-01-08 23:34:02', '2018-01-08', '2018-01-08 23:34:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (442, 15, 370, 11, '2018-01-28 22:30:36', '2018-01-28', '2018-01-28 22:30:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (443, 13, 524, 8, '2018-01-02 16:19:31', '2018-01-02', '2018-01-02 16:19:31'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (444, 6, 594, 12, '2018-01-06 17:59:19', '2018-01-06', '2018-01-06 17:59:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (445, 6, 331, 13, '2018-01-06 17:20:45', '2018-01-06', '2018-01-06 17:20:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (446, 8, 261, 9, '2018-01-29 03:55:44', '2018-01-29', '2018-01-29 03:55:44'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (447, 11, 984, 10, '2018-01-18 20:30:02', '2018-01-18', '2018-01-18 20:30:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (448, 15, 771, 13, '2018-01-06 17:34:52', '2018-01-06', '2018-01-06 17:34:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (449, 1, 371, 12, '2018-01-26 17:39:45', '2018-01-26', '2018-01-26 17:39:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (450, 2, 278, 16, '2018-01-17 14:57:52', '2018-01-17', '2018-01-17 14:57:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (451, 4, 562, 7, '2018-01-21 10:56:24', '2018-01-21', '2018-01-21 10:56:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (452, 5, 887, 11, '2018-01-08 04:09:45', '2018-01-08', '2018-01-08 04:09:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (453, 1, 796, 12, '2018-01-14 03:01:15', '2018-01-14', '2018-01-14 03:01:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (454, 3, 714, 13, '2018-01-08 09:04:21', '2018-01-08', '2018-01-08 09:04:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (455, 3, 725, 13, '2018-01-02 22:43:43', '2018-01-02', '2018-01-02 22:43:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (456, 9, 212, 13, '2018-01-24 05:31:36', '2018-01-24', '2018-01-24 05:31:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (457, 4, 873, 8, '2018-01-15 15:09:12', '2018-01-15', '2018-01-15 15:09:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (458, 8, 824, 15, '2018-01-10 20:28:31', '2018-01-10', '2018-01-10 20:28:31'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (459, 6, 568, 10, '2018-01-20 05:42:32', '2018-01-20', '2018-01-20 05:42:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (460, 9, 140, 11, '2018-01-09 10:37:15', '2018-01-09', '2018-01-09 10:37:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (461, 8, 525, 10, '2018-01-10 07:15:57', '2018-01-10', '2018-01-10 07:15:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (462, 2, 239, 8, '2018-01-13 13:43:12', '2018-01-13', '2018-01-13 13:43:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (463, 11, 80, 18, '2018-01-06 14:23:05', '2018-01-06', '2018-01-06 14:23:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (464, 2, 406, 11, '2018-01-21 00:20:46', '2018-01-21', '2018-01-21 00:20:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (465, 5, 302, 9, '2018-01-24 19:34:17', '2018-01-24', '2018-01-24 19:34:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (466, 11, 73, 11, '2018-01-01 19:59:23', '2018-01-01', '2018-01-01 19:59:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (467, 12, 840, 10, '2018-01-07 15:16:05', '2018-01-07', '2018-01-07 15:16:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (468, 5, 8, 8, '2018-01-13 16:35:01', '2018-01-13', '2018-01-13 16:35:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (469, 7, 877, 12, '2018-01-30 08:13:06', '2018-01-30', '2018-01-30 08:13:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (470, 7, 602, 12, '2018-01-13 08:03:49', '2018-01-13', '2018-01-13 08:03:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (471, 12, 849, 7, '2018-01-17 01:30:26', '2018-01-17', '2018-01-17 01:30:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (472, 2, 49, 8, '2018-01-02 01:00:16', '2018-01-02', '2018-01-02 01:00:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (473, 5, 583, 15, '2018-01-08 07:34:29', '2018-01-08', '2018-01-08 07:34:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (474, 5, 756, 11, '2018-01-28 00:36:40', '2018-01-28', '2018-01-28 00:36:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (475, 10, 25, 14, '2018-01-27 11:50:16', '2018-01-27', '2018-01-27 11:50:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (476, 1, 721, 10, '2018-01-27 04:08:42', '2018-01-27', '2018-01-27 04:08:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (477, 15, 646, 11, '2018-01-12 15:08:27', '2018-01-12', '2018-01-12 15:08:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (478, 11, 715, 13, '2018-01-04 03:56:33', '2018-01-04', '2018-01-04 03:56:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (479, 8, 732, 9, '2018-01-29 03:21:28', '2018-01-29', '2018-01-29 03:21:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (480, 11, 780, 11, '2018-01-28 07:59:40', '2018-01-28', '2018-01-28 07:59:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (481, 11, 252, 8, '2018-01-01 12:59:20', '2018-01-01', '2018-01-01 12:59:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (482, 6, 100, 10, '2018-01-18 05:54:58', '2018-01-18', '2018-01-18 05:54:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (483, 4, 503, 11, '2018-01-05 10:47:09', '2018-01-05', '2018-01-05 10:47:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (484, 10, 150, 5, '2018-01-06 21:57:05', '2018-01-06', '2018-01-06 21:57:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (485, 2, 990, 10, '2018-01-16 19:55:10', '2018-01-16', '2018-01-16 19:55:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (486, 3, 500, 10, '2018-01-24 01:48:05', '2018-01-24', '2018-01-24 01:48:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (487, 3, 973, 16, '2018-01-14 10:34:56', '2018-01-14', '2018-01-14 10:34:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (488, 14, 936, 6, '2018-01-22 13:13:23', '2018-01-22', '2018-01-22 13:13:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (489, 10, 973, 13, '2018-01-05 17:23:47', '2018-01-05', '2018-01-05 17:23:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (490, 9, 565, 6, '2018-01-03 14:09:23', '2018-01-03', '2018-01-03 14:09:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (491, 4, 929, 12, '2018-01-06 15:40:20', '2018-01-06', '2018-01-06 15:40:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (492, 7, 283, 7, '2018-01-22 15:54:46', '2018-01-22', '2018-01-22 15:54:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (493, 10, 249, 11, '2018-01-06 16:51:59', '2018-01-06', '2018-01-06 16:51:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (494, 9, 567, 11, '2018-01-22 08:56:56', '2018-01-22', '2018-01-22 08:56:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (495, 12, 751, 9, '2018-01-30 18:17:53', '2018-01-30', '2018-01-30 18:17:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (496, 5, 678, 6, '2018-01-16 15:23:59', '2018-01-16', '2018-01-16 15:23:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (497, 4, 62, 12, '2018-01-06 03:31:29', '2018-01-06', '2018-01-06 03:31:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (498, 11, 79, 12, '2018-01-14 15:44:19', '2018-01-14', '2018-01-14 15:44:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (499, 2, 246, 11, '2018-01-08 09:30:16', '2018-01-08', '2018-01-08 09:30:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (500, 14, 760, 11, '2018-01-02 20:08:40', '2018-01-02', '2018-01-02 20:08:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (501, 8, 343, 9, '2018-01-22 05:52:52', '2018-01-22', '2018-01-22 05:52:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (502, 7, 240, 9, '2018-01-16 03:32:12', '2018-01-16', '2018-01-16 03:32:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (503, 6, 312, 12, '2018-01-17 16:45:23', '2018-01-17', '2018-01-17 16:45:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (504, 10, 908, 13, '2018-01-14 08:05:45', '2018-01-14', '2018-01-14 08:05:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (505, 12, 778, 7, '2018-01-10 22:13:58', '2018-01-10', '2018-01-10 22:13:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (506, 10, 433, 7, '2018-01-04 09:32:25', '2018-01-04', '2018-01-04 09:32:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (507, 4, 561, 8, '2018-01-27 02:06:33', '2018-01-27', '2018-01-27 02:06:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (508, 7, 241, 10, '2018-01-02 00:34:23', '2018-01-02', '2018-01-02 00:34:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (509, 9, 873, 7, '2018-01-27 05:09:07', '2018-01-27', '2018-01-27 05:09:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (510, 15, 39, 11, '2018-01-26 23:00:57', '2018-01-26', '2018-01-26 23:00:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (511, 13, 271, 7, '2018-01-04 09:15:29', '2018-01-04', '2018-01-04 09:15:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (512, 5, 276, 8, '2018-01-05 21:06:38', '2018-01-05', '2018-01-05 21:06:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (513, 15, 500, 8, '2018-01-18 06:48:21', '2018-01-18', '2018-01-18 06:48:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (514, 8, 135, 12, '2018-01-14 14:40:00', '2018-01-14', '2018-01-14 14:40:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (515, 2, 539, 10, '2018-01-05 01:59:28', '2018-01-05', '2018-01-05 01:59:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (516, 10, 819, 10, '2018-01-23 21:43:09', '2018-01-23', '2018-01-23 21:43:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (517, 1, 1000, 7, '2018-01-23 08:35:09', '2018-01-23', '2018-01-23 08:35:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (518, 14, 335, 8, '2018-01-05 03:48:11', '2018-01-05', '2018-01-05 03:48:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (519, 12, 614, 14, '2018-01-15 17:34:34', '2018-01-15', '2018-01-15 17:34:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (520, 12, 254, 10, '2018-01-17 15:38:27', '2018-01-17', '2018-01-17 15:38:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (521, 2, 530, 14, '2018-01-12 09:52:24', '2018-01-12', '2018-01-12 09:52:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (522, 5, 828, 14, '2018-01-20 11:05:21', '2018-01-20', '2018-01-20 11:05:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (523, 12, 294, 9, '2018-01-02 15:35:17', '2018-01-02', '2018-01-02 15:35:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (524, 8, 786, 17, '2018-01-21 17:39:59', '2018-01-21', '2018-01-21 17:39:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (525, 2, 894, 8, '2018-01-21 11:36:46', '2018-01-21', '2018-01-21 11:36:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (526, 11, 309, 13, '2018-01-15 08:38:45', '2018-01-15', '2018-01-15 08:38:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (527, 14, 333, 12, '2018-01-05 05:18:36', '2018-01-05', '2018-01-05 05:18:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (528, 11, 818, 18, '2018-01-09 15:44:05', '2018-01-09', '2018-01-09 15:44:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (529, 13, 823, 4, '2018-01-08 00:27:49', '2018-01-08', '2018-01-08 00:27:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (530, 1, 293, 5, '2018-01-30 01:54:49', '2018-01-30', '2018-01-30 01:54:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (531, 9, 394, 10, '2018-01-22 10:01:54', '2018-01-22', '2018-01-22 10:01:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (532, 15, 847, 12, '2018-01-06 08:51:35', '2018-01-06', '2018-01-06 08:51:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (533, 12, 480, 10, '2018-01-25 05:58:07', '2018-01-25', '2018-01-25 05:58:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (534, 6, 819, 12, '2018-01-30 19:53:10', '2018-01-30', '2018-01-30 19:53:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (535, 13, 334, 7, '2018-01-22 03:41:01', '2018-01-22', '2018-01-22 03:41:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (536, 10, 278, 11, '2018-01-15 16:56:05', '2018-01-15', '2018-01-15 16:56:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (537, 12, 496, 13, '2018-01-18 09:00:54', '2018-01-18', '2018-01-18 09:00:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (538, 11, 854, 3, '2018-01-24 22:18:30', '2018-01-24', '2018-01-24 22:18:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (539, 10, 224, 10, '2018-01-10 07:31:42', '2018-01-10', '2018-01-10 07:31:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (540, 11, 696, 9, '2018-01-12 07:28:02', '2018-01-12', '2018-01-12 07:28:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (541, 9, 516, 12, '2018-01-25 04:13:42', '2018-01-25', '2018-01-25 04:13:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (542, 14, 261, 8, '2018-01-04 05:16:32', '2018-01-04', '2018-01-04 05:16:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (543, 10, 958, 6, '2018-01-21 02:54:37', '2018-01-21', '2018-01-21 02:54:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (544, 3, 138, 3, '2018-01-21 14:38:50', '2018-01-21', '2018-01-21 14:38:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (545, 10, 458, 9, '2018-01-19 18:39:40', '2018-01-19', '2018-01-19 18:39:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (546, 4, 475, 7, '2018-01-29 14:10:49', '2018-01-29', '2018-01-29 14:10:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (547, 1, 521, 13, '2018-01-01 10:50:54', '2018-01-01', '2018-01-01 10:50:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (548, 8, 291, 6, '2018-01-20 06:12:08', '2018-01-20', '2018-01-20 06:12:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (549, 4, 351, 6, '2018-01-08 04:50:55', '2018-01-08', '2018-01-08 04:50:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (550, 4, 728, 11, '2018-01-16 13:45:19', '2018-01-16', '2018-01-16 13:45:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (551, 7, 644, 5, '2018-01-11 05:59:29', '2018-01-11', '2018-01-11 05:59:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (552, 7, 128, 12, '2018-01-21 21:43:21', '2018-01-21', '2018-01-21 21:43:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (553, 10, 415, 5, '2018-01-06 04:47:26', '2018-01-06', '2018-01-06 04:47:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (554, 2, 653, 18, '2018-01-20 01:22:14', '2018-01-20', '2018-01-20 01:22:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (555, 11, 350, 8, '2018-01-25 10:09:01', '2018-01-25', '2018-01-25 10:09:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (556, 9, 583, 9, '2018-01-27 18:01:27', '2018-01-27', '2018-01-27 18:01:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (557, 10, 140, 9, '2018-01-13 23:58:23', '2018-01-13', '2018-01-13 23:58:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (558, 13, 201, 13, '2018-01-01 21:05:53', '2018-01-01', '2018-01-01 21:05:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (559, 8, 557, 13, '2018-01-14 12:41:41', '2018-01-14', '2018-01-14 12:41:41'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (560, 5, 105, 10, '2018-01-20 06:22:09', '2018-01-20', '2018-01-20 06:22:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (561, 7, 514, 11, '2018-01-21 03:37:13', '2018-01-21', '2018-01-21 03:37:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (562, 2, 973, 10, '2018-01-24 04:15:46', '2018-01-24', '2018-01-24 04:15:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (563, 15, 995, 12, '2018-01-08 13:30:20', '2018-01-08', '2018-01-08 13:30:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (564, 6, 334, 10, '2018-01-24 13:20:46', '2018-01-24', '2018-01-24 13:20:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (565, 9, 899, 8, '2018-01-12 17:00:45', '2018-01-12', '2018-01-12 17:00:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (566, 1, 897, 12, '2018-01-16 15:52:45', '2018-01-16', '2018-01-16 15:52:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (567, 6, 160, 8, '2018-01-10 12:25:50', '2018-01-10', '2018-01-10 12:25:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (568, 3, 114, 13, '2018-01-21 05:58:25', '2018-01-21', '2018-01-21 05:58:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (569, 15, 877, 8, '2018-01-19 04:43:54', '2018-01-19', '2018-01-19 04:43:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (570, 3, 839, 14, '2018-01-13 23:49:05', '2018-01-13', '2018-01-13 23:49:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (571, 15, 715, 10, '2018-01-26 15:05:39', '2018-01-26', '2018-01-26 15:05:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (572, 5, 762, 9, '2018-01-30 14:35:14', '2018-01-30', '2018-01-30 14:35:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (573, 13, 837, 8, '2018-01-30 13:52:12', '2018-01-30', '2018-01-30 13:52:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (574, 4, 230, 11, '2018-01-22 12:56:11', '2018-01-22', '2018-01-22 12:56:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (575, 2, 965, 13, '2018-01-17 04:27:23', '2018-01-17', '2018-01-17 04:27:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (576, 7, 867, 10, '2018-01-02 16:50:07', '2018-01-02', '2018-01-02 16:50:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (577, 5, 288, 9, '2018-01-14 14:06:53', '2018-01-14', '2018-01-14 14:06:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (578, 11, 980, 7, '2018-01-01 21:47:36', '2018-01-01', '2018-01-01 21:47:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (579, 14, 852, 10, '2018-01-23 09:56:43', '2018-01-23', '2018-01-23 09:56:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (580, 6, 662, 12, '2018-01-15 23:07:34', '2018-01-15', '2018-01-15 23:07:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (581, 10, 670, 7, '2018-01-26 10:05:05', '2018-01-26', '2018-01-26 10:05:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (582, 2, 154, 15, '2018-01-09 23:21:37', '2018-01-09', '2018-01-09 23:21:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (583, 14, 716, 13, '2018-01-12 23:08:58', '2018-01-12', '2018-01-12 23:08:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (584, 12, 486, 16, '2018-01-04 15:58:33', '2018-01-04', '2018-01-04 15:58:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (585, 8, 477, 5, '2018-01-15 09:43:13', '2018-01-15', '2018-01-15 09:43:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (586, 13, 276, 8, '2018-01-12 17:56:48', '2018-01-12', '2018-01-12 17:56:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (587, 9, 417, 11, '2018-01-21 05:09:11', '2018-01-21', '2018-01-21 05:09:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (588, 13, 943, 14, '2018-01-11 13:39:19', '2018-01-11', '2018-01-11 13:39:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (589, 2, 837, 16, '2018-01-25 07:08:27', '2018-01-25', '2018-01-25 07:08:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (590, 9, 747, 12, '2018-01-14 17:36:15', '2018-01-14', '2018-01-14 17:36:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (591, 11, 678, 9, '2018-01-26 07:49:30', '2018-01-26', '2018-01-26 07:49:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (592, 6, 472, 9, '2018-01-08 16:39:59', '2018-01-08', '2018-01-08 16:39:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (593, 8, 356, 12, '2018-01-10 02:02:43', '2018-01-10', '2018-01-10 02:02:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (594, 5, 10, 17, '2018-01-22 13:34:16', '2018-01-22', '2018-01-22 13:34:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (595, 15, 423, 7, '2018-01-24 06:53:52', '2018-01-24', '2018-01-24 06:53:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (596, 14, 527, 12, '2018-01-22 08:51:53', '2018-01-22', '2018-01-22 08:51:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (597, 13, 565, 12, '2018-01-22 12:32:13', '2018-01-22', '2018-01-22 12:32:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (598, 8, 361, 10, '2018-01-17 02:16:57', '2018-01-17', '2018-01-17 02:16:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (599, 6, 238, 7, '2018-01-09 18:05:31', '2018-01-09', '2018-01-09 18:05:31'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (600, 8, 873, 8, '2018-01-10 09:42:35', '2018-01-10', '2018-01-10 09:42:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (601, 4, 680, 9, '2018-01-23 07:52:58', '2018-01-23', '2018-01-23 07:52:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (602, 11, 342, 7, '2018-01-29 18:23:39', '2018-01-29', '2018-01-29 18:23:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (603, 7, 519, 6, '2018-01-11 20:27:04', '2018-01-11', '2018-01-11 20:27:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (604, 4, 537, 3, '2018-01-27 16:51:57', '2018-01-27', '2018-01-27 16:51:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (605, 11, 708, 7, '2018-01-12 18:28:24', '2018-01-12', '2018-01-12 18:28:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (606, 14, 3, 11, '2018-01-30 09:22:55', '2018-01-30', '2018-01-30 09:22:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (607, 3, 692, 14, '2018-01-02 20:59:42', '2018-01-02', '2018-01-02 20:59:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (608, 4, 137, 8, '2018-01-13 00:35:29', '2018-01-13', '2018-01-13 00:35:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (609, 11, 775, 4, '2018-01-01 19:27:30', '2018-01-01', '2018-01-01 19:27:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (610, 8, 293, 16, '2018-01-17 06:19:35', '2018-01-17', '2018-01-17 06:19:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (611, 11, 48, 9, '2018-01-17 11:59:04', '2018-01-17', '2018-01-17 11:59:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (612, 3, 683, 8, '2018-01-05 03:23:30', '2018-01-05', '2018-01-05 03:23:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (613, 8, 203, 14, '2018-01-13 15:59:38', '2018-01-13', '2018-01-13 15:59:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (614, 8, 94, 4, '2018-01-05 13:40:42', '2018-01-05', '2018-01-05 13:40:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (615, 7, 138, 8, '2018-01-19 19:27:10', '2018-01-19', '2018-01-19 19:27:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (616, 5, 386, 10, '2018-01-04 08:35:47', '2018-01-04', '2018-01-04 08:35:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (617, 3, 84, 6, '2018-01-20 06:02:40', '2018-01-20', '2018-01-20 06:02:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (618, 8, 745, 9, '2018-01-16 01:07:13', '2018-01-16', '2018-01-16 01:07:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (619, 11, 816, 10, '2018-01-22 21:37:30', '2018-01-22', '2018-01-22 21:37:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (620, 14, 917, 11, '2018-01-08 21:11:02', '2018-01-08', '2018-01-08 21:11:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (621, 4, 559, 6, '2018-01-25 04:45:10', '2018-01-25', '2018-01-25 04:45:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (622, 14, 667, 17, '2018-01-19 13:54:23', '2018-01-19', '2018-01-19 13:54:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (623, 3, 951, 8, '2018-01-23 22:29:57', '2018-01-23', '2018-01-23 22:29:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (624, 7, 223, 12, '2018-01-22 19:23:30', '2018-01-22', '2018-01-22 19:23:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (625, 2, 587, 11, '2018-01-02 02:03:36', '2018-01-02', '2018-01-02 02:03:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (626, 3, 326, 9, '2018-01-04 18:50:52', '2018-01-04', '2018-01-04 18:50:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (627, 9, 2, 8, '2018-01-08 05:56:11', '2018-01-08', '2018-01-08 05:56:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (628, 6, 651, 7, '2018-01-21 20:48:18', '2018-01-21', '2018-01-21 20:48:18'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (629, 13, 658, 4, '2018-01-10 14:36:04', '2018-01-10', '2018-01-10 14:36:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (630, 3, 743, 10, '2018-01-15 01:49:39', '2018-01-15', '2018-01-15 01:49:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (631, 10, 717, 13, '2018-01-02 08:10:50', '2018-01-02', '2018-01-02 08:10:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (632, 8, 242, 9, '2018-01-01 23:24:59', '2018-01-01', '2018-01-01 23:24:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (633, 10, 504, 5, '2018-01-23 04:24:01', '2018-01-23', '2018-01-23 04:24:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (634, 7, 688, 15, '2018-01-23 23:14:48', '2018-01-23', '2018-01-23 23:14:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (635, 9, 211, 13, '2018-01-04 07:09:46', '2018-01-04', '2018-01-04 07:09:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (636, 15, 477, 10, '2018-01-09 10:45:50', '2018-01-09', '2018-01-09 10:45:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (637, 3, 902, 6, '2018-01-09 10:16:37', '2018-01-09', '2018-01-09 10:16:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (638, 4, 68, 17, '2018-01-01 21:34:25', '2018-01-01', '2018-01-01 21:34:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (639, 15, 769, 14, '2018-01-28 03:35:33', '2018-01-28', '2018-01-28 03:35:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (640, 13, 840, 13, '2018-01-09 05:59:14', '2018-01-09', '2018-01-09 05:59:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (641, 5, 755, 11, '2018-01-25 09:28:50', '2018-01-25', '2018-01-25 09:28:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (642, 14, 732, 6, '2018-01-26 19:42:19', '2018-01-26', '2018-01-26 19:42:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (643, 3, 418, 13, '2018-01-28 13:14:54', '2018-01-28', '2018-01-28 13:14:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (644, 6, 502, 7, '2018-01-04 14:57:39', '2018-01-04', '2018-01-04 14:57:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (645, 12, 714, 10, '2018-01-12 05:38:32', '2018-01-12', '2018-01-12 05:38:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (646, 7, 598, 11, '2018-01-05 15:24:12', '2018-01-05', '2018-01-05 15:24:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (647, 3, 227, 7, '2018-01-29 17:01:06', '2018-01-29', '2018-01-29 17:01:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (648, 12, 742, 11, '2018-01-25 07:19:08', '2018-01-25', '2018-01-25 07:19:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (649, 4, 643, 13, '2018-01-23 20:30:53', '2018-01-23', '2018-01-23 20:30:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (650, 3, 768, 11, '2018-01-14 20:31:48', '2018-01-14', '2018-01-14 20:31:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (651, 11, 739, 17, '2018-01-18 08:38:53', '2018-01-18', '2018-01-18 08:38:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (652, 14, 14, 7, '2018-01-21 21:37:37', '2018-01-21', '2018-01-21 21:37:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (653, 9, 89, 8, '2018-01-17 08:52:58', '2018-01-17', '2018-01-17 08:52:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (654, 10, 433, 11, '2018-01-24 10:20:59', '2018-01-24', '2018-01-24 10:20:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (655, 13, 307, 8, '2018-01-20 21:52:05', '2018-01-20', '2018-01-20 21:52:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (656, 6, 834, 16, '2018-01-04 13:41:03', '2018-01-04', '2018-01-04 13:41:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (657, 2, 850, 7, '2018-01-20 06:45:01', '2018-01-20', '2018-01-20 06:45:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (658, 13, 26, 10, '2018-01-11 19:23:36', '2018-01-11', '2018-01-11 19:23:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (659, 13, 530, 8, '2018-01-04 18:24:12', '2018-01-04', '2018-01-04 18:24:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (660, 5, 873, 10, '2018-01-22 02:54:53', '2018-01-22', '2018-01-22 02:54:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (661, 12, 827, 10, '2018-01-08 10:59:35', '2018-01-08', '2018-01-08 10:59:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (662, 3, 700, 7, '2018-01-12 09:51:27', '2018-01-12', '2018-01-12 09:51:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (663, 7, 914, 13, '2018-01-08 09:49:29', '2018-01-08', '2018-01-08 09:49:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (664, 5, 600, 8, '2018-01-04 02:01:01', '2018-01-04', '2018-01-04 02:01:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (665, 2, 946, 14, '2018-01-29 17:48:06', '2018-01-29', '2018-01-29 17:48:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (666, 11, 606, 8, '2018-01-26 09:59:39', '2018-01-26', '2018-01-26 09:59:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (667, 4, 850, 11, '2018-01-24 13:45:23', '2018-01-24', '2018-01-24 13:45:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (668, 11, 169, 15, '2018-01-30 15:44:50', '2018-01-30', '2018-01-30 15:44:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (669, 8, 704, 12, '2018-01-25 13:41:08', '2018-01-25', '2018-01-25 13:41:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (670, 8, 871, 13, '2018-01-18 23:06:30', '2018-01-18', '2018-01-18 23:06:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (671, 14, 709, 3, '2018-01-15 09:49:32', '2018-01-15', '2018-01-15 09:49:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (672, 5, 175, 6, '2018-01-15 23:52:29', '2018-01-15', '2018-01-15 23:52:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (673, 15, 526, 11, '2018-01-03 03:14:01', '2018-01-03', '2018-01-03 03:14:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (674, 15, 495, 8, '2018-01-09 15:33:44', '2018-01-09', '2018-01-09 15:33:44'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (675, 13, 986, 12, '2018-01-03 06:30:25', '2018-01-03', '2018-01-03 06:30:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (676, 9, 75, 13, '2018-01-01 10:46:34', '2018-01-01', '2018-01-01 10:46:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (677, 1, 731, 9, '2018-01-07 17:45:30', '2018-01-07', '2018-01-07 17:45:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (678, 8, 608, 13, '2018-01-24 06:25:01', '2018-01-24', '2018-01-24 06:25:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (679, 4, 578, 11, '2018-01-28 22:50:39', '2018-01-28', '2018-01-28 22:50:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (680, 11, 755, 19, '2018-01-17 02:49:19', '2018-01-17', '2018-01-17 02:49:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (681, 10, 688, 8, '2018-01-07 19:29:06', '2018-01-07', '2018-01-07 19:29:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (682, 1, 860, 8, '2018-01-26 09:35:42', '2018-01-26', '2018-01-26 09:35:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (683, 11, 764, 5, '2018-01-23 13:23:11', '2018-01-23', '2018-01-23 13:23:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (684, 1, 114, 14, '2018-01-17 10:57:47', '2018-01-17', '2018-01-17 10:57:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (685, 7, 175, 7, '2018-01-19 13:41:21', '2018-01-19', '2018-01-19 13:41:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (686, 15, 719, 12, '2018-01-26 17:02:55', '2018-01-26', '2018-01-26 17:02:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (687, 13, 870, 11, '2018-01-12 10:13:25', '2018-01-12', '2018-01-12 10:13:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (688, 3, 300, 9, '2018-01-11 18:06:48', '2018-01-11', '2018-01-11 18:06:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (689, 9, 642, 10, '2018-01-04 21:14:30', '2018-01-04', '2018-01-04 21:14:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (690, 11, 217, 2, '2018-01-25 15:37:41', '2018-01-25', '2018-01-25 15:37:41'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (691, 10, 990, 6, '2018-01-18 05:23:05', '2018-01-18', '2018-01-18 05:23:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (692, 3, 630, 13, '2018-01-26 04:00:29', '2018-01-26', '2018-01-26 04:00:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (693, 14, 505, 6, '2018-01-25 18:27:27', '2018-01-25', '2018-01-25 18:27:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (694, 7, 747, 12, '2018-01-01 04:51:24', '2018-01-01', '2018-01-01 04:51:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (695, 15, 633, 17, '2018-01-23 12:07:28', '2018-01-23', '2018-01-23 12:07:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (696, 5, 708, 8, '2018-01-17 22:06:52', '2018-01-17', '2018-01-17 22:06:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (697, 14, 664, 7, '2018-01-24 15:25:01', '2018-01-24', '2018-01-24 15:25:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (698, 9, 697, 11, '2018-01-15 18:28:00', '2018-01-15', '2018-01-15 18:28:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (699, 15, 329, 12, '2018-01-07 18:40:26', '2018-01-07', '2018-01-07 18:40:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (700, 10, 87, 8, '2018-01-30 12:42:00', '2018-01-30', '2018-01-30 12:42:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (701, 3, 6, 4, '2018-01-28 00:58:02', '2018-01-28', '2018-01-28 00:58:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (702, 11, 116, 13, '2018-01-21 06:30:07', '2018-01-21', '2018-01-21 06:30:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (703, 7, 776, 12, '2018-01-26 13:04:23', '2018-01-26', '2018-01-26 13:04:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (704, 8, 166, 6, '2018-01-12 09:11:45', '2018-01-12', '2018-01-12 09:11:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (705, 3, 197, 10, '2018-01-19 14:02:30', '2018-01-19', '2018-01-19 14:02:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (706, 5, 21, 14, '2018-01-07 23:53:20', '2018-01-07', '2018-01-07 23:53:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (707, 1, 988, 5, '2018-01-09 03:13:23', '2018-01-09', '2018-01-09 03:13:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (708, 10, 761, 10, '2018-01-11 04:51:15', '2018-01-11', '2018-01-11 04:51:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (709, 3, 115, 9, '2018-01-29 04:55:57', '2018-01-29', '2018-01-29 04:55:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (710, 8, 654, 11, '2018-01-25 21:03:56', '2018-01-25', '2018-01-25 21:03:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (711, 5, 602, 15, '2018-01-17 03:54:18', '2018-01-17', '2018-01-17 03:54:18'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (712, 7, 394, 10, '2018-01-15 16:35:11', '2018-01-15', '2018-01-15 16:35:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (713, 5, 11, 8, '2018-01-20 17:37:54', '2018-01-20', '2018-01-20 17:37:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (714, 3, 848, 9, '2018-01-29 03:11:24', '2018-01-29', '2018-01-29 03:11:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (715, 6, 193, 13, '2018-01-01 13:12:22', '2018-01-01', '2018-01-01 13:12:22'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (716, 12, 964, 8, '2018-01-09 04:10:26', '2018-01-09', '2018-01-09 04:10:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (717, 8, 446, 13, '2018-01-24 08:18:04', '2018-01-24', '2018-01-24 08:18:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (718, 1, 971, 9, '2018-01-14 21:22:59', '2018-01-14', '2018-01-14 21:22:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (719, 11, 866, 12, '2018-01-06 09:03:08', '2018-01-06', '2018-01-06 09:03:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (720, 2, 709, 9, '2018-01-24 07:25:09', '2018-01-24', '2018-01-24 07:25:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (721, 9, 907, 11, '2018-01-17 02:36:37', '2018-01-17', '2018-01-17 02:36:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (722, 11, 367, 9, '2018-01-06 21:55:42', '2018-01-06', '2018-01-06 21:55:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (723, 5, 671, 7, '2018-01-25 14:21:06', '2018-01-25', '2018-01-25 14:21:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (724, 3, 466, 10, '2018-01-28 00:02:45', '2018-01-28', '2018-01-28 00:02:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (725, 4, 695, 13, '2018-01-13 18:29:27', '2018-01-13', '2018-01-13 18:29:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (726, 13, 454, 5, '2018-01-23 04:25:05', '2018-01-23', '2018-01-23 04:25:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (727, 9, 703, 9, '2018-01-09 08:10:24', '2018-01-09', '2018-01-09 08:10:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (728, 3, 963, 12, '2018-01-10 00:20:22', '2018-01-10', '2018-01-10 00:20:22'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (729, 15, 200, 12, '2018-01-18 08:43:36', '2018-01-18', '2018-01-18 08:43:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (730, 5, 222, 3, '2018-01-09 23:38:11', '2018-01-09', '2018-01-09 23:38:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (731, 15, 187, 14, '2018-01-24 07:55:05', '2018-01-24', '2018-01-24 07:55:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (732, 12, 464, 9, '2018-01-05 05:47:26', '2018-01-05', '2018-01-05 05:47:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (733, 13, 649, 6, '2018-01-25 07:05:55', '2018-01-25', '2018-01-25 07:05:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (734, 3, 191, 15, '2018-01-26 05:53:34', '2018-01-26', '2018-01-26 05:53:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (735, 7, 313, 12, '2018-01-11 22:38:38', '2018-01-11', '2018-01-11 22:38:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (736, 8, 935, 9, '2018-01-22 06:43:08', '2018-01-22', '2018-01-22 06:43:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (737, 14, 318, 10, '2018-01-26 20:18:08', '2018-01-26', '2018-01-26 20:18:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (738, 1, 829, 10, '2018-01-01 05:27:58', '2018-01-01', '2018-01-01 05:27:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (739, 5, 11, 11, '2018-01-17 15:18:24', '2018-01-17', '2018-01-17 15:18:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (740, 8, 1, 8, '2018-01-09 16:42:09', '2018-01-09', '2018-01-09 16:42:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (741, 6, 535, 16, '2018-01-14 21:16:24', '2018-01-14', '2018-01-14 21:16:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (742, 10, 180, 7, '2018-01-06 08:26:49', '2018-01-06', '2018-01-06 08:26:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (743, 10, 6, 7, '2018-01-16 10:38:22', '2018-01-16', '2018-01-16 10:38:22'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (744, 3, 172, 13, '2018-01-13 22:45:16', '2018-01-13', '2018-01-13 22:45:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (745, 12, 296, 12, '2018-01-20 21:25:25', '2018-01-20', '2018-01-20 21:25:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (746, 5, 445, 13, '2018-01-30 14:36:35', '2018-01-30', '2018-01-30 14:36:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (747, 7, 933, 9, '2018-01-02 13:42:13', '2018-01-02', '2018-01-02 13:42:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (748, 10, 255, 8, '2018-01-03 04:13:04', '2018-01-03', '2018-01-03 04:13:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (749, 10, 223, 8, '2018-01-01 14:40:46', '2018-01-01', '2018-01-01 14:40:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (750, 1, 540, 8, '2018-01-24 10:23:12', '2018-01-24', '2018-01-24 10:23:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (751, 13, 82, 8, '2018-01-30 08:31:03', '2018-01-30', '2018-01-30 08:31:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (752, 15, 910, 10, '2018-01-13 16:37:17', '2018-01-13', '2018-01-13 16:37:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (753, 12, 366, 11, '2018-01-26 09:01:46', '2018-01-26', '2018-01-26 09:01:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (754, 4, 527, 5, '2018-01-14 17:53:38', '2018-01-14', '2018-01-14 17:53:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (755, 2, 360, 13, '2018-01-24 08:18:07', '2018-01-24', '2018-01-24 08:18:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (756, 15, 345, 14, '2018-01-05 16:46:33', '2018-01-05', '2018-01-05 16:46:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (757, 8, 871, 5, '2018-01-10 19:35:23', '2018-01-10', '2018-01-10 19:35:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (758, 5, 93, 7, '2018-01-05 18:32:11', '2018-01-05', '2018-01-05 18:32:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (759, 9, 904, 10, '2018-01-01 15:39:32', '2018-01-01', '2018-01-01 15:39:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (760, 5, 424, 7, '2018-01-20 00:40:33', '2018-01-20', '2018-01-20 00:40:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (761, 1, 441, 11, '2018-01-04 21:33:12', '2018-01-04', '2018-01-04 21:33:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (762, 14, 500, 6, '2018-01-22 19:41:49', '2018-01-22', '2018-01-22 19:41:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (763, 5, 758, 9, '2018-01-21 19:30:05', '2018-01-21', '2018-01-21 19:30:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (764, 10, 239, 11, '2018-01-03 19:53:46', '2018-01-03', '2018-01-03 19:53:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (765, 5, 462, 6, '2018-01-12 20:57:54', '2018-01-12', '2018-01-12 20:57:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (766, 14, 346, 9, '2018-01-15 21:04:07', '2018-01-15', '2018-01-15 21:04:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (767, 14, 1000, 5, '2018-01-05 01:19:00', '2018-01-05', '2018-01-05 01:19:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (768, 5, 992, 5, '2018-01-13 14:46:32', '2018-01-13', '2018-01-13 14:46:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (769, 10, 775, 9, '2018-01-05 17:22:27', '2018-01-05', '2018-01-05 17:22:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (770, 15, 480, 11, '2018-01-24 13:07:08', '2018-01-24', '2018-01-24 13:07:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (771, 8, 372, 11, '2018-01-04 00:47:28', '2018-01-04', '2018-01-04 00:47:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (772, 2, 999, 9, '2018-01-05 12:13:41', '2018-01-05', '2018-01-05 12:13:41'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (773, 8, 452, 6, '2018-01-12 04:14:56', '2018-01-12', '2018-01-12 04:14:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (774, 11, 547, 11, '2018-01-26 12:48:47', '2018-01-26', '2018-01-26 12:48:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (775, 1, 323, 15, '2018-01-16 00:39:11', '2018-01-16', '2018-01-16 00:39:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (776, 8, 687, 5, '2018-01-18 22:24:49', '2018-01-18', '2018-01-18 22:24:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (777, 12, 692, 3, '2018-01-04 14:08:12', '2018-01-04', '2018-01-04 14:08:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (778, 14, 442, 9, '2018-01-26 06:13:49', '2018-01-26', '2018-01-26 06:13:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (779, 15, 104, 10, '2018-01-13 02:18:45', '2018-01-13', '2018-01-13 02:18:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (780, 14, 155, 13, '2018-01-04 02:59:22', '2018-01-04', '2018-01-04 02:59:22'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (781, 11, 276, 9, '2018-01-25 11:07:25', '2018-01-25', '2018-01-25 11:07:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (782, 1, 334, 12, '2018-01-23 10:20:16', '2018-01-23', '2018-01-23 10:20:16'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (783, 3, 630, 5, '2018-01-14 12:42:12', '2018-01-14', '2018-01-14 12:42:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (784, 11, 164, 10, '2018-01-17 06:45:06', '2018-01-17', '2018-01-17 06:45:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (785, 5, 985, 11, '2018-01-24 10:32:08', '2018-01-24', '2018-01-24 10:32:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (786, 5, 979, 11, '2018-01-04 19:13:01', '2018-01-04', '2018-01-04 19:13:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (787, 12, 399, 6, '2018-01-19 12:54:39', '2018-01-19', '2018-01-19 12:54:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (788, 8, 425, 10, '2018-01-18 12:34:47', '2018-01-18', '2018-01-18 12:34:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (789, 9, 243, 8, '2018-01-21 16:47:30', '2018-01-21', '2018-01-21 16:47:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (790, 15, 877, 9, '2018-01-27 15:27:27', '2018-01-27', '2018-01-27 15:27:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (791, 3, 552, 13, '2018-01-18 18:04:45', '2018-01-18', '2018-01-18 18:04:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (792, 11, 242, 8, '2018-01-08 06:03:53', '2018-01-08', '2018-01-08 06:03:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (793, 6, 13, 12, '2018-01-30 10:48:50', '2018-01-30', '2018-01-30 10:48:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (794, 14, 88, 9, '2018-01-02 11:37:44', '2018-01-02', '2018-01-02 11:37:44'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (795, 11, 125, 10, '2018-01-16 20:17:51', '2018-01-16', '2018-01-16 20:17:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (796, 14, 77, 8, '2018-01-23 09:11:09', '2018-01-23', '2018-01-23 09:11:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (797, 5, 412, 1, '2018-01-18 17:03:38', '2018-01-18', '2018-01-18 17:03:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (798, 3, 49, 7, '2018-01-06 07:54:05', '2018-01-06', '2018-01-06 07:54:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (799, 2, 973, 12, '2018-01-16 06:49:44', '2018-01-16', '2018-01-16 06:49:44'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (800, 5, 232, 8, '2018-01-25 08:29:50', '2018-01-25', '2018-01-25 08:29:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (801, 8, 413, 8, '2018-01-12 22:56:42', '2018-01-12', '2018-01-12 22:56:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (802, 6, 73, 12, '2018-01-20 01:15:55', '2018-01-20', '2018-01-20 01:15:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (803, 11, 734, 9, '2018-01-03 19:29:15', '2018-01-03', '2018-01-03 19:29:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (804, 10, 189, 13, '2018-01-10 05:26:19', '2018-01-10', '2018-01-10 05:26:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (805, 3, 980, 15, '2018-01-24 12:20:32', '2018-01-24', '2018-01-24 12:20:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (806, 1, 31, 14, '2018-01-22 04:39:57', '2018-01-22', '2018-01-22 04:39:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (807, 15, 342, 10, '2018-01-13 09:52:28', '2018-01-13', '2018-01-13 09:52:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (808, 6, 309, 7, '2018-01-21 04:27:38', '2018-01-21', '2018-01-21 04:27:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (809, 12, 14, 6, '2018-01-21 03:57:24', '2018-01-21', '2018-01-21 03:57:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (810, 3, 961, 8, '2018-01-17 15:52:00', '2018-01-17', '2018-01-17 15:52:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (811, 14, 256, 11, '2018-01-26 18:38:53', '2018-01-26', '2018-01-26 18:38:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (812, 14, 612, 13, '2018-01-07 17:03:39', '2018-01-07', '2018-01-07 17:03:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (813, 9, 470, 12, '2018-01-23 21:52:19', '2018-01-23', '2018-01-23 21:52:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (814, 5, 953, 12, '2018-01-14 08:45:35', '2018-01-14', '2018-01-14 08:45:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (815, 15, 897, 14, '2018-01-03 07:51:15', '2018-01-03', '2018-01-03 07:51:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (816, 3, 341, 7, '2018-01-24 13:19:38', '2018-01-24', '2018-01-24 13:19:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (817, 1, 611, 6, '2018-01-24 20:30:23', '2018-01-24', '2018-01-24 20:30:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (818, 4, 25, 9, '2018-01-14 11:08:27', '2018-01-14', '2018-01-14 11:08:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (819, 6, 950, 11, '2018-01-30 10:13:06', '2018-01-30', '2018-01-30 10:13:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (820, 4, 539, 9, '2018-01-30 22:32:08', '2018-01-30', '2018-01-30 22:32:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (821, 1, 721, 7, '2018-01-12 10:23:58', '2018-01-12', '2018-01-12 10:23:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (822, 3, 726, 7, '2018-01-16 14:40:06', '2018-01-16', '2018-01-16 14:40:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (823, 1, 747, 12, '2018-01-14 21:15:18', '2018-01-14', '2018-01-14 21:15:18'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (824, 12, 4, 11, '2018-01-06 16:05:29', '2018-01-06', '2018-01-06 16:05:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (825, 14, 911, 8, '2018-01-27 22:27:44', '2018-01-27', '2018-01-27 22:27:44'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (826, 9, 647, 10, '2018-01-26 08:28:06', '2018-01-26', '2018-01-26 08:28:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (827, 5, 771, 11, '2018-01-15 00:31:10', '2018-01-15', '2018-01-15 00:31:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (828, 5, 878, 16, '2018-01-16 19:41:49', '2018-01-16', '2018-01-16 19:41:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (829, 11, 361, 7, '2018-01-11 01:17:17', '2018-01-11', '2018-01-11 01:17:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (830, 12, 284, 10, '2018-01-23 22:01:15', '2018-01-23', '2018-01-23 22:01:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (831, 12, 141, 16, '2018-01-04 00:25:47', '2018-01-04', '2018-01-04 00:25:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (832, 3, 213, 8, '2018-01-09 07:56:54', '2018-01-09', '2018-01-09 07:56:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (833, 14, 22, 10, '2018-01-08 00:43:36', '2018-01-08', '2018-01-08 00:43:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (834, 7, 748, 11, '2018-01-01 06:46:38', '2018-01-01', '2018-01-01 06:46:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (835, 14, 461, 12, '2018-01-27 07:35:18', '2018-01-27', '2018-01-27 07:35:18'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (836, 12, 396, 8, '2018-01-18 16:32:02', '2018-01-18', '2018-01-18 16:32:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (837, 6, 203, 9, '2018-01-03 15:57:36', '2018-01-03', '2018-01-03 15:57:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (838, 6, 679, 6, '2018-01-07 17:34:51', '2018-01-07', '2018-01-07 17:34:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (839, 9, 682, 7, '2018-01-13 12:10:42', '2018-01-13', '2018-01-13 12:10:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (840, 7, 994, 8, '2018-01-15 15:29:46', '2018-01-15', '2018-01-15 15:29:46'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (841, 4, 784, 7, '2018-01-22 22:01:00', '2018-01-22', '2018-01-22 22:01:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (842, 13, 184, 14, '2018-01-03 13:33:54', '2018-01-03', '2018-01-03 13:33:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (843, 3, 492, 5, '2018-01-01 13:52:40', '2018-01-01', '2018-01-01 13:52:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (844, 1, 335, 7, '2018-01-17 00:18:17', '2018-01-17', '2018-01-17 00:18:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (845, 11, 483, 10, '2018-01-27 01:54:56', '2018-01-27', '2018-01-27 01:54:56'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (846, 8, 100, 15, '2018-01-28 13:30:51', '2018-01-28', '2018-01-28 13:30:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (847, 11, 158, 10, '2018-01-22 06:09:03', '2018-01-22', '2018-01-22 06:09:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (848, 6, 506, 10, '2018-01-02 20:25:52', '2018-01-02', '2018-01-02 20:25:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (849, 11, 150, 17, '2018-01-16 07:42:07', '2018-01-16', '2018-01-16 07:42:07'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (850, 10, 945, 14, '2018-01-25 12:40:21', '2018-01-25', '2018-01-25 12:40:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (851, 9, 925, 10, '2018-01-27 15:26:48', '2018-01-27', '2018-01-27 15:26:48'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (852, 14, 78, 11, '2018-01-04 21:34:27', '2018-01-04', '2018-01-04 21:34:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (853, 11, 250, 11, '2018-01-12 17:46:35', '2018-01-12', '2018-01-12 17:46:35'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (854, 5, 549, 6, '2018-01-18 13:47:36', '2018-01-18', '2018-01-18 13:47:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (855, 1, 718, 9, '2018-01-02 17:12:43', '2018-01-02', '2018-01-02 17:12:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (856, 4, 978, 12, '2018-01-03 13:18:55', '2018-01-03', '2018-01-03 13:18:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (857, 6, 350, 0, '2018-01-23 01:19:53', '2018-01-23', '2018-01-23 01:19:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (858, 12, 490, 13, '2018-01-05 23:54:01', '2018-01-05', '2018-01-05 23:54:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (859, 4, 791, 8, '2018-01-05 01:29:25', '2018-01-05', '2018-01-05 01:29:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (860, 13, 263, 6, '2018-01-10 16:18:34', '2018-01-10', '2018-01-10 16:18:34'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (861, 6, 315, 6, '2018-01-18 10:51:45', '2018-01-18', '2018-01-18 10:51:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (862, 12, 515, 9, '2018-01-01 20:53:57', '2018-01-01', '2018-01-01 20:53:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (863, 9, 429, 11, '2018-01-01 01:55:50', '2018-01-01', '2018-01-01 01:55:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (864, 2, 783, 11, '2018-01-18 19:55:55', '2018-01-18', '2018-01-18 19:55:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (865, 8, 501, 11, '2018-01-24 22:34:45', '2018-01-24', '2018-01-24 22:34:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (866, 14, 280, 10, '2018-01-13 00:34:04', '2018-01-13', '2018-01-13 00:34:04'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (867, 3, 720, 9, '2018-01-28 07:20:28', '2018-01-28', '2018-01-28 07:20:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (868, 10, 492, 12, '2018-01-12 19:58:09', '2018-01-12', '2018-01-12 19:58:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (869, 15, 406, 7, '2018-01-04 18:30:47', '2018-01-04', '2018-01-04 18:30:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (870, 7, 238, 13, '2018-01-09 06:45:17', '2018-01-09', '2018-01-09 06:45:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (871, 4, 274, 9, '2018-01-05 17:02:47', '2018-01-05', '2018-01-05 17:02:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (872, 1, 923, 10, '2018-01-24 07:30:22', '2018-01-24', '2018-01-24 07:30:22'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (873, 14, 505, 15, '2018-01-15 10:15:05', '2018-01-15', '2018-01-15 10:15:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (874, 8, 470, 10, '2018-01-12 03:43:31', '2018-01-12', '2018-01-12 03:43:31'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (875, 9, 65, 15, '2018-01-19 12:57:55', '2018-01-19', '2018-01-19 12:57:55'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (876, 9, 939, 11, '2018-01-18 20:32:11', '2018-01-18', '2018-01-18 20:32:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (877, 6, 950, 12, '2018-01-23 01:52:29', '2018-01-23', '2018-01-23 01:52:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (878, 15, 710, 11, '2018-01-12 21:53:33', '2018-01-12', '2018-01-12 21:53:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (879, 2, 891, 10, '2018-01-12 10:08:24', '2018-01-12', '2018-01-12 10:08:24'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (880, 15, 290, 10, '2018-01-25 18:34:51', '2018-01-25', '2018-01-25 18:34:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (881, 3, 982, 11, '2018-01-18 19:48:38', '2018-01-18', '2018-01-18 19:48:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (882, 7, 714, 13, '2018-01-16 05:37:00', '2018-01-16', '2018-01-16 05:37:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (883, 2, 945, 12, '2018-01-22 12:31:30', '2018-01-22', '2018-01-22 12:31:30'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (884, 15, 435, 9, '2018-01-11 11:55:33', '2018-01-11', '2018-01-11 11:55:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (885, 2, 876, 11, '2018-01-01 23:04:57', '2018-01-01', '2018-01-01 23:04:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (886, 7, 781, 12, '2018-01-04 00:26:51', '2018-01-04', '2018-01-04 00:26:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (887, 5, 831, 12, '2018-01-09 21:12:47', '2018-01-09', '2018-01-09 21:12:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (888, 13, 741, 16, '2018-01-01 09:06:45', '2018-01-01', '2018-01-01 09:06:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (889, 12, 190, 10, '2018-01-10 23:04:13', '2018-01-10', '2018-01-10 23:04:13'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (890, 5, 181, 9, '2018-01-04 14:08:05', '2018-01-04', '2018-01-04 14:08:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (891, 9, 4, 10, '2018-01-11 23:28:15', '2018-01-11', '2018-01-11 23:28:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (892, 5, 379, 13, '2018-01-24 14:54:57', '2018-01-24', '2018-01-24 14:54:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (893, 2, 893, 11, '2018-01-03 16:04:20', '2018-01-03', '2018-01-03 16:04:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (894, 15, 355, 14, '2018-01-06 13:26:06', '2018-01-06', '2018-01-06 13:26:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (895, 12, 870, 12, '2018-01-28 06:27:25', '2018-01-28', '2018-01-28 06:27:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (896, 9, 345, 12, '2018-01-25 04:19:49', '2018-01-25', '2018-01-25 04:19:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (897, 5, 301, 8, '2018-01-09 01:00:03', '2018-01-09', '2018-01-09 01:00:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (898, 6, 996, 7, '2018-01-17 09:08:05', '2018-01-17', '2018-01-17 09:08:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (899, 15, 352, 12, '2018-01-07 08:20:32', '2018-01-07', '2018-01-07 08:20:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (900, 4, 546, 12, '2018-01-21 13:25:00', '2018-01-21', '2018-01-21 13:25:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (901, 6, 322, 10, '2018-01-20 08:58:57', '2018-01-20', '2018-01-20 08:58:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (902, 8, 643, 10, '2018-01-11 04:12:09', '2018-01-11', '2018-01-11 04:12:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (903, 15, 747, 8, '2018-01-09 20:16:02', '2018-01-09', '2018-01-09 20:16:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (904, 4, 980, 8, '2018-01-30 19:57:00', '2018-01-30', '2018-01-30 19:57:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (905, 4, 897, 15, '2018-01-13 23:49:08', '2018-01-13', '2018-01-13 23:49:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (906, 10, 643, 10, '2018-01-02 02:14:58', '2018-01-02', '2018-01-02 02:14:58'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (907, 14, 562, 17, '2018-01-16 02:00:02', '2018-01-16', '2018-01-16 02:00:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (908, 9, 628, 14, '2018-01-13 15:34:21', '2018-01-13', '2018-01-13 15:34:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (909, 4, 429, 5, '2018-01-23 20:38:47', '2018-01-23', '2018-01-23 20:38:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (910, 13, 565, 7, '2018-01-21 10:18:17', '2018-01-21', '2018-01-21 10:18:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (911, 4, 175, 12, '2018-01-24 18:04:19', '2018-01-24', '2018-01-24 18:04:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (912, 15, 410, 8, '2018-01-22 03:03:53', '2018-01-22', '2018-01-22 03:03:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (913, 10, 671, 9, '2018-01-28 10:35:26', '2018-01-28', '2018-01-28 10:35:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (914, 4, 21, 10, '2018-01-18 16:29:53', '2018-01-18', '2018-01-18 16:29:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (915, 14, 888, 8, '2018-01-06 01:33:14', '2018-01-06', '2018-01-06 01:33:14'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (916, 9, 347, 5, '2018-01-30 00:16:05', '2018-01-30', '2018-01-30 00:16:05'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (917, 9, 979, 17, '2018-01-18 09:37:38', '2018-01-18', '2018-01-18 09:37:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (918, 4, 993, 7, '2018-01-19 21:35:23', '2018-01-19', '2018-01-19 21:35:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (919, 13, 294, 12, '2018-01-23 16:47:54', '2018-01-23', '2018-01-23 16:47:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (920, 6, 392, 10, '2018-01-11 17:16:37', '2018-01-11', '2018-01-11 17:16:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (921, 2, 304, 10, '2018-01-06 03:32:19', '2018-01-06', '2018-01-06 03:32:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (922, 15, 550, 13, '2018-01-05 11:36:59', '2018-01-05', '2018-01-05 11:36:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (923, 15, 674, 14, '2018-01-23 01:09:03', '2018-01-23', '2018-01-23 01:09:03'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (924, 14, 305, 7, '2018-01-20 08:26:23', '2018-01-20', '2018-01-20 08:26:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (925, 7, 200, 9, '2018-01-04 02:43:43', '2018-01-04', '2018-01-04 02:43:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (926, 9, 773, 8, '2018-01-15 16:34:10', '2018-01-15', '2018-01-15 16:34:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (927, 6, 273, 12, '2018-01-12 06:51:29', '2018-01-12', '2018-01-12 06:51:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (928, 3, 29, 9, '2018-01-27 05:19:43', '2018-01-27', '2018-01-27 05:19:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (929, 1, 784, 5, '2018-01-06 21:20:50', '2018-01-06', '2018-01-06 21:20:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (930, 10, 389, 9, '2018-01-10 22:37:18', '2018-01-10', '2018-01-10 22:37:18'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (931, 2, 795, 11, '2018-01-06 19:11:51', '2018-01-06', '2018-01-06 19:11:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (932, 14, 256, 6, '2018-01-24 03:44:32', '2018-01-24', '2018-01-24 03:44:32'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (933, 15, 984, 16, '2018-01-11 10:37:51', '2018-01-11', '2018-01-11 10:37:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (934, 7, 512, 13, '2018-01-26 03:08:00', '2018-01-26', '2018-01-26 03:08:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (935, 15, 693, 12, '2018-01-17 08:40:19', '2018-01-17', '2018-01-17 08:40:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (936, 2, 264, 8, '2018-01-26 18:23:43', '2018-01-26', '2018-01-26 18:23:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (937, 5, 123, 12, '2018-01-02 16:29:36', '2018-01-02', '2018-01-02 16:29:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (938, 3, 692, 11, '2018-01-13 22:39:01', '2018-01-13', '2018-01-13 22:39:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (939, 2, 250, 10, '2018-01-20 16:51:17', '2018-01-20', '2018-01-20 16:51:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (940, 7, 928, 7, '2018-01-27 17:13:40', '2018-01-27', '2018-01-27 17:13:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (941, 4, 816, 7, '2018-01-30 02:36:41', '2018-01-30', '2018-01-30 02:36:41'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (942, 1, 134, 10, '2018-01-30 00:06:54', '2018-01-30', '2018-01-30 00:06:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (943, 14, 634, 10, '2018-01-25 13:28:49', '2018-01-25', '2018-01-25 13:28:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (944, 1, 923, 8, '2018-01-16 08:08:09', '2018-01-16', '2018-01-16 08:08:09'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (945, 14, 764, 9, '2018-01-15 08:29:36', '2018-01-15', '2018-01-15 08:29:36'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (946, 8, 707, 11, '2018-01-27 19:36:29', '2018-01-27', '2018-01-27 19:36:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (947, 4, 483, 9, '2018-01-28 20:32:20', '2018-01-28', '2018-01-28 20:32:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (948, 9, 615, 6, '2018-01-22 07:26:23', '2018-01-22', '2018-01-22 07:26:23'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (949, 4, 582, 10, '2018-01-15 16:43:06', '2018-01-15', '2018-01-15 16:43:06'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (950, 9, 697, 8, '2018-01-16 17:59:57', '2018-01-16', '2018-01-16 17:59:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (951, 10, 741, 12, '2018-01-10 18:54:44', '2018-01-10', '2018-01-10 18:54:44'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (952, 8, 949, 12, '2018-01-14 18:13:45', '2018-01-14', '2018-01-14 18:13:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (953, 15, 301, 10, '2018-01-29 19:01:28', '2018-01-29', '2018-01-29 19:01:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (954, 4, 477, 11, '2018-01-11 11:40:28', '2018-01-11', '2018-01-11 11:40:28'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (955, 9, 565, 17, '2018-01-20 18:10:53', '2018-01-20', '2018-01-20 18:10:53'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (956, 14, 410, 9, '2018-01-15 12:21:33', '2018-01-15', '2018-01-15 12:21:33'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (957, 13, 790, 16, '2018-01-24 00:03:26', '2018-01-24', '2018-01-24 00:03:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (958, 2, 118, 13, '2018-01-12 12:02:54', '2018-01-12', '2018-01-12 12:02:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (959, 6, 916, 7, '2018-01-08 03:18:41', '2018-01-08', '2018-01-08 03:18:41'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (960, 10, 364, 12, '2018-01-30 15:35:49', '2018-01-30', '2018-01-30 15:35:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (961, 2, 709, 11, '2018-01-26 02:48:51', '2018-01-26', '2018-01-26 02:48:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (962, 2, 278, 12, '2018-01-17 00:47:52', '2018-01-17', '2018-01-17 00:47:52'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (963, 4, 120, 10, '2018-01-05 02:49:27', '2018-01-05', '2018-01-05 02:49:27'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (964, 4, 553, 11, '2018-01-29 23:52:00', '2018-01-29', '2018-01-29 23:52:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (965, 3, 555, 10, '2018-01-18 19:39:41', '2018-01-18', '2018-01-18 19:39:41'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (966, 8, 370, 17, '2018-01-28 03:31:43', '2018-01-28', '2018-01-28 03:31:43'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (967, 1, 554, 7, '2018-01-24 13:18:47', '2018-01-24', '2018-01-24 13:18:47'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (968, 14, 445, 7, '2018-01-24 13:16:51', '2018-01-24', '2018-01-24 13:16:51'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (969, 10, 337, 10, '2018-01-26 02:59:29', '2018-01-26', '2018-01-26 02:59:29'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (970, 7, 631, 10, '2018-01-10 15:57:20', '2018-01-10', '2018-01-10 15:57:20'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (971, 3, 201, 8, '2018-01-10 16:10:21', '2018-01-10', '2018-01-10 16:10:21'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (972, 4, 190, 9, '2018-01-23 14:07:26', '2018-01-23', '2018-01-23 14:07:26'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (973, 2, 629, 11, '2018-01-05 12:49:15', '2018-01-05', '2018-01-05 12:49:15'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (974, 13, 259, 9, '2018-01-06 14:22:11', '2018-01-06', '2018-01-06 14:22:11'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (975, 1, 160, 13, '2018-01-25 06:52:38', '2018-01-25', '2018-01-25 06:52:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (976, 11, 354, 10, '2018-01-22 17:49:42', '2018-01-22', '2018-01-22 17:49:42'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (977, 15, 476, 14, '2018-01-01 20:10:59', '2018-01-01', '2018-01-01 20:10:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (978, 14, 899, 8, '2018-01-13 09:32:19', '2018-01-13', '2018-01-13 09:32:19'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (979, 4, 379, 12, '2018-01-03 04:32:49', '2018-01-03', '2018-01-03 04:32:49'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (980, 1, 420, 10, '2018-01-09 06:22:02', '2018-01-09', '2018-01-09 06:22:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (981, 8, 516, 7, '2018-01-08 12:29:10', '2018-01-08', '2018-01-08 12:29:10'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (982, 7, 35, 14, '2018-01-10 17:11:08', '2018-01-10', '2018-01-10 17:11:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (983, 13, 791, 11, '2018-01-09 17:52:12', '2018-01-09', '2018-01-09 17:52:12'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (984, 8, 899, 8, '2018-01-26 01:17:45', '2018-01-26', '2018-01-26 01:17:45'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (985, 1, 1000, 9, '2018-01-11 03:17:17', '2018-01-11', '2018-01-11 03:17:17'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (986, 12, 395, 10, '2018-01-06 01:57:57', '2018-01-06', '2018-01-06 01:57:57'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (987, 15, 635, 4, '2018-01-30 17:16:02', '2018-01-30', '2018-01-30 17:16:02'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (988, 3, 742, 7, '2018-01-17 11:10:00', '2018-01-17', '2018-01-17 11:10:00'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (989, 6, 746, 10, '2018-01-07 09:05:37', '2018-01-07', '2018-01-07 09:05:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (990, 1, 646, 8, '2018-01-07 16:08:37', '2018-01-07', '2018-01-07 16:08:37'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (991, 10, 216, 10, '2018-01-12 21:59:54', '2018-01-12', '2018-01-12 21:59:54'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (992, 3, 25, 9, '2018-01-10 12:08:39', '2018-01-10', '2018-01-10 12:08:39'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (993, 7, 331, 10, '2018-01-10 17:12:40', '2018-01-10', '2018-01-10 17:12:40'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (994, 3, 698, 12, '2018-01-13 07:28:08', '2018-01-13', '2018-01-13 07:28:08'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (995, 8, 812, 8, '2018-01-24 13:13:25', '2018-01-24', '2018-01-24 13:13:25'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (996, 7, 241, 12, '2018-01-25 04:05:50', '2018-01-25', '2018-01-25 04:05:50'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (997, 3, 944, 9, '2018-01-12 15:45:59', '2018-01-12', '2018-01-12 15:45:59'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (998, 11, 786, 8, '2018-01-11 05:25:38', '2018-01-11', '2018-01-11 05:25:38'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (999, 8, 590, 10, '2018-01-26 01:15:01', '2018-01-26', '2018-01-26 01:15:01'); insert into stocks (id, showroom_id, product_id, quantity, create_date, stock_date, update_date) values (1000, 14, 544, 10, '2018-01-01 21:09:50', '2018-01-01', '2018-01-01 21:09:50');