Кастрюли Empire ... Nois
Производитель: Nois (Польша)
Производитель: Nois (Польша)
Производитель: Nois (Польша)
Производитель: Nois (Польша)
Производитель: Nois (Польша)
Производитель: Nois (Польша)
Производитель: Nois (Польша)
SELECT url_to, r404
FROM pod_redirect
WHERE BINARY REPLACE(url_from,'/ru/','/') = '/kastryuli/pan_m26-empire-risoli-nois.html' LIMIT 0,1 [0.00061702728271484 sec]
SELECT pod_filter.id,pod_filter.url FROM pod_filter WHERE BINARY pod_filter.url IN ('pan_m26','empire','risoli','nois') order by url [0.0015580654144287 sec]
SELECT pod_sub_icon.id,pod_sub_icon.url FROM pod_sub_icon WHERE BINARY pod_sub_icon.url IN ('pan_m26','empire','risoli','nois') order by url [0.0011918544769287 sec]
select id,url from pod_cat_brand where BINARY url IN ('pan_m26','empire','risoli','nois') [0.0018930435180664 sec]
SELECT id, url FROM pod_filter WHERE url IN ('pan_m26','empire','risoli','nois') [0.00069499015808105 sec]
SELECT id, url FROM pod_sub_icon WHERE url IN ('pan_m26','empire','risoli','nois') [0.00063705444335938 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.0005040168762207 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.44555592536926 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.00051999092102051 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.0054919719696045 sec]
SELECT g.id /* cats:115 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (98)
WHERE g.brand_id IN (421,2445,2453) AND
g.is_present AND
1
UNION
SELECT g.id /* cats:115 */
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 (98)
WHERE g.brand_id IN (421,2445,2453) AND
1
[0.00088286399841309 sec]
CREATE TEMPORARY TABLE temp_brand_counts_6a2b392d47a66 (
id INT,
gid INT,
INDEX idx_id (id),
INDEX idx_gid (gid)
) [0.00063490867614746 sec]
INSERT INTO temp_brand_counts_6a2b392d47a66 (id, gid)
SELECT g.brand_id AS id, g.id AS gid /* cats:115 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (98)
WHERE g.is_present AND
1
UNION
SELECT g.brand_id AS id, g.id AS gid /* cats:115 */
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 (98)
WHERE 1
UNION
SELECT id, null gid
FROM pod_cat_category
WHERE id in (421,2445,2453) [0.00074505805969238 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_6a2b392d47a66
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.00038719177246094 sec]
DROP TEMPORARY TABLE IF EXISTS temp_brand_counts_6a2b392d47a66 [0.00013494491577148 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
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (98)
WHERE g.brand_id IN (421,2445,2453) 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
INNER JOIN pod_good_filter gf0 ON go.id = gf0.id_good AND gf0.filter_id_value in (98)
WHERE g.brand_id IN (421,2445,2453) AND
1
) A
[0.0006861686706543 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 >= '3613' 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 >= '3613' 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 >= '3613' and pcg.price <= '5469')
WHERE g.id in (463309,463317,463314,508067,463315,463308,463316)
GROUP BY g.id
ORDER BY g.ordr desc [0.0027461051940918 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 (463308,463309,463314,463315,463316,463317,508067)
ORDER BY ggd2.good_id, g.is_present_all_mods DESC [0.0009770393371582 sec]
SELECT name AS name, url FROM pod_cat_brand WHERE id in (421,2445,2453) [0.00017309188842773 sec]
SELECT name AS name, url FROM pod_cat_brand WHERE id='421.2445.2453' [0.00013399124145508 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b392d4c076;
CREATE TEMPORARY TABLE tmp_A_pr72ettloubii881n2bandppab_6a2b392d4c076 (
id INT NOT NULL,
PRIMARY KEY (id)
) ENGINE=MEMORY; [0.0002598762512207 sec]
INSERT INTO tmp_A_pr72ettloubii881n2bandppab_6a2b392d4c076 (id) SELECT A.id FROM (
SELECT g.id /* cats:115 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (98)
WHERE g.brand_id IN (421,2445,2453) AND
g.is_present AND
1
UNION
SELECT g.id /* cats:115 */
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 (98)
WHERE g.brand_id IN (421,2445,2453) AND
1
) A [0.00054001808166504 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4c076;
CREATE TEMPORARY TABLE tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4c076 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00013017654418945 sec]
INSERT INTO tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4c076 (goods_id, filter_id)
SELECT DISTINCT
A.id AS goods_id,
f.id AS filter_id
FROM tmp_A_pr72ettloubii881n2bandppab_6a2b392d4c076 A
INNER JOIN pod_good_filter gf ON A.id = gf.id_good AND gf.filter_id_value NOT IN (98)
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.0039300918579102 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4c076;
CREATE TEMPORARY TABLE tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4c076 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00017809867858887 sec]
INSERT IGNORE INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4c076 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4c076 p
GROUP BY p.filter_id [0.00016999244689941 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_6a2b392d4c076 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.00020599365234375 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b392d4c076 [0.00010800361633301 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4c076 [6.2942504882812E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4c076 [5.793571472168E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b392d4d8d6;
CREATE TEMPORARY TABLE tmp_A_pr72ettloubii881n2bandppab_6a2b392d4d8d6 (
id INT NOT NULL,
entry INT NOT NULL,
PRIMARY KEY (id),
KEY idx_entry (entry)
) ENGINE=MEMORY; [0.00012683868408203 sec]
INSERT INTO tmp_A_pr72ettloubii881n2bandppab_6a2b392d4d8d6 (id, entry) SELECT A.id, A.entry FROM (
SELECT g.id as id, g.id as entry /* cats:115 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (98)
WHERE g.brand_id IN (421,2445,2453) 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
INNER JOIN pod_good_filter gf0 ON go.id = gf0.id_good AND gf0.filter_id_value in (98)
WHERE g.brand_id IN (421,2445,2453) AND
1
) A [0.00039505958557129 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4d8d6;
CREATE TEMPORARY TABLE tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4d8d6 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00015807151794434 sec]
INSERT INTO tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4d8d6 (goods_id, filter_id)
SELECT DISTINCT
A.entry AS goods_id,
f.id AS filter_id
FROM tmp_A_pr72ettloubii881n2bandppab_6a2b392d4d8d6 A
INNER JOIN pod_good_filter gf ON A.id = gf.id_good AND gf.filter_id_value NOT IN (98)
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.00047397613525391 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4d8d6;
CREATE TEMPORARY TABLE tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4d8d6 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00013899803161621 sec]
INSERT IGNORE INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4d8d6 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4d8d6 p
GROUP BY p.filter_id [0.00015091896057129 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_6a2b392d4d8d6 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.00016903877258301 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b392d4d8d6 [0.00011301040649414 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4d8d6 [6.413459777832E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4d8d6 [6.0081481933594E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b392d4e228;
CREATE TEMPORARY TABLE tmp_A_pr72ettloubii881n2bandppab_6a2b392d4e228 (
id INT NOT NULL,
entry INT NOT NULL,
PRIMARY KEY (id),
KEY idx_entry (entry)
) ENGINE=MEMORY [0.00013613700866699 sec]
INSERT INTO tmp_A_pr72ettloubii881n2bandppab_6a2b392d4e228 (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 (421,2445,2453) 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 (421,2445,2453) AND
1
) A [0.00026416778564453 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4e228;
CREATE TEMPORARY TABLE tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4e228 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY [0.00018095970153809 sec]
INSERT INTO tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4e228 (goods_id, filter_id)
SELECT DISTINCT
A.entry AS goods_id,
f.id AS filter_id
FROM tmp_A_pr72ettloubii881n2bandppab_6a2b392d4e228 A
INNER JOIN pod_good_filter gf ON A.id = gf.id_good AND gf.filter_id = 86
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.0020709037780762 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4e228;
CREATE TEMPORARY TABLE tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4e228 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY [0.00016498565673828 sec]
INSERT INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4e228 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4e228 p
GROUP BY p.filter_id [0.00016307830810547 sec]
INSERT INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4e228 (filter_id, count)
SELECT pf.id, 0
FROM pod_filter pf
LEFT JOIN tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4e228 c ON c.filter_id = pf.id
WHERE pf.id in (98) AND c.filter_id IS NULL [0.00013399124145508 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_6a2b392d4e228 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.00018715858459473 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b392d4e228 [0.00014400482177734 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_pr72ettloubii881n2bandppab_6a2b392d4e228 [6.6041946411133E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4e228 [5.6028366088867E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b392d4f22e;
CREATE TEMPORARY TABLE tmp_A_pr72ettloubii881n2bandppab_6a2b392d4f22e (
entry INT NOT NULL,
sub_icon_id INT NOT NULL,
PRIMARY KEY (entry, sub_icon_id)
) ENGINE=MEMORY; [0.00013017654418945 sec]
INSERT IGNORE INTO tmp_A_pr72ettloubii881n2bandppab_6a2b392d4f22e (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
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (98)
WHERE g.brand_id IN (421,2445,2453) 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
INNER JOIN pod_good_filter gf0 ON go.id = gf0.id_good AND gf0.filter_id_value in (98)
WHERE g.brand_id IN (421,2445,2453) AND
1
) A [0.00046300888061523 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4f22e;
CREATE TEMPORARY TABLE tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4f22e (
sub_icon_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00015783309936523 sec]
INSERT IGNORE INTO tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4f22e (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_6a2b392d4f22e 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.00021982192993164 sec]
SELECT
c.sub_icon_id AS id,
c.count,
si.entry,
si.name AS name,
si.url
FROM tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4f22e 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.0001220703125 sec]
-----------------------------
SELECT COUNT(*) FROM pod_good_filter
WHERE id_good IN (SELECT id FROM tmp_base_goods); [0.0071280002593994 sec]
Array
(
[0] => Array
(
[COUNT(*)] => 4005
)
)
SELECT COUNT(DISTINCT filter_id) FROM pod_good_filter
WHERE id_good IN (SELECT id FROM tmp_base_goods); [0.017736911773682 sec]
Array
(
[0] => Array
(
[COUNT(DISTINCT filter_id)] => 8
)
)
-----------------------------
DROP TEMPORARY TABLE IF EXISTS tmp_A_pr72ettloubii881n2bandppab_6a2b392d4f22e [0.00014996528625488 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_pr72ettloubii881n2bandppab_6a2b392d4f22e [6.5088272094727E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_base_goods;
DROP TEMPORARY TABLE IF EXISTS tmp_sub_goods [0.00010395050048828 sec]
DEVELOPMENT🌷СКИДКИ ДО 70%
ПЕРЕЙТИ
Производитель: Nois (Польша)
Производитель: Nois (Польша)
Производитель: Nois (Польша)
Производитель: Nois (Польша)
Производитель: Nois (Польша)
Производитель: Nois (Польша)
Производитель: Nois (Польша)