| 1 | SHOW FULL COLUMNS FROM `users` | | 20 | 20 | 29 |
| 2 | SELECT CHARACTER_SET_NAME FROM INFORMATION_SCHEMA.COLLATIONS WHERE COLLATION_NAME= 'utf8_unicode_ci'; | | 1 | 1 | 1 |
| 3 | SELECT `User`.`id`, `User`.`nickname`, `User`.`password`, `User`.`email`, `User`.`name`, `User`.`pic`, `User`.`web`, `User`.`bio`, `User`.`location`, `User`.`hash`, `User`.`status`, `User`.`t_account`, `User`.`t_access`, `User`.`t_secret`, `User`.`f_account`, `User`.`f_access`, `User`.`f_secret`, `User`.`notify`, `User`.`created`, `User`.`modified` FROM `users` AS `User` WHERE `User`.`nickname` = 'cool1' LIMIT 1 | | 1 | 1 | 1 |
| 4 | SHOW FULL COLUMNS FROM `images` | | 6 | 6 | 2 |
| 5 | SHOW FULL COLUMNS FROM `user_has_items` | | 5 | 5 | 4 |
| 6 | SELECT COUNT(*) AS `count` FROM `user_has_items` AS `UserHasItem` WHERE `user_id` = 128 | | 1 | 1 | 1 |
| 7 | SHOW FULL COLUMNS FROM `items` | | 6 | 6 | 2 |
| 8 | SHOW FULL COLUMNS FROM `user_wish_items` | | 4 | 4 | 16 |
| 9 | SELECT COUNT(*) AS `count` FROM `user_wish_items` AS `UserWishItem` WHERE `user_id` = 128 | | 1 | 1 | 1 |
| 10 | SHOW FULL COLUMNS FROM `user_likes_items` | | 4 | 4 | 19 |
| 11 | SELECT COUNT(*) AS `count` FROM `user_likes_items` AS `UserLikesItem` WHERE `user_id` = 128 | | 1 | 1 | 1 |
| 12 | SHOW FULL COLUMNS FROM `follows` | | 4 | 4 | 4 |
| 13 | SHOW FULL COLUMNS FROM `logs` | | 7 | 7 | 4 |
| 14 | SELECT `Log`.`id`, `Log`.`user_id`, `Log`.`to_id`, `Log`.`item_id`, `Log`.`comment_id`, `Log`.`action`, `Log`.`created` FROM `logs` AS `Log` WHERE `user_id` IS NULL ORDER BY `created` DESC LIMIT 20 | | 0 | 0 | 1 |
| 15 | SELECT COUNT(*) AS `count` FROM `follows` AS `Follow` WHERE `from_id` = 128 | | 1 | 1 | 1 |
| 16 | SELECT COUNT(*) AS `count` FROM `follows` AS `Follow` WHERE `to_id` = 128 | | 1 | 1 | 1 |