| 1 | SELECT `Topic`.`id`, `Topic`.`title`, `Topic`.`opendate` FROM `topics` AS `Topic` WHERE `Topic`.`opendate` <= now() AND `del_flg` = 0 AND `disp_flg` = 1 ORDER BY `opendate` desc, `id` asc LIMIT 3 | | 3 | 3 | 0 |
| 2 | SELECT COUNT(*) AS `count` FROM `topics` AS `Topic` WHERE `Topic`.`opendate` <= now() AND `del_flg` = 0 AND `disp_flg` = 1 | | 1 | 1 | 0 |
| 3 | SELECT `Topic`.`id`, `Topic`.`title`, `Topic`.`content`, `Topic`.`disp_flg`, `Topic`.`opendate`, `Topic`.`created`, `Topic`.`modified`, `Topic`.`del_flg` FROM `topics` AS `Topic` WHERE `Topic`.`opendate` <= now() AND `del_flg` = 0 AND `disp_flg` = 1 ORDER BY `opendate` desc, `id` asc LIMIT 60, 10 | | 6 | 6 | 1 |
| 4 | SELECT `TopicImage`.`id`, `TopicImage`.`name`, `TopicImage`.`type_flg`, `TopicImage`.`explanation`, `TopicImage`.`topic_id` FROM `topic_images` AS `TopicImage` WHERE `TopicImage`.`topic_id` IN (10, 9, 8, 3, 2, 1) ORDER BY `disp_order` ASC, `TopicImage`.`id` ASC | | 6 | 6 | 1 |