- 论坛徽章:
- 0
|
只是单表查询,表pro_ru索引如下:
sn_class 是品名的分类id,关联class表中的ID
sn_no 是商品名称
ctime 是发布日期
由于搜索到用到这三个条件,所以做成如下索引【不知道是否合理】:
![]()
在php代码中尽量考虑索引的最左前缀,所以PHP查询条件代码如下实现:
if (!empty($g_cgival['sn_class']))
{
$pro_ru->where.=" WHERE sn_class =".$g_cgival['sn_class']." ";
}else
{
$pro_ru->where = " WHERE 1 = 1 ";
}
if (!empty($g_cgival['keywords']))
{
$pro_ru->where.=" AND sn_no like '%".$g_cgival['keywords']."%' ";
}
if (!empty($g_cgival['ftime']))
{
$pro_ru->where.=" AND ctime > '".$g_cgival['ftime']."' ";
}
if (!empty($g_cgival['ttime']))
{
$pro_ru->where.=" AND ctime < '".$g_cgival['ttime']."' ";
}
SQL语句分析如下:
mysql> EXPLAIN select * from gll_pro_ru WHERE sn_class =7 limit 0,20;
共359029条记录
+----+-------------+------------+------+----------------+----------------+---------+-------+--------+-------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+------------+------+----------------+----------------+---------+-------+--------+-------+
| 1 | SIMPLE | gll_pro_ru | ref | class_ctime_no | class_ctime_no | 4 | const | 357645 | |
+----+-------------+------------+------+----------------+----------------+---------+-------+--------+-------+
1 row in set (0.00 sec)
mysql> desc select * from gll_pro_ru WHERE sn_class =7 ORDER BY id DESC limit 0,20;
共359029条记录
+----+-------------+------------+-------+----------------+----------------+---------+------+--------+-----------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+------------+-------+----------------+----------------+---------+------+--------+-----------------------------+
| 1 | SIMPLE | gll_pro_ru | range | class_ctime_no | class_ctime_no | 4 | NULL | 357645 | Using where; Using filesort |
+----+-------------+------------+-------+----------------+----------------+---------+------+--------+-----------------------------+
1 row in set (0.16 sec)
mysql> EXPLAIN select * from gll_pro_ru WHERE sn_class =7 AND sn_no='A2202-1' limit 0,20;
共359019条记录
+----+-------------+------------+------+----------------+----------------+---------+-------------+--------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+------------+------+----------------+----------------+---------+-------------+--------+-------------+
| 1 | SIMPLE | gll_pro_ru | ref | class_ctime_no | class_ctime_no | 771 | const,const | 357639 | Using where |
+----+-------------+------------+------+----------------+----------------+---------+-------------+--------+-------------+
1 row in set (0.03 sec)
mysql> desc select * from gll_pro_ru WHERE sn_class =7 AND sn_no='A2202-1' limit 0,20;
共359019条记录
+----+-------------+------------+------+----------------+----------------+---------+-------------+--------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+------------+------+----------------+----------------+---------+-------------+--------+-------------+
| 1 | SIMPLE | gll_pro_ru | ref | class_ctime_no | class_ctime_no | 771 | const,const | 357639 | Using where |
+----+-------------+------------+------+----------------+----------------+---------+-------------+--------+-------------+
1 row in set (0.00 sec)
索引基本被用到,但是页面执行总是很慢【页面执行时间: 28418.6 毫秒 ,页面执行时间: 40841.9 毫秒 】,为什么rows 的值那么大,是不是还需要怎样优化,还是我的PHP代码有问题?小弟对MYSQL优化不是很了解,望高手支招。
附另一个问题:没有使用limit的sql为什么无法实用索引??
mysql> EXPLAIN select * from gll_pro_ru where sn_class =7 ORDER BY id DESC ; +----+-------------+------------+------+----------------+------+---------+------+--------+-----------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+------------+------+----------------+------+---------+------+--------+-----------------------------+
| 1 | SIMPLE | gll_pro_ru | ALL | class_ctime_no | NULL | NULL | NULL | 269667 | Using where; Using filesort |
+----+-------------+------------+------+----------------+------+---------+------+--------+-----------------------------+
1 row in set (0.00 sec)
mysql> EXPLAIN select * from gll_pro_ru where sn_class =7 ORDER BY id DESC limit 0,10000;
+----+-------------+------------+-------+----------------+----------------+---------+------+--------+-----------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+------------+-------+----------------+----------------+---------+------+--------+-----------------------------+
| 1 | SIMPLE | gll_pro_ru | range | class_ctime_no | class_ctime_no | 4 | NULL | 357645 | Using where; Using filesort |
+----+-------------+------------+-------+----------------+----------------+---------+------+--------+-----------------------------+
1 row in set (0.02 sec) |
|