1.29 ms (6.20%)
|
1 |
SELECT id, brand_name, brand_name_seo, brand_description, brand_image, meta_title, meta_description, meta_keywords, num_of_products, num_of_products_aim, img_size
FROM proizvodjaci
WHERE brand_name_seo = ? and active = 1
SELECT id, brand_name, brand_name_seo, brand_description, brand_image, meta_title, meta_description, meta_keywords, num_of_products, num_of_products_aim, img_size
FROM proizvodjaci
WHERE brand_name_seo = 'rubi' and active = 1;
|
0.50 ms (2.39%)
|
2 |
SELECT id, category_name, category_name_seo, category_image, category_film, category_pdf, description, parent_category_id, level,
`timestamp`, show_category, active, fl_alat, category_name_aim, meta_title, meta_description, meta_keywords, created, updated,
show_eponuda
FROM kategorije
WHERE id = ? and active = 1
SELECT id, category_name, category_name_seo, category_image, category_film, category_pdf, description, parent_category_id, level,
`timestamp`, show_category, active, fl_alat, category_name_aim, meta_title, meta_description, meta_keywords, created, updated,
show_eponuda
FROM kategorije
WHERE id = 1 and active = 1;
|
0.21 ms (0.99%)
|
1 |
SELECT k.id, k.category_name, k.category_name_seo, k.category_image, k.parent_category_id, k.level,
k.show_category, k.active, k.fl_alat, k.category_name_aim
FROM kategorije k
INNER JOIN brand_to_category bc ON k.id = bc.fk_category_id AND bc.fk_brand_id = ?
WHERE parent_category_id = ? AND active = 1 AND k.fl_alat = 1
SELECT k.id, k.category_name, k.category_name_seo, k.category_image, k.parent_category_id, k.level,
k.show_category, k.active, k.fl_alat, k.category_name_aim
FROM kategorije k
INNER JOIN brand_to_category bc ON k.id = bc.fk_category_id AND bc.fk_brand_id = 1141
WHERE parent_category_id = 1 AND active = 1 AND k.fl_alat = 1;
|
0.10 ms (0.46%)
|
1 |
SELECT page_title, page_meta_description, page_meta_keywords, web_page
FROM website_tags
WHERE website = ? and web_page IN (?, ?)
Parameters: [
2
"brendovi"
"ostale"
]
SELECT page_title, page_meta_description, page_meta_keywords, web_page
FROM website_tags
WHERE website = 2 and web_page IN ('brendovi', 'ostale');
|