SELECT url_to, r404
FROM pod_redirect
WHERE BINARY REPLACE(url_from,'/ru/','/') = '/odeyala/othello-sonex-andersen-ukono-arcloud.html' LIMIT 0,1 [0.00081706047058105 sec]
SELECT pod_filter.id,pod_filter.url FROM pod_filter WHERE BINARY pod_filter.url IN ('othello','sonex','andersen','ukono','arcloud') order by url [0.0017020702362061 sec]
SELECT pod_sub_icon.id,pod_sub_icon.url FROM pod_sub_icon WHERE BINARY pod_sub_icon.url IN ('othello','sonex','andersen','ukono','arcloud') order by url [0.0011970996856689 sec]
select id,url from pod_cat_brand where BINARY url = 'othello-sonex-andersen-ukono-arcloud' [0.0018367767333984 sec]
select id,url from pod_cat_brand where url = 'othello-sonex-andersen-ukono-arcloud' [0.00034999847412109 sec]
select id,url from pod_cat_brand where url in ('othello','sonex','andersen','ukono','arcloud') [0.00036907196044922 sec]
SELECT id,
name AS name,
url, entry, menu_item, position, image_mob
FROM pod_menu_cat
WHERE is_active=1
ORDER BY ord [0.00066494941711426 sec]
SELECT id, name AS name, filter_name, url, ordr FROM pod_cat_category WHERE entry=2916 AND is_active=1 AND is_hidden=0 ORDER BY ordr [0.00029301643371582 sec]
SELECT c.id, c.name AS name, c.filter_name, c.url, p.ordr FROM pod_dop_category p LEFT JOIN pod_cat_category c ON c.id = p.cat_id WHERE p.dop_cat_id=2916 AND c.is_active=1 AND c.is_hidden=0 ORDER BY c.ordr [0.0003049373626709 sec]
SELECT c.id, c.name AS name, c.filter_name, c.url, p.ordr FROM pod_dop_category p LEFT JOIN pod_cat_category c ON c.id = p.cat_id WHERE p.dop_cat_id=4381 AND c.is_active=1 AND c.is_hidden=0 ORDER BY c.ordr [0.00029492378234863 sec]
SELECT id, name AS name, filter_name, url, ordr FROM pod_cat_category WHERE entry=3034 AND is_active=1 AND is_hidden=0 ORDER BY ordr [0.00024890899658203 sec]
SELECT c.id, c.name AS name, c.filter_name, c.url, p.ordr FROM pod_dop_category p LEFT JOIN pod_cat_category c ON c.id = p.cat_id WHERE p.dop_cat_id=3034 AND c.is_active=1 AND c.is_hidden=0 ORDER BY c.ordr [0.00018906593322754 sec]
SELECT id, name AS name, filter_name, url, ordr FROM pod_cat_category WHERE entry=3020 AND is_active=1 AND is_hidden=0 ORDER BY ordr [0.00019097328186035 sec]
SELECT c.id, c.name AS name, c.filter_name, c.url, p.ordr FROM pod_dop_category p LEFT JOIN pod_cat_category c ON c.id = p.cat_id WHERE p.dop_cat_id=3020 AND c.is_active=1 AND c.is_hidden=0 ORDER BY c.ordr [0.00017881393432617 sec]
SELECT id, name AS name, filter_name, url, ordr FROM pod_cat_category WHERE entry=4397 AND is_active=1 AND is_hidden=0 ORDER BY ordr [0.00017213821411133 sec]
SELECT c.id, c.name AS name, c.filter_name, c.url, p.ordr FROM pod_dop_category p LEFT JOIN pod_cat_category c ON c.id = p.cat_id WHERE p.dop_cat_id=4397 AND c.is_active=1 AND c.is_hidden=0 ORDER BY c.ordr [0.00017595291137695 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.00027012825012207 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 (1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044) 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 (1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044) AND g.entry=0 AND g.is_active AND g.is_present_all_mods [0.16630601882935 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.00059795379638672 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.051455974578857 sec]
SELECT g.id /* cats:1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044 */
FROM tmp_base_goods g
WHERE g.brand_id IN (1089,2618,77,1033,2418) AND
1
[0.00023603439331055 sec]
CREATE TEMPORARY TABLE temp_brand_counts_6a2b6a558b9bb (
id INT,
gid INT,
INDEX idx_id (id),
INDEX idx_gid (gid)
) [0.0001978874206543 sec]
INSERT INTO temp_brand_counts_6a2b6a558b9bb (id, gid)
SELECT g.brand_id AS id, g.id AS gid /* cats:1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044 */
FROM tmp_base_goods g
WHERE 1
UNION
SELECT id, null gid
FROM pod_cat_category
WHERE id in (1089,2618,77,1033,2418) [0.006889820098877 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_6a2b6a558b9bb
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.0014619827270508 sec]
DROP TEMPORARY TABLE IF EXISTS temp_brand_counts_6a2b6a558b9bb [0.00022602081298828 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:1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044 */
FROM tmp_base_goods g
WHERE g.brand_id IN (1089,2618,77,1033,2418) AND
g.is_present AND
1
UNION
SELECT MIN(go.price) AS min_price, MAX(go.price) AS max_price /* cats:1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
WHERE g.brand_id IN (1089,2618,77,1033,2418) AND
1
) A
[0.00075602531433105 sec]
SELECT g.id /* cats:1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044 */,if(g.is_present and g.price >= '589' and g.price <= '8450',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 >= '589' and g.price <= '8450',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 >= '589' AND pcg.price <= '8450'
WHERE g.id IN (8211,3619,3611,3617,3613,444112,99426,99421,287041,287037,503422,444115,384690,384687,384684,384680,99404,99399,99379,99368,99282,99258,99223,384676,99315,295126,289467,417893,417886,417872,417851,417837,417821,417794,480211,480209,480206,480203,480200,480197,480194,480191,480185,480182,480179,480176,480139,480136,480133,480130,480127,480124,480121)
GROUP BY g.id
ORDER BY g.ordr desc
LIMIT 0, 32 [0.0023758411407471 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 >= '589' and g.price <= '8450',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 >= '589' and g.price <= '8450',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 >= '589' and pcg.price <= '8450')
WHERE g.id in (287037,384687,8211,480130,384684,99368,417872,480124,480179,480211,480203,99282,99223,99315,480127,480182,444115,417886,480139,384676,384680,99258,417851,99399,99379,295126,289467,99404,3611,3613,3617,503422)
GROUP BY g.id
ORDER BY g.ordr desc [0.0024089813232422 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 (287037,384687,8211,480130,384684,99368,417872,480124,480179,480211,480203,99282,99223,99315,480127,480182,444115,417886,480139,384676,384680,99258,417851,99399,99379,295126,289467,99404,3611,3613,3617,503422) AND g.is_active = '1'
ORDER BY g.entry, g.is_present DESC [0.0013940334320068 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 (287037,384687,8211,480130,384684,99368,417872,480124,480179,480211,480203,99282,99223,99315,480127,480182,444115,417886,480139,384676,384680,99258,417851,99399,99379,295126,289467,99404,3611,3613,3617,503422)
ORDER BY ggd2.good_id, g.is_present_all_mods DESC [0.0029468536376953 sec]
SELECT name AS name, url FROM pod_cat_brand WHERE id in (1089,2618,77,1033,2418) [0.0001990795135498 sec]
SELECT name AS name, url FROM pod_cat_brand WHERE id='1089.2618.77.1033.2418' [0.00015616416931152 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566;
CREATE TEMPORARY TABLE tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 (
id INT NOT NULL,
PRIMARY KEY (id)
) ENGINE=MEMORY; [0.00043296813964844 sec]
INSERT INTO tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 (id) SELECT A.id FROM (
SELECT g.id /* cats:1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044 */
FROM tmp_base_goods g
WHERE g.brand_id IN (1089,2618,77,1033,2418) AND
1
) A [0.00061988830566406 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566;
CREATE TEMPORARY TABLE tmp_pairs_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00041484832763672 sec]
INSERT INTO tmp_pairs_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 (goods_id, filter_id)
SELECT DISTINCT
A.id AS goods_id,
f.id AS filter_id
FROM tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 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 = 1
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.00073695182800293 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566;
CREATE TEMPORARY TABLE tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00039100646972656 sec]
INSERT IGNORE INTO tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 p
GROUP BY p.filter_id [0.00036096572875977 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_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 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.00032711029052734 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 [0.00034499168395996 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 [0.0001368522644043 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a5594566 [0.00020503997802734 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6;
CREATE TEMPORARY TABLE tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 (
id INT NOT NULL,
entry INT NOT NULL,
PRIMARY KEY (id),
KEY idx_entry (entry)
) ENGINE=MEMORY; [0.00031495094299316 sec]
INSERT INTO tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 (id, entry) SELECT A.id, A.entry FROM (
SELECT g.id as id, g.id as entry /* cats:1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044 */
FROM tmp_base_goods g
WHERE g.brand_id IN (1089,2618,77,1033,2418) AND
g.is_present AND
1
UNION
SELECT go.id as id, g.id as entry /* cats:1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
WHERE g.brand_id IN (1089,2618,77,1033,2418) AND
1
) A [0.00094318389892578 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6;
CREATE TEMPORARY TABLE tmp_pairs_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.0004420280456543 sec]
INSERT INTO tmp_pairs_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 (goods_id, filter_id)
SELECT DISTINCT
A.entry AS goods_id,
f.id AS filter_id
FROM tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 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 = 1
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.015074014663696 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6;
CREATE TEMPORARY TABLE tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00031304359436035 sec]
INSERT IGNORE INTO tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 p
GROUP BY p.filter_id [0.0003819465637207 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_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 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.00029087066650391 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 [0.00022983551025391 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 [0.00017404556274414 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a55959d6 [0.00010204315185547 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a559a795;
CREATE TEMPORARY TABLE tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a559a795 (
entry INT NOT NULL,
sub_icon_id INT NOT NULL,
PRIMARY KEY (entry, sub_icon_id)
) ENGINE=MEMORY; [0.00023078918457031 sec]
INSERT IGNORE INTO tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a559a795 (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:1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044 */
FROM tmp_base_goods g
WHERE g.brand_id IN (1089,2618,77,1033,2418) AND
g.is_present AND
1
UNION
SELECT go.id as id, g.id as entry, go.sub_icon_id /* cats:1,20,21,67,8,7,9,10,22,37,83,252,297,1759,849,1044 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
WHERE g.brand_id IN (1089,2618,77,1033,2418) AND
1
) A [0.0010480880737305 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a559a795;
CREATE TEMPORARY TABLE tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a559a795 (
sub_icon_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00048494338989258 sec]
INSERT IGNORE INTO tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a559a795 (sub_icon_id, count)
SELECT
sub_icon_id,
COUNT(DISTINCT entry) AS count
FROM (
SELECT A.entry, A.sub_icon_id
FROM tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a559a795 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.00066399574279785 sec]
SELECT
c.sub_icon_id AS id,
c.count,
si.entry,
si.name AS name,
si.url
FROM tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a559a795 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.0003349781036377 sec]
-----------------------------
SELECT COUNT(*) FROM pod_good_filter
WHERE id_good IN (SELECT id FROM tmp_base_goods); [0.030647993087769 sec]
Array
(
[0] => Array
(
[COUNT(*)] => 3526
)
)
SELECT COUNT(DISTINCT filter_id) FROM pod_good_filter
WHERE id_good IN (SELECT id FROM tmp_base_goods); [0.047147989273071 sec]
Array
(
[0] => Array
(
[COUNT(DISTINCT filter_id)] => 4
)
)
-----------------------------
DROP TEMPORARY TABLE IF EXISTS tmp_A_qg3k4cp3u54gpea94k01ecoto7_6a2b6a559a795 [0.00042605400085449 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_qg3k4cp3u54gpea94k01ecoto7_6a2b6a559a795 [0.00014090538024902 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_base_goods;
DROP TEMPORARY TABLE IF EXISTS tmp_sub_goods [0.00017118453979492 sec]
Одеяла Othello ... Arcloud (Отелло ... Aрклoуд) – большой выбор, фото, отзывы. Купить Одеяла Othello ... Arcloud в Киеве и Украине
Ваш заказ оформлен! На e-mail отправлено письмо с подтверждением В ближайшее время с Вами свяжется менеджер Спасибо за заказ!
Ваш профиль будет удален навсегда. Его нельзя восстановить. Продолжить?
Оставьте свой номер телефона и наши менеджеры вам перезвонят
Оплату картами Visa и MasterCard обеспечивает сервис онлайн-платежей Portmone.com. Безопасность оплаты подтверждена международным аудитом PCI DSS. Служба поддержки: тел. +380(44)2000902