Heim  >  Artikel  >  Datenbank  >  MySQL查询前几行_MySQL

MySQL查询前几行_MySQL

WBOY
WBOYOriginal
2016-06-01 13:43:281469Durchsuche

bitsCN.com

当数据表中数据量大,而只需要其中某些字段的值做为验证时不需要所有数据,只需要查几行就可以,此时用limit


如:

1.select * from tags limit 4;    就是取4行数据,看看id或者其他需要的字段的的值是什么。
查询结果为:id=102或者..........,在下面就用id = 102

2.explain select * from tags where id=102;   检查该表中id或者其他字段是否为索引很有效。

+----+-------------+----------+------+---------------+------+---------+------+---------+-------+
| id | select_type | table    | type | possible_keys | key  | key_len | ref  | rows    | Extra |
+----+-------------+----------+------+---------------+------+---------+------+---------+-------+
|  102 | SIMPLE      | tags      | ALL  | NULL          | NULL | NULL    | NULL | 6226057 |       |
+----+-------------+----------+------+---------------+------+---------+------+---------+-------+

可以看出在这里没有用到id 索引【为id建的索引一般为PRIMARY】




作者 hllnihao bitsCN.com
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn