mysql> select count(*) from table where relation_title='xxxxxxxxx';
+----------+
| count(*) |
+----------+
| 1291958 |
+----------+
mysql> explain select * from table where relation_title='xxxxxxxxx';
+----+-------------+---------+-
| id | select_type | rows |
+----+-------------+---------+-
| 1 | SIMPLE | 1274785 |
+----+-------------+---------+-
「select * from table where relationship_title='xxxxxxxxx'; を説明してください」と思います。relationship_title='xxxxxxxxx' の行をインデックスで返します。しかし、それは本当の数よりも小さいです。