| 1 | SELECT COUNT(*) AS `count` FROM `recipes` AS `Recipe` WHERE 1 = 1 | | 1 | 1 | 4 |
| 2 | SELECT `Log`.`id`, `Log`.`date`, `Log`.`tag`, `Log`.`count`, `Log`.`created`, `Log`.`modified` FROM `log` AS `Log` WHERE `date` = '2009-01-10' ORDER BY `Log`.`count` DESC LIMIT 30 | | 30 | 30 | 0 |
| 3 | SELECT `Log`.`id`, `Log`.`date`, `Log`.`tag`, `Log`.`count`, `Log`.`created`, `Log`.`modified` FROM `log` AS `Log` WHERE 1 = 1 ORDER BY `Log`.`modified` DESC LIMIT 30 | | 30 | 30 | 0 |
| 4 | SELECT `Recipe`.`id`, `Recipe`.`eid`, `Recipe`.`url`, `Recipe`.`title`, `Recipe`.`users`, `Recipe`.`tag`, `Recipe`.`tag_orig`, `Recipe`.`description`, `Recipe`.`date`, `Recipe`.`created`, `Recipe`.`modified` FROM `recipes` AS `Recipe` WHERE `tag` LIKE '%[とりあえず%' AND `users` >= 3 ORDER BY `Recipe`.`eid` DESC LIMIT 25 | | 0 | 0 | 5 |
| 5 | SELECT COUNT(*) AS `count` FROM `recipes` AS `Recipe` WHERE `tag` LIKE '%[とりあえず%' AND `users` >= 3 | | 1 | 1 | 70 |