os mais comentados
[absinto@apeadeiro.org ~]$ mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 74925 to server version: x.y.zz
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
mysql> use myblog;
Database changed
mysql> SELECT comment_post_ID AS post_id, count(*) AS most_read, post_title,
guid FROM wp_comments, wp_posts WHERE comment_post_ID = ID AND post_title
<> [...]