Кофты и свитера для девочек : флис, размер 140, размер 158
Производитель: Bembi (Украина)
SELECT url_to, r404
FROM pod_redirect
WHERE BINARY REPLACE(url_from,'/ru/','/') = '/kofty_dlya_devochek/flis-razmer__140-razmer_158.html' LIMIT 0,1 [0.00064301490783691 sec]
SELECT pod_filter.id,pod_filter.url FROM pod_filter WHERE BINARY pod_filter.url IN ('flis','razmer__140','razmer_158') order by url [0.0015909671783447 sec]
SELECT pod_sub_icon.id,pod_sub_icon.url FROM pod_sub_icon WHERE BINARY pod_sub_icon.url IN ('flis','razmer__140','razmer_158') order by url [0.0012528896331787 sec]
SELECT id, url FROM pod_filter WHERE url IN ('flis','razmer__140','razmer_158') [0.00069379806518555 sec]
SELECT id, url FROM pod_sub_icon WHERE url IN ('flis','razmer__140','razmer_158') [0.00061297416687012 sec]
SELECT f.id, mf.id as mf_id, mf.is_split
FROM pod_filter f
INNER JOIN pod_filter mf ON f.entry = mf.id
WHERE f.id in (683,1256,1253) and f.is_active AND mf.is_active
ORDER BY mf.id, f.id [0.00058412551879883 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.00053000450134277 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 (347) 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 (347) AND g.entry=0 AND g.is_active AND g.is_present_all_mods [0.038554906845093 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.00060415267944336 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.010568141937256 sec]
SELECT g.id /* cats:347 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE g.is_present AND
1
UNION
SELECT g.id /* cats:347 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON go.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE 1
[0.021831035614014 sec]
CREATE TEMPORARY TABLE temp_brand_counts_6a2b396ff17fa (
id INT,
gid INT,
INDEX idx_id (id),
INDEX idx_gid (gid)
) [0.00033903121948242 sec]
INSERT INTO temp_brand_counts_6a2b396ff17fa (id, gid)
SELECT g.brand_id AS id, g.id AS gid /* cats:347 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE g.is_present AND
1
UNION
SELECT g.brand_id AS id, g.id AS gid /* cats:347 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON go.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE 1
[0.0033929347991943 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_6a2b396ff17fa
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.00056099891662598 sec]
DROP TEMPORARY TABLE IF EXISTS temp_brand_counts_6a2b396ff17fa [0.00019001960754395 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:347 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE g.is_present AND
1
UNION
SELECT MIN(go.price) AS min_price, MAX(go.price) AS max_price /* cats:347 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON go.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE 1
) A
[0.0024020671844482 sec]
SELECT g.id /* cats:347 */,if(g.is_present and g.price >= '554' and g.price <= '698',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 >= '554' and g.price <= '698',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 >= '554' AND pcg.price <= '698'
WHERE g.id IN (408762,408802,465345)
GROUP BY g.id
ORDER BY g.ordr desc
LIMIT 0, 32 [0.0040490627288818 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 >= '554' and g.price <= '698',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 >= '554' and g.price <= '698',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 >= '554' and pcg.price <= '698')
WHERE g.id in (408802,465345,408762)
GROUP BY g.id
ORDER BY g.ordr desc [0.0014309883117676 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 (408762,408802,465345) AND g.is_present = '1' AND g.is_active = '1'
ORDER BY g.entry, g.is_present DESC [0.00068497657775879 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 (408762,408802,465345)
ORDER BY ggd2.good_id, g.is_present_all_mods DESC [0.0011060237884521 sec]
SELECT id, name AS name, url FROM pod_filter WHERE id in (683,1256,1253) AND is_active='1' [0.00028586387634277 sec]
SELECT cf.id,
cf.info AS info,
cf.title AS title,
cf.metadesc AS metadesc,
cf.seo_text AS seo_text,
cf.tagH1 AS tagH1,
cf.is_active
FROM pod_set_cat_subicon cf
INNER JOIN pod_sub_icon f ON cf.subicon_id = f.id
WHERE cf.cat_id = 347
AND f.url = 'flis' LIMIT 1 [0.00045895576477051 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b397004f49;
CREATE TEMPORARY TABLE tmp_A_pr72ettloubii881n2bandppab_6a2b397004f49 (
id INT NOT NULL,
PRIMARY KEY (id)
) ENGINE=MEMORY; [0.00042486190795898 sec]
INSERT INTO tmp_A_pr72ettloubii881n2bandppab_6a2b397004f49 (id) SELECT A.id FROM (
SELECT g.id /* cats:347 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE g.is_present AND
1
UNION
SELECT g.id /* cats:347 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON go.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE 1
) A [0.0033071041107178 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b397004f49;
CREATE TEMPORARY TABLE tmp_pairs_pr72ettloubii881n2bandppab_6a2b397004f49 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00032806396484375 sec]
INSERT INTO tmp_pairs_pr72ettloubii881n2bandppab_6a2b397004f49 (goods_id, filter_id)
SELECT DISTINCT
A.id AS goods_id,
f.id AS filter_id
FROM tmp_A_pr72ettloubii881n2bandppab_6a2b397004f49 A
INNER JOIN pod_good_filter gf ON A.id = gf.id_good AND gf.filter_id_value NOT IN (683,1253,1256)
INNER JOIN pod_cat_filter cf ON gf.filter_id = cf.filter_id AND cf.category_id = 347
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.014275074005127 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b397004f49;
CREATE TEMPORARY TABLE tmp_counts_pr72ettloubii881n2bandppab_6a2b397004f49 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00041913986206055 sec]
INSERT IGNORE INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b397004f49 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_pr72ettloubii881n2bandppab_6a2b397004f49 p
GROUP BY p.filter_id [0.00043106079101562 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_pr72ettloubii881n2bandppab_6a2b397004f49 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.00045084953308105 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b397004f49 [0.00044083595275879 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b397004f49 [0.0001370906829834 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b397004f49 [0.00011682510375977 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b39700a20f;
CREATE TEMPORARY TABLE tmp_A_pr72ettloubii881n2bandppab_6a2b39700a20f (
id INT NOT NULL,
entry INT NOT NULL,
PRIMARY KEY (id),
KEY idx_entry (entry)
) ENGINE=MEMORY; [0.00023102760314941 sec]
INSERT INTO tmp_A_pr72ettloubii881n2bandppab_6a2b39700a20f (id, entry) SELECT A.id, A.entry FROM (
SELECT g.id as id, g.id as entry /* cats:347 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE g.is_present AND
1
UNION
SELECT go.id as id, g.id as entry /* cats:347 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON go.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE 1
) A [0.0040230751037598 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b39700a20f;
CREATE TEMPORARY TABLE tmp_pairs_pr72ettloubii881n2bandppab_6a2b39700a20f (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00029706954956055 sec]
INSERT INTO tmp_pairs_pr72ettloubii881n2bandppab_6a2b39700a20f (goods_id, filter_id)
SELECT DISTINCT
A.entry AS goods_id,
f.id AS filter_id
FROM tmp_A_pr72ettloubii881n2bandppab_6a2b39700a20f A
INNER JOIN pod_good_filter gf ON A.id = gf.id_good AND gf.filter_id_value NOT IN (683,1253,1256)
INNER JOIN pod_cat_filter cf ON gf.filter_id = cf.filter_id AND cf.category_id = 347
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.0011179447174072 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b39700a20f;
CREATE TEMPORARY TABLE tmp_counts_pr72ettloubii881n2bandppab_6a2b39700a20f (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.0002901554107666 sec]
INSERT IGNORE INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b39700a20f (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_pr72ettloubii881n2bandppab_6a2b39700a20f p
GROUP BY p.filter_id [0.0003199577331543 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_pr72ettloubii881n2bandppab_6a2b39700a20f 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.00032687187194824 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b39700a20f [0.00018692016601562 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b39700a20f [0.00012588500976562 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b39700a20f [0.00010895729064941 sec]
SELECT f.id, mf.id as mf_id, mf.is_split
FROM pod_filter f
INNER JOIN pod_filter mf ON f.entry = mf.id
WHERE f.id in (1256,1253) and f.is_active AND mf.is_active
ORDER BY mf.id, f.id [0.00044393539428711 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b39700c3c9;
CREATE TEMPORARY TABLE tmp_A_pr72ettloubii881n2bandppab_6a2b39700c3c9 (
id INT NOT NULL,
PRIMARY KEY (id)
) ENGINE=MEMORY; [0.000244140625 sec]
INSERT INTO tmp_A_pr72ettloubii881n2bandppab_6a2b39700c3c9 (id) SELECT A.id FROM (
SELECT g.id /* cats:347 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (1253,1256)
WHERE g.is_present AND
1
UNION
SELECT g.id /* cats:347 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
INNER JOIN pod_good_filter gf0 ON go.id = gf0.id_good AND gf0.filter_id_value in (1253,1256)
WHERE 1
) A [0.0034379959106445 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b39700c3c9;
CREATE TEMPORARY TABLE tmp_pairs_pr72ettloubii881n2bandppab_6a2b39700c3c9 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00022006034851074 sec]
INSERT INTO tmp_pairs_pr72ettloubii881n2bandppab_6a2b39700c3c9 (goods_id, filter_id)
SELECT DISTINCT
A.id AS goods_id,
f.id AS filter_id
FROM tmp_A_pr72ettloubii881n2bandppab_6a2b39700c3c9 A
INNER JOIN pod_good_filter gf ON A.id = gf.id_good AND gf.filter_id = 122
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.01087498664856 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b39700c3c9;
CREATE TEMPORARY TABLE tmp_counts_pr72ettloubii881n2bandppab_6a2b39700c3c9 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00044012069702148 sec]
INSERT INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b39700c3c9 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_pr72ettloubii881n2bandppab_6a2b39700c3c9 p
GROUP BY p.filter_id [0.0004570484161377 sec]
INSERT IGNORE INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b39700c3c9 (filter_id, count)
SELECT pf.id, 0
FROM pod_filter pf
LEFT JOIN tmp_counts_pr72ettloubii881n2bandppab_6a2b39700c3c9 c ON c.filter_id = pf.id
WHERE pf.id in (683) AND c.filter_id IS NULL [0.00027585029602051 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_pr72ettloubii881n2bandppab_6a2b39700c3c9 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.00039505958557129 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b39700c3c9 [0.00029802322387695 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b39700c3c9 [0.00012588500976562 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b39700c3c9 [0.00011992454528809 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b397010d07;
CREATE TEMPORARY TABLE tmp_A_pr72ettloubii881n2bandppab_6a2b397010d07 (
id INT NOT NULL,
entry INT NOT NULL,
PRIMARY KEY (id),
KEY idx_entry (entry)
) ENGINE=MEMORY [0.00023913383483887 sec]
INSERT INTO tmp_A_pr72ettloubii881n2bandppab_6a2b397010d07 (id, entry) SELECT A.id, A.entry FROM (
SELECT g.id as id, g.id as entry /* cats:347 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
WHERE g.is_present AND
1
UNION
SELECT go.id as id, g.id as entry /* cats:347 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
WHERE 1
) A [0.001194953918457 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b397010d07;
CREATE TEMPORARY TABLE tmp_pairs_pr72ettloubii881n2bandppab_6a2b397010d07 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY [0.00034904479980469 sec]
INSERT INTO tmp_pairs_pr72ettloubii881n2bandppab_6a2b397010d07 (goods_id, filter_id)
SELECT DISTINCT
A.entry AS goods_id,
f.id AS filter_id
FROM tmp_A_pr72ettloubii881n2bandppab_6a2b397010d07 A
INNER JOIN pod_good_filter gf ON A.id = gf.id_good AND gf.filter_id = 1246
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.0060398578643799 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b397010d07;
CREATE TEMPORARY TABLE tmp_counts_pr72ettloubii881n2bandppab_6a2b397010d07 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY [0.00035309791564941 sec]
INSERT INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b397010d07 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_pr72ettloubii881n2bandppab_6a2b397010d07 p
GROUP BY p.filter_id [0.00040984153747559 sec]
INSERT INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b397010d07 (filter_id, count)
SELECT pf.id, 0
FROM pod_filter pf
LEFT JOIN tmp_counts_pr72ettloubii881n2bandppab_6a2b397010d07 c ON c.filter_id = pf.id
WHERE pf.id in (1253,1256) AND c.filter_id IS NULL [0.00034785270690918 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_pr72ettloubii881n2bandppab_6a2b397010d07 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.00040316581726074 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b397010d07 [0.00027298927307129 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b397010d07 [0.00013184547424316 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b397010d07 [0.00011396408081055 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b397013900;
CREATE TEMPORARY TABLE tmp_A_pr72ettloubii881n2bandppab_6a2b397013900 (
entry INT NOT NULL,
sub_icon_id INT NOT NULL,
PRIMARY KEY (entry, sub_icon_id)
) ENGINE=MEMORY; [0.00022983551025391 sec]
INSERT IGNORE INTO tmp_A_pr72ettloubii881n2bandppab_6a2b397013900 (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:347 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE g.is_present AND
1
UNION
SELECT go.id as id, g.id as entry, go.sub_icon_id /* cats:347 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (683)
INNER JOIN pod_good_filter gf1 ON go.id = gf1.id_good AND gf1.filter_id_value in (1253,1256)
WHERE 1
) A [0.0038700103759766 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b397013900;
CREATE TEMPORARY TABLE tmp_counts_pr72ettloubii881n2bandppab_6a2b397013900 (
sub_icon_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00036191940307617 sec]
INSERT IGNORE INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b397013900 (sub_icon_id, count)
SELECT
sub_icon_id,
COUNT(DISTINCT entry) AS count
FROM (
SELECT A.entry, A.sub_icon_id
FROM tmp_A_pr72ettloubii881n2bandppab_6a2b397013900 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.0004730224609375 sec]
SELECT
c.sub_icon_id AS id,
c.count,
si.entry,
si.name AS name,
si.url
FROM tmp_counts_pr72ettloubii881n2bandppab_6a2b397013900 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.00025391578674316 sec]
-----------------------------
SELECT COUNT(*) FROM pod_good_filter
WHERE id_good IN (SELECT id FROM tmp_base_goods); [0.0021090507507324 sec]
Array
(
[0] => Array
(
[COUNT(*)] => 846
)
)
SELECT COUNT(DISTINCT filter_id) FROM pod_good_filter
WHERE id_good IN (SELECT id FROM tmp_base_goods); [0.0035910606384277 sec]
Array
(
[0] => Array
(
[COUNT(DISTINCT filter_id)] => 5
)
)
-----------------------------
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b397013900 [0.00030207633972168 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b397013900 [0.00018000602722168 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_base_goods;
DROP TEMPORARY TABLE IF EXISTS tmp_sub_goods [0.00022602081298828 sec]
DEVELOPMENT🌷СКИДКИ ДО 70%
ПЕРЕЙТИ
Производитель: Bembi (Украина)