| 7 | SELECT `Product`.`id`, `Product`.`category_id`, `Product`.`name`, `Product`.`slug`, `Product`.`image`, `Product`.`description`, `Product`.`rating`, `Product`.`overview`, `Product`.`verdict`, `Product`.`information`, `Product`.`specifications`, `Product`.`affiliate_link`, `Product`.`official_site`, `Product`.`created`, `Product`.`modified`, `Category`.`id`, `Category`.`name`, `Category`.`slug`, `Category`.`introduction`, `Category`.`what_to_look_for`, `Category`.`description`, `Category`.`created`, `Category`.`modified`, `Rating`.`id`, `Rating`.`product_id`, `Rating`.`effectiveness`, `Rating`.`comfort`, `Rating`.`price`, `Rating`.`durability`, `Rating`.`customer_support`, `Rating`.`created` FROM `products` AS `Product` LEFT JOIN `categories` AS `Category` ON (`Product`.`category_id` = `Category`.`id`) LEFT JOIN `ratings` AS `Rating` ON (`Rating`.`product_id` = `Product`.`id`) WHERE 1 = 1 ORDER BY `Product`.`created` DESC LIMIT 15 | | 6 | 6 | 0 |
| 8 | SELECT `Testimonial`.`id`, `Testimonial`.`product_id`, `Testimonial`.`content`, `Testimonial`.`source`, `Testimonial`.`created` FROM `testimonials` AS `Testimonial` WHERE `Testimonial`.`product_id` IN (6, 5, 4, 3, 2, 1) | | 18 | 18 | 0 |