1
1.04 ms
SELECT t0 . id AS id_1 , t0 . title AS title_2 , t0 . url AS url_3 , t0 . content AS content_4 , t0 . created_at AS created_at_5 , t0 . updated_at AS updated_at_6 , t0 . image AS image_7 , t0 . hero_image AS hero_image_8 , t0 . published AS published_9 , t0 . featured AS featured_10 , t0 . meta_title AS meta_title_11 , t0 . meta_description AS meta_description_12 , t0 . meta_keywords AS meta_keywords_13 , t0 . no_index AS no_index_14 , t0 . no_follow AS no_follow_15 , t0 . hide_in_sitemap AS hide_in_sitemap_16 FROM blog t0 WHERE t0 . published = ? AND t0 . featured = ? ORDER BY t0 . created_at DESC LIMIT 3
Parameters :
[
true
true
]
SELECT t0 . id AS id_1 , t0 . title AS title_2 , t0 . url AS url_3 , t0 . content AS content_4 , t0 . created_at AS created_at_5 , t0 . updated_at AS updated_at_6 , t0 . image AS image_7 , t0 . hero_image AS hero_image_8 , t0 . published AS published_9 , t0 . featured AS featured_10 , t0 . meta_title AS meta_title_11 , t0 . meta_description AS meta_description_12 , t0 . meta_keywords AS meta_keywords_13 , t0 . no_index AS no_index_14 , t0 . no_follow AS no_follow_15 , t0 . hide_in_sitemap AS hide_in_sitemap_16 FROM blog t0 WHERE t0 . published = 1 AND t0 . featured = 1 ORDER BY t0 . created_at DESC LIMIT 3 ;
Copy
2
1.36 ms
SELECT b0_ . id AS id_0 , b0_ . title AS title_1 , b0_ . url AS url_2 , b0_ . content AS content_3 , b0_ . created_at AS created_at_4 , b0_ . updated_at AS updated_at_5 , b0_ . image AS image_6 , b0_ . hero_image AS hero_image_7 , b0_ . published AS published_8 , b0_ . featured AS featured_9 , b0_ . meta_title AS meta_title_10 , b0_ . meta_description AS meta_description_11 , b0_ . meta_keywords AS meta_keywords_12 , b0_ . no_index AS no_index_13 , b0_ . no_follow AS no_follow_14 , b0_ . hide_in_sitemap AS hide_in_sitemap_15 FROM blog b0_ LEFT JOIN blog_tag b2_ ON b0_ . id = b2_ . blog_id LEFT JOIN tag t1_ ON t1_ . id = b2_ . tag_id WHERE b0_ . published = ? AND t1_ . name = ? ORDER BY b0_ . created_at DESC LIMIT 9
Parameters :
[
1
"Licenca "
]
SELECT b0_ . id AS id_0 , b0_ . title AS title_1 , b0_ . url AS url_2 , b0_ . content AS content_3 , b0_ . created_at AS created_at_4 , b0_ . updated_at AS updated_at_5 , b0_ . image AS image_6 , b0_ . hero_image AS hero_image_7 , b0_ . published AS published_8 , b0_ . featured AS featured_9 , b0_ . meta_title AS meta_title_10 , b0_ . meta_description AS meta_description_11 , b0_ . meta_keywords AS meta_keywords_12 , b0_ . no_index AS no_index_13 , b0_ . no_follow AS no_follow_14 , b0_ . hide_in_sitemap AS hide_in_sitemap_15 FROM blog b0_ LEFT JOIN blog_tag b2_ ON b0_ . id = b2_ . blog_id LEFT JOIN tag t1_ ON t1_ . id = b2_ . tag_id WHERE b0_ . published = 1 AND t1_ . name = 'Licenca' ORDER BY b0_ . created_at DESC LIMIT 9 ;
Copy