SELECT url_to, r404
FROM pod_redirect
WHERE BINARY REPLACE(url_from,'/ru/','/') = '/kastryuli/bocasa-pyrex-tefal.html' LIMIT 0,1 [0.00079107284545898 sec]
SELECT pod_filter.id,pod_filter.url FROM pod_filter WHERE BINARY pod_filter.url IN ('bocasa','pyrex','tefal') order by url [0.00093603134155273 sec]
SELECT pod_sub_icon.id,pod_sub_icon.url FROM pod_sub_icon WHERE BINARY pod_sub_icon.url IN ('bocasa','pyrex','tefal') order by url [0.0005500316619873 sec]
select id,url from pod_cat_brand where BINARY url = 'bocasa-pyrex-tefal' [0.0017349720001221 sec]
select id,url from pod_cat_brand where url = 'bocasa-pyrex-tefal' [0.00036311149597168 sec]
select id,url from pod_cat_brand where url in ('bocasa','pyrex','tefal') [0.00062298774719238 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_base_goods;
CREATE TEMPORARY TABLE tmp_base_goods (
id INT NOT NULL PRIMARY KEY,
brand_id INT,
price DECIMAL(10,2),
old_price DECIMAL(10,2),
ordr INT,
is_present TINYINT(1),
sub_icon_id INT,
fast_delivery TINYINT(1),
is_new TINYINT(1),
is_sale TINYINT(1),
KEY idx_brand (brand_id)
) ENGINE=MEMORY [0.0004279613494873 sec]
INSERT INTO tmp_base_goods
(id, brand_id, price, old_price, ordr, is_present, sub_icon_id, fast_delivery, is_new, is_sale)
SELECT g.id, g.brand_id, g.price, g.old_price, g.ordr, g.is_present,
g.sub_icon_id, g.fast_delivery, g.is_new, g.is_sale
FROM pod_cat_good g
WHERE g.cat_id IN (115) AND g.entry=0 AND g.is_active AND g.is_present_all_mods
UNION
SELECT g.id, g.brand_id, g.price, g.old_price, g.ordr, g.is_present,
g.sub_icon_id, g.fast_delivery, g.is_new, g.is_sale
FROM pod_cat_good g
INNER JOIN pod_dop_cat_category dc ON dc.good_id = g.id
WHERE dc.dop_cat_id IN (115) AND g.entry=0 AND g.is_active AND g.is_present_all_mods [0.45718908309937 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_sub_goods;
CREATE TEMPORARY TABLE tmp_sub_goods (
id INT NOT NULL PRIMARY KEY,
entry INT NOT NULL,
price DECIMAL(10,2),
old_price DECIMAL(10,2),
sub_icon_id INT,
is_present TINYINT(1),
fast_delivery TINYINT(1),
is_new TINYINT(1),
is_sale TINYINT(1),
KEY idx_entry (entry)
) ENGINE=MEMORY [0.00047588348388672 sec]
INSERT INTO tmp_sub_goods
(id, entry, price, old_price, sub_icon_id, is_present, fast_delivery, is_new, is_sale)
SELECT go.id, go.entry, go.price, go.old_price, go.sub_icon_id, go.is_present,
go.fast_delivery, go.is_new, go.is_sale
FROM pod_cat_good go
INNER JOIN tmp_base_goods t ON go.entry = t.id
WHERE go.is_active AND go.is_present [0.0041720867156982 sec]
SELECT g.id /* cats:115 */
FROM tmp_base_goods g
WHERE g.brand_id IN (100,330,1448) AND
1
[0.00016212463378906 sec]
CREATE TEMPORARY TABLE temp_brand_counts_6a2af5a51ab13 (
id INT,
gid INT,
INDEX idx_id (id),
INDEX idx_gid (gid)
) [0.00036501884460449 sec]
INSERT INTO temp_brand_counts_6a2af5a51ab13 (id, gid)
SELECT g.brand_id AS id, g.id AS gid /* cats:115 */
FROM tmp_base_goods g
WHERE 1
UNION
SELECT id, null gid
FROM pod_cat_category
WHERE id in (100,330,1448) [0.0032317638397217 sec]
SELECT b.id, b.name AS name, pc.name AS country, b.country_id,
b.image_icon, b.url, b.ordr, pc.code,
COALESCE(tc.count, 0) as count
FROM pod_cat_brand b
INNER JOIN (
SELECT id, COUNT(gid) as count
FROM temp_brand_counts_6a2af5a51ab13
GROUP BY id
HAVING COUNT(gid) > 0
) tc ON b.id = tc.id
LEFT JOIN pod_country pc ON (pc.id = b.country_id AND pc.is_active = 1)
WHERE b.is_active = '1'
ORDER BY b.ordr [0.0012059211730957 sec]
DROP TEMPORARY TABLE IF EXISTS temp_brand_counts_6a2af5a51ab13 [0.00024700164794922 sec]
SELECT MIN(min_price) AS min_price, MAX(max_price) AS max_price
FROM (
SELECT MIN(g.price) AS min_price, MAX(g.price) AS max_price /* cats:115 */
FROM tmp_base_goods g
WHERE g.brand_id IN (100,330,1448) AND
g.is_present AND
1
UNION
SELECT MIN(go.price) AS min_price, MAX(go.price) AS max_price /* cats:115 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
WHERE g.brand_id IN (100,330,1448) AND
1
) A
[0.00046205520629883 sec]
SELECT g.id /* cats:115 */,if(g.is_present and g.price >= '539' and g.price <= '9425',least(g.price,ifnull(min(pcg.price),g.price)),ifnull(min(pcg.price),g.price)) min_sort_price,
if(g.is_present and g.price >= '539' and g.price <= '9425',greatest(g.price,ifnull(max(pcg.price),g.price)),ifnull(max(pcg.price),g.price)) max_sort_price
FROM tmp_base_goods g
LEFT JOIN pod_cat_good pcg ON pcg.entry=g.id AND pcg.is_present=1 AND pcg.price >= '539' AND pcg.price <= '9425'
WHERE g.id IN (482423,482422,482421,482420,479409,479149,479147,455460,439598,283607,211763,211746,484843,484841,484722,473079,473078)
GROUP BY g.id
ORDER BY g.ordr desc
LIMIT 0, 32 [0.0022690296173096 sec]
SELECT g.video, g.threedvideo, g.is_xit, g.is_action, g.is_sale,
g.sub_is_action, g.is_new, g.is_pay_for_video, g.id, g.cat_id,
g.name AS name, g.name2 AS name2, g.descr, g.size_table, g.artikul, g.image_small,
g.image_big, g.price, g.old_price, g.is_present,
g.is_present_all_mods, g.sub_icon_id,g.url,g.ordr, g.last_items, g.fast_delivery, g.free_delivery, g.gift,
g.timer, g.action_validity,
b.name AS brand_name,b.url as burl,b.id as bid, b.country AS brand_country,c.url as curl, c.name AS cat_name,
si.name AS sub_icon_name,si.icon AS sub_icon,
g.star, g.comment_id, if(g.is_present and g.price >= '539' and g.price <= '9425',least(g.price,ifnull(min(pcg.price),g.price)),ifnull(min(pcg.price),g.price)) as min_sort_price,
if(g.is_present and g.price >= '539' and g.price <= '9425',greatest(g.price,ifnull(max(pcg.price),g.price)),ifnull(max(pcg.price),g.price)) as max_sort_price
FROM pod_cat_good g
INNER JOIN pod_cat_category c ON c.id=g.cat_id
LEFT JOIN pod_cat_brand b ON b.id=g.brand_id
LEFT JOIN pod_sub_icon si ON si.id=g.sub_icon_id
LEFT JOIN pod_cat_good pcg ON (pcg.entry=g.id and pcg.is_present=1 and pcg.price >= '539' and pcg.price <= '9425')
WHERE g.id in (473078,484722,484843,473079,484841,211746,482421,482420,479149,211763,482422,479409,283607,482423,439598,479147,455460)
GROUP BY g.id
ORDER BY g.ordr desc [0.0022130012512207 sec]
SELECT g.ordr, g.is_xit, g.is_pay_for_video, g.is_action, g.is_sale, g.is_new, g.last_items, g.fast_delivery, g.free_delivery, g.gift,
g.timer, g.action_validity,
g.id, g.entry, g.name AS name, g.price, g.old_price, g.artikul, g.sub_icon_id, g.is_present, si.name AS sub_icon_name, si.icon AS sub_icon
FROM pod_cat_good g
LEFT JOIN pod_sub_icon si ON si.id = g.sub_icon_id
WHERE g.entry IN (473078,484722,484843,473079,484841,211746,482421,482420,211763,283607,439598,455460,479147,479149,479409,482422,482423) AND g.is_active = '1'
ORDER BY g.entry, g.is_present DESC [0.00036978721618652 sec]
SELECT DISTINCT
ggd2.good_id AS source_good_id,
g.id, g.is_present_all_mods,
pc.name AS name,
g.url,
b.url as burl, c.url as curl,
g.is_present,
pc.code AS color_code,
gg.group_type,
gg.param_name,
gg.param_name_ua,
ggd.text_value,
ggd.icon_path
FROM pod_goods_group_goods ggd2
JOIN pod_goods_group_goods ggd ON ggd2.goods_group_id=ggd.goods_group_id
JOIN pod_goods_group gg ON ggd.goods_group_id=gg.id
JOIN pod_cat_good g ON g.id=ggd.good_id
LEFT JOIN pod_cat_brand b ON g.brand_id=b.id
LEFT JOIN pod_cat_category c ON g.cat_id=c.id
LEFT JOIN pod_colors pc ON pc.id=ggd.color_id
WHERE ggd2.good_id IN (473078,484722,484843,473079,484841,211746,482421,482420,211763,283607,439598,455460,479147,479149,479409,482422,482423)
ORDER BY ggd2.good_id, g.is_present_all_mods DESC [0.0022480487823486 sec]
SELECT name AS name, url FROM pod_cat_brand WHERE id in (100,330,1448) [0.00026893615722656 sec]
SELECT name AS name, url FROM pod_cat_brand WHERE id='100.330.1448' [0.00023484230041504 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8;
CREATE TEMPORARY TABLE tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 (
id INT NOT NULL,
PRIMARY KEY (id)
) ENGINE=MEMORY; [0.00035500526428223 sec]
INSERT INTO tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 (id) SELECT A.id FROM (
SELECT g.id /* cats:115 */
FROM tmp_base_goods g
WHERE g.brand_id IN (100,330,1448) AND
1
) A [0.00037097930908203 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8;
CREATE TEMPORARY TABLE tmp_pairs_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00031900405883789 sec]
INSERT INTO tmp_pairs_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 (goods_id, filter_id)
SELECT DISTINCT
A.id AS goods_id,
f.id AS filter_id
FROM tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 A
INNER JOIN pod_good_filter gf ON A.id = gf.id_good
INNER JOIN pod_cat_filter cf ON gf.filter_id = cf.filter_id AND cf.category_id = 115
INNER JOIN pod_filter fm ON gf.filter_id = fm.id AND fm.is_split = 0 AND fm.is_active
INNER JOIN pod_filter f ON gf.filter_id_value = f.id AND f.is_active [0.0037100315093994 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8;
CREATE TEMPORARY TABLE tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00035214424133301 sec]
INSERT IGNORE INTO tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 p
GROUP BY p.filter_id [0.00041604042053223 sec]
SELECT
c.filter_id,
c.count,
f.entry,
f.name AS name,
f.url,
f.ord,
fm.name AS mname,
fm.url AS murl,
fm.ord AS mord
FROM tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 c
INNER JOIN pod_filter f ON c.filter_id = f.id
INNER JOIN pod_filter fm ON f.entry = fm.id
ORDER BY fm.ord DESC, f.ord DESC, c.filter_id [0.00040483474731445 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 [0.00027704238891602 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 [0.00012803077697754 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a5212f8 [0.00014901161193848 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a523128;
CREATE TEMPORARY TABLE tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a523128 (
id INT NOT NULL,
entry INT NOT NULL,
PRIMARY KEY (id),
KEY idx_entry (entry)
) ENGINE=MEMORY; [0.00031185150146484 sec]
INSERT INTO tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a523128 (id, entry) SELECT A.id, A.entry FROM (
SELECT g.id as id, g.id as entry /* cats:115 */
FROM tmp_base_goods g
WHERE g.brand_id IN (100,330,1448) AND
g.is_present AND
1
UNION
SELECT go.id as id, g.id as entry /* cats:115 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
WHERE g.brand_id IN (100,330,1448) AND
1
) A [0.00040102005004883 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_e8napesukvv2ubk428hvsbseei_6a2af5a523128;
CREATE TEMPORARY TABLE tmp_pairs_e8napesukvv2ubk428hvsbseei_6a2af5a523128 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00035905838012695 sec]
INSERT INTO tmp_pairs_e8napesukvv2ubk428hvsbseei_6a2af5a523128 (goods_id, filter_id)
SELECT DISTINCT
A.entry AS goods_id,
f.id AS filter_id
FROM tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a523128 A
INNER JOIN pod_good_filter gf ON A.id = gf.id_good
INNER JOIN pod_cat_filter cf ON gf.filter_id = cf.filter_id AND cf.category_id = 115
INNER JOIN pod_filter fm ON gf.filter_id = fm.id AND fm.is_split = 1 AND fm.is_active
INNER JOIN pod_filter f ON gf.filter_id_value = f.id AND f.is_active [0.0015029907226562 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a523128;
CREATE TEMPORARY TABLE tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a523128 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00030303001403809 sec]
INSERT IGNORE INTO tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a523128 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_e8napesukvv2ubk428hvsbseei_6a2af5a523128 p
GROUP BY p.filter_id [0.00034999847412109 sec]
SELECT
c.filter_id,
c.count,
f.entry,
f.name AS name,
f.url,
f.ord,
fm.name AS mname,
fm.url AS murl,
fm.ord AS mord
FROM tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a523128 c
INNER JOIN pod_filter f ON c.filter_id = f.id
INNER JOIN pod_filter fm ON f.entry = fm.id
ORDER BY fm.ord DESC, f.ord DESC, c.filter_id [0.00039315223693848 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a523128 [0.00024604797363281 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_e8napesukvv2ubk428hvsbseei_6a2af5a523128 [0.00011396408081055 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a523128 [0.00012421607971191 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a52465a;
CREATE TEMPORARY TABLE tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a52465a (
entry INT NOT NULL,
sub_icon_id INT NOT NULL,
PRIMARY KEY (entry, sub_icon_id)
) ENGINE=MEMORY; [0.00018405914306641 sec]
INSERT IGNORE INTO tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a52465a (entry, sub_icon_id)
SELECT DISTINCT A.entry, A.sub_icon_id FROM (
SELECT g.id as id, g.id as entry, g.sub_icon_id /* cats:115 */
FROM tmp_base_goods g
WHERE g.brand_id IN (100,330,1448) AND
g.is_present AND
1
UNION
SELECT go.id as id, g.id as entry, go.sub_icon_id /* cats:115 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
WHERE g.brand_id IN (100,330,1448) AND
1
) A [0.0003359317779541 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a52465a;
CREATE TEMPORARY TABLE tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a52465a (
sub_icon_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00022196769714355 sec]
INSERT IGNORE INTO tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a52465a (sub_icon_id, count)
SELECT
sub_icon_id,
COUNT(DISTINCT entry) AS count
FROM (
SELECT A.entry, A.sub_icon_id
FROM tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a52465a A
INNER JOIN pod_sub_icon si ON A.sub_icon_id = si.id AND si.is_active_filter = 1
) AA
GROUP BY sub_icon_id [0.00030303001403809 sec]
SELECT
c.sub_icon_id AS id,
c.count,
si.entry,
si.name AS name,
si.url
FROM tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a52465a c
INNER JOIN pod_sub_icon si ON c.sub_icon_id = si.id AND si.is_active_filter = 1
ORDER BY si.ordr, si.name [0.00015592575073242 sec]
SELECT COUNT(*) FROM tmp_base_goods [9.8943710327148E-5 sec]
Array
(
[0] => Array
(
[COUNT(*)] => 538
)
)
SELECT COUNT(*) FROM tmp_sub_goods [0.00011396408081055 sec]
Array
(
[0] => Array
(
[COUNT(*)] => 39
)
)
SELECT COUNT(*) FROM pod_cat_filter WHERE category_id = 2 [0.00013184547424316 sec]
Array
(
[0] => Array
(
[COUNT(*)] => 4
)
)
SELECT COUNT(*) FROM pod_cat_filter WHERE category_id = 3 [0.00013899803161621 sec]
Array
(
[0] => Array
(
[COUNT(*)] => 5
)
)
EXPLAIN SELECT DISTINCT A.id AS goods_id, f.id AS filter_id
FROM tmp_base_goods A
INNER JOIN pod_good_filter gf USE INDEX (id_good) ON gf.id_good = A.id
INNER JOIN pod_cat_filter cf ON gf.filter_id = cf.filter_id AND cf.category_id = 3
INNER JOIN pod_filter fm ON gf.filter_id = fm.id AND fm.is_split = 0 AND fm.is_active
INNER JOIN pod_filter f ON gf.filter_id_value = f.id AND f.is_active; [0.00028109550476074 sec]
Array
(
[0] => Array
(
[id] => 1
[select_type] => SIMPLE
[table] => cf
[type] => ref
[possible_keys] => filter_id,category_id
[key] => category_id
[key_len] => 4
[ref] => const
[rows] => 4
[Extra] => Using temporary
)
[1] => Array
(
[id] => 1
[select_type] => SIMPLE
[table] => fm
[type] => eq_ref
[possible_keys] => PRIMARY,is_active,is_split
[key] => PRIMARY
[key_len] => 4
[ref] => pillow_db_test.cf.filter_id
[rows] => 1
[Extra] => Using where
)
[2] => Array
(
[id] => 1
[select_type] => SIMPLE
[table] => A
[type] => ALL
[possible_keys] => PRIMARY
[key] =>
[key_len] =>
[ref] =>
[rows] => 538
[Extra] => Using join buffer (flat, BNL join)
)
[3] => Array
(
[id] => 1
[select_type] => SIMPLE
[table] => gf
[type] => ref
[possible_keys] => id_good
[key] => id_good
[key_len] => 4
[ref] => pillow_db_test.A.id
[rows] => 1
[Extra] => Using where
)
[4] => Array
(
[id] => 1
[select_type] => SIMPLE
[table] => f
[type] => eq_ref
[possible_keys] => PRIMARY,is_active
[key] => PRIMARY
[key_len] => 4
[ref] => pillow_db_test.gf.filter_id_value
[rows] => 1
[Extra] => Using where
)
)
SELECT DISTINCT A.id AS goods_id, f.id AS filter_id
FROM tmp_base_goods A
INNER JOIN pod_good_filter gf USE INDEX (id_good) ON gf.id_good = A.id
INNER JOIN pod_cat_filter cf ON gf.filter_id = cf.filter_id AND cf.category_id = 3
INNER JOIN pod_filter fm ON gf.filter_id = fm.id AND fm.is_split = 0 AND fm.is_active
INNER JOIN pod_filter f ON gf.filter_id_value = f.id AND f.is_active; [0.044312000274658 sec]
Array
(
[0] => Array
(
[goods_id] => 463080
[filter_id] => 1659
)
[1] => Array
(
[goods_id] => 463081
[filter_id] => 1659
)
[2] => Array
(
[goods_id] => 463082
[filter_id] => 1659
)
[3] => Array
(
[goods_id] => 463083
[filter_id] => 1659
)
[4] => Array
(
[goods_id] => 463084
[filter_id] => 1659
)
[5] => Array
(
[goods_id] => 463085
[filter_id] => 1659
)
[6] => Array
(
[goods_id] => 463089
[filter_id] => 1659
)
[7] => Array
(
[goods_id] => 463090
[filter_id] => 1659
)
[8] => Array
(
[goods_id] => 463091
[filter_id] => 1659
)
[9] => Array
(
[goods_id] => 463092
[filter_id] => 1659
)
[10] => Array
(
[goods_id] => 463093
[filter_id] => 1659
)
[11] => Array
(
[goods_id] => 463094
[filter_id] => 1659
)
[12] => Array
(
[goods_id] => 463098
[filter_id] => 1659
)
[13] => Array
(
[goods_id] => 463099
[filter_id] => 1659
)
[14] => Array
(
[goods_id] => 463100
[filter_id] => 1659
)
[15] => Array
(
[goods_id] => 463101
[filter_id] => 1659
)
[16] => Array
(
[goods_id] => 463102
[filter_id] => 1659
)
[17] => Array
(
[goods_id] => 463103
[filter_id] => 1659
)
[18] => Array
(
[goods_id] => 463108
[filter_id] => 1659
)
[19] => Array
(
[goods_id] => 463109
[filter_id] => 1659
)
[20] => Array
(
[goods_id] => 463110
[filter_id] => 1659
)
[21] => Array
(
[goods_id] => 463111
[filter_id] => 1659
)
[22] => Array
(
[goods_id] => 463112
[filter_id] => 1659
)
[23] => Array
(
[goods_id] => 463113
[filter_id] => 1659
)
[24] => Array
(
[goods_id] => 463118
[filter_id] => 1659
)
[25] => Array
(
[goods_id] => 463119
[filter_id] => 1659
)
[26] => Array
(
[goods_id] => 463120
[filter_id] => 1659
)
[27] => Array
(
[goods_id] => 463121
[filter_id] => 1659
)
[28] => Array
(
[goods_id] => 463122
[filter_id] => 1659
)
[29] => Array
(
[goods_id] => 463123
[filter_id] => 1659
)
[30] => Array
(
[goods_id] => 463129
[filter_id] => 1659
)
[31] => Array
(
[goods_id] => 463130
[filter_id] => 1659
)
[32] => Array
(
[goods_id] => 463131
[filter_id] => 1659
)
[33] => Array
(
[goods_id] => 463132
[filter_id] => 1659
)
[34] => Array
(
[goods_id] => 463133
[filter_id] => 1659
)
[35] => Array
(
[goods_id] => 463134
[filter_id] => 1659
)
[36] => Array
(
[goods_id] => 463140
[filter_id] => 1659
)
[37] => Array
(
[goods_id] => 463141
[filter_id] => 1659
)
[38] => Array
(
[goods_id] => 463142
[filter_id] => 1659
)
[39] => Array
(
[goods_id] => 463143
[filter_id] => 1659
)
[40] => Array
(
[goods_id] => 463144
[filter_id] => 1659
)
[41] => Array
(
[goods_id] => 463145
[filter_id] => 1659
)
[42] => Array
(
[goods_id] => 463146
[filter_id] => 1659
)
[43] => Array
(
[goods_id] => 463147
[filter_id] => 1659
)
[44] => Array
(
[goods_id] => 463148
[filter_id] => 1659
)
[45] => Array
(
[goods_id] => 463149
[filter_id] => 1659
)
[46] => Array
(
[goods_id] => 463150
[filter_id] => 1659
)
[47] => Array
(
[goods_id] => 463151
[filter_id] => 1659
)
[48] => Array
(
[goods_id] => 463152
[filter_id] => 1659
)
[49] => Array
(
[goods_id] => 463153
[filter_id] => 1659
)
[50] => Array
(
[goods_id] => 463154
[filter_id] => 1659
)
[51] => Array
(
[goods_id] => 463155
[filter_id] => 1659
)
[52] => Array
(
[goods_id] => 463156
[filter_id] => 1659
)
[53] => Array
(
[goods_id] => 463157
[filter_id] => 1659
)
[54] => Array
(
[goods_id] => 463158
[filter_id] => 1659
)
[55] => Array
(
[goods_id] => 463159
[filter_id] => 1659
)
[56] => Array
(
[goods_id] => 463160
[filter_id] => 1659
)
[57] => Array
(
[goods_id] => 463161
[filter_id] => 1659
)
[58] => Array
(
[goods_id] => 463162
[filter_id] => 1659
)
[59] => Array
(
[goods_id] => 463163
[filter_id] => 1659
)
[60] => Array
(
[goods_id] => 463164
[filter_id] => 1659
)
[61] => Array
(
[goods_id] => 463165
[filter_id] => 1659
)
[62] => Array
(
[goods_id] => 463166
[filter_id] => 1659
)
[63] => Array
(
[goods_id] => 463167
[filter_id] => 25
)
[64] => Array
(
[goods_id] => 463168
[filter_id] => 25
)
[65] => Array
(
[goods_id] => 463169
[filter_id] => 25
)
[66] => Array
(
[goods_id] => 463172
[filter_id] => 1659
)
[67] => Array
(
[goods_id] => 463173
[filter_id] => 1659
)
[68] => Array
(
[goods_id] => 463175
[filter_id] => 1659
)
[69] => Array
(
[goods_id] => 463189
[filter_id] => 1659
)
[70] => Array
(
[goods_id] => 463201
[filter_id] => 1659
)
[71] => Array
(
[goods_id] => 463202
[filter_id] => 1659
)
[72] => Array
(
[goods_id] => 463203
[filter_id] => 1659
)
[73] => Array
(
[goods_id] => 463206
[filter_id] => 1659
)
[74] => Array
(
[goods_id] => 463207
[filter_id] => 1659
)
[75] => Array
(
[goods_id] => 463209
[filter_id] => 1659
)
[76] => Array
(
[goods_id] => 463210
[filter_id] => 1659
)
[77] => Array
(
[goods_id] => 463218
[filter_id] => 27
)
[78] => Array
(
[goods_id] => 463219
[filter_id] => 27
)
[79] => Array
(
[goods_id] => 463310
[filter_id] => 25
)
)
DROP TEMPORARY TABLE IF EXISTS tmp_A_e8napesukvv2ubk428hvsbseei_6a2af5a52465a [0.0005030632019043 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_e8napesukvv2ubk428hvsbseei_6a2af5a52465a [0.00013613700866699 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_base_goods;
DROP TEMPORARY TABLE IF EXISTS tmp_sub_goods [0.00017595291137695 sec]
Низкие цены на Кастрюли Biederlack ... Tefal (Біeдeрлaк ... Teфaл) – большой выбор, фото. Купить Кастрюли Biederlack ... Tefal (Біeдeрлaк ... Teфaл) в Киеве и Украине
Кастрюли Biederlack ... Tefal