SELECT url_to, r404
FROM pod_redirect
WHERE BINARY REPLACE(url_from,'/ru/','/') = '/kastryuli/luminarc-simax-woll-risoli-nois-flonal.html' LIMIT 0,1 [0.0005040168762207 sec]
SELECT pod_filter.id,pod_filter.url FROM pod_filter WHERE BINARY pod_filter.url IN ('luminarc','simax','woll','risoli','nois','flonal') order by url [0.0016379356384277 sec]
SELECT pod_sub_icon.id,pod_sub_icon.url FROM pod_sub_icon WHERE BINARY pod_sub_icon.url IN ('luminarc','simax','woll','risoli','nois','flonal') order by url [0.0011560916900635 sec]
select id,url from pod_cat_brand where BINARY url = 'luminarc-simax-woll-risoli-nois-flonal' [0.0016541481018066 sec]
select id,url from pod_cat_brand where url = 'luminarc-simax-woll-risoli-nois-flonal' [0.00036907196044922 sec]
select id,url from pod_cat_brand where url in ('luminarc','simax','woll','risoli','nois','flonal') [0.0010099411010742 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.00044417381286621 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.21150517463684 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.00044703483581543 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.0027468204498291 sec]
SELECT g.id /* cats:115 */
FROM tmp_base_goods g
WHERE g.brand_id IN (2500,128,2453,2445,327,1832) AND
1
[0.00027990341186523 sec]
CREATE TEMPORARY TABLE temp_brand_counts_6a2af4684f111 (
id INT,
gid INT,
INDEX idx_id (id),
INDEX idx_gid (gid)
) [0.0010251998901367 sec]
INSERT INTO temp_brand_counts_6a2af4684f111 (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 (2500,128,2453,2445,327,1832) [0.0034010410308838 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_6a2af4684f111
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.0011348724365234 sec]
DROP TEMPORARY TABLE IF EXISTS temp_brand_counts_6a2af4684f111 [0.00020122528076172 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 (2500,128,2453,2445,327,1832) 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 (2500,128,2453,2445,327,1832) AND
1
) A
[0.00061702728271484 sec]
SELECT g.id /* cats:115 */,if(g.is_present and g.price >= '556' and g.price <= '5469',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 >= '556' and g.price <= '5469',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 >= '556' AND pcg.price <= '5469'
WHERE g.id IN (480055,281299,281243,281238,281237,281236,281235,281234,281222,463310,508068,508067,463318,463317,463316,463315,463314,463313,463312,463311,463309,463308,463307,463306,444760,444758,444714,444711,444674,444304,444206)
GROUP BY g.id
ORDER BY g.ordr desc
LIMIT 0, 32 [0.0029129981994629 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 >= '556' and g.price <= '5469',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 >= '556' and g.price <= '5469',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 >= '556' and pcg.price <= '5469')
WHERE g.id in (480055,444206,444714,444674,444304,281235,281299,281234,281243,281222,281238,281237,281236,508067,463313,463306,463317,463310,508068,463314,463307,463318,463311,444758,463315,463308,463312,444760,463316,463309,444711)
GROUP BY g.id
ORDER BY g.ordr desc [0.0053050518035889 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 (480055,444206,444714,444674,444304,281235,281299,281234,281243,281222,281238,281237,281236,463306,463307,463308,463309,444711,463310,463312,463313,444758,463314,444760,463315,463311,463316,463317,463318,508067,508068) AND g.is_active = '1'
ORDER BY g.entry, g.is_present DESC [0.0010750293731689 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 (480055,444206,444714,444674,444304,281235,281299,281234,281243,281222,281238,281237,281236,463306,463307,463308,463309,444711,463310,463312,463313,444758,463314,444760,463315,463311,463316,463317,463318,508067,508068)
ORDER BY ggd2.good_id, g.is_present_all_mods DESC [0.0044269561767578 sec]
SELECT name AS name, url FROM pod_cat_brand WHERE id in (2500,128,2453,2445,327,1832) [0.00041389465332031 sec]
SELECT name AS name, url FROM pod_cat_brand WHERE id='2500.128.2453.2445.327.1832' [0.0003359317779541 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685804f;
CREATE TEMPORARY TABLE tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685804f (
id INT NOT NULL,
PRIMARY KEY (id)
) ENGINE=MEMORY; [0.0004580020904541 sec]
INSERT INTO tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685804f (id) SELECT A.id FROM (
SELECT g.id /* cats:115 */
FROM tmp_base_goods g
WHERE g.brand_id IN (2500,128,2453,2445,327,1832) AND
1
) A [0.0005500316619873 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_afg32ttuaucv62iojeq85bolc0_6a2af4685804f;
CREATE TEMPORARY TABLE tmp_pairs_afg32ttuaucv62iojeq85bolc0_6a2af4685804f (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00040292739868164 sec]
INSERT INTO tmp_pairs_afg32ttuaucv62iojeq85bolc0_6a2af4685804f (goods_id, filter_id)
SELECT DISTINCT
A.id AS goods_id,
f.id AS filter_id
FROM tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685804f 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.0044310092926025 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685804f;
CREATE TEMPORARY TABLE tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685804f (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00045180320739746 sec]
INSERT IGNORE INTO tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685804f (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_afg32ttuaucv62iojeq85bolc0_6a2af4685804f p
GROUP BY p.filter_id [0.00045084953308105 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_afg32ttuaucv62iojeq85bolc0_6a2af4685804f 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.00056886672973633 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685804f [0.00032591819763184 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_afg32ttuaucv62iojeq85bolc0_6a2af4685804f [0.00017118453979492 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685804f [0.00017809867858887 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2;
CREATE TEMPORARY TABLE tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 (
id INT NOT NULL,
entry INT NOT NULL,
PRIMARY KEY (id),
KEY idx_entry (entry)
) ENGINE=MEMORY; [0.00044989585876465 sec]
INSERT INTO tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 (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 (2500,128,2453,2445,327,1832) 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 (2500,128,2453,2445,327,1832) AND
1
) A [0.0007779598236084 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2;
CREATE TEMPORARY TABLE tmp_pairs_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.0004730224609375 sec]
INSERT INTO tmp_pairs_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 (goods_id, filter_id)
SELECT DISTINCT
A.entry AS goods_id,
f.id AS filter_id
FROM tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 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.0021770000457764 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2;
CREATE TEMPORARY TABLE tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00043106079101562 sec]
INSERT IGNORE INTO tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 p
GROUP BY p.filter_id [0.00050497055053711 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_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 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.00049710273742676 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 [0.00037884712219238 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 [0.00017285346984863 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685a4d2 [0.00016903877258301 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685c25a;
CREATE TEMPORARY TABLE tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685c25a (
entry INT NOT NULL,
sub_icon_id INT NOT NULL,
PRIMARY KEY (entry, sub_icon_id)
) ENGINE=MEMORY; [0.00035881996154785 sec]
INSERT IGNORE INTO tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685c25a (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 (2500,128,2453,2445,327,1832) 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 (2500,128,2453,2445,327,1832) AND
1
) A [0.00069999694824219 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685c25a;
CREATE TEMPORARY TABLE tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685c25a (
sub_icon_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00038814544677734 sec]
INSERT IGNORE INTO tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685c25a (sub_icon_id, count)
SELECT
sub_icon_id,
COUNT(DISTINCT entry) AS count
FROM (
SELECT A.entry, A.sub_icon_id
FROM tmp_A_afg32ttuaucv62iojeq85bolc0_6a2af4685c25a 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.0005190372467041 sec]
SELECT
c.sub_icon_id AS id,
c.count,
si.entry,
si.name AS name,
si.url
FROM tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685c25a 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.00032901763916016 sec]
SELECT COUNT(*) FROM tmp_base_goods [0.00016498565673828 sec]
Array
(
[0] => Array
(
[COUNT(*)] => 538
)
)
SELECT COUNT(*) FROM tmp_sub_goods [0.0001227855682373 sec]
Array
(
[0] => Array
(
[COUNT(*)] => 39
)
)
SELECT COUNT(*) FROM pod_cat_filter WHERE category_id = 2 [0.00021004676818848 sec]
Array
(
[0] => Array
(
[COUNT(*)] => 4
)
)
SELECT COUNT(*) FROM pod_cat_filter WHERE category_id = 3 [0.00026392936706543 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.00047016143798828 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.029181957244873 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_afg32ttuaucv62iojeq85bolc0_6a2af4685c25a [0.00032496452331543 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_afg32ttuaucv62iojeq85bolc0_6a2af4685c25a [0.00012803077697754 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_base_goods;
DROP TEMPORARY TABLE IF EXISTS tmp_sub_goods [0.00029778480529785 sec]
Низкие цены на Кастрюли Luminarc ... Flonal (Лумінaрк ... Флoнaл) – большой выбор, фото. Купить Кастрюли Luminarc ... Flonal (Лумінaрк ... Флoнaл) в Киеве и Украине
Кастрюли Luminarc ... Flonal