- 论坛徽章:
- 0
|
本帖最后由 cenalulu 于 2012-09-09 20:19 编辑
表结构tbl110- +------------+----------------------+------+-----+---------------------+-------+
- | Field | Type | Null | Key | Default | Extra |
- +------------+----------------------+------+-----+---------------------+-------+
- | Start_Date | datetime | NO | PRI | 0000-00-00 00:00:00 | |
- | LAC_CI | varchar(11) | NO | PRI | | |
- | CELL_CI | smallint(5) unsigned | YES | MUL | NULL | |
- | CELL_LAC | smallint(5) unsigned | YES | MUL | NULL | |
- | MC01 | int(11) | YES | | NULL | |
- | MC02 | int(11) | YES | | NULL | |
复制代码 索引:- mysql> show index from tbl110;
- +--------+------------+------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
- | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_Comment |
- +--------+------------+------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
- | tbl110 | 0 | PRIMARY | 1 | LAC_CI | A | 10153 | NULL | NULL | | BTREE | | |
- | tbl110 | 0 | PRIMARY | 2 | Start_Date | A | 700596 | NULL | NULL | | BTREE | | |
- | tbl110 | 1 | Start_Date | 1 | Start_Date | A | 115 | NULL | NULL | | BTREE | | |
- | tbl110 | 1 | LAC_CI | 1 | LAC_CI | A | 10153 | NULL | NULL | | BTREE | | |
- | tbl110 | 1 | CELL_CI | 1 | CELL_CI | A | 10153 | NULL | NULL | YES | BTREE | | |
- | tbl110 | 1 | CELL_LAC | 1 | CELL_LAC | A | 39 | NULL | NULL | YES | BTREE | | |
- +--------+------------+------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
- 6 rows in set (0.04 sec)
复制代码 下面查询不走索引:- mysql> explain select lac_ci, start_date,sum(MC01) from tbl110 group by lac_ci, start_date;
- +----+-------------+--------+------+---------------+------+---------+------+--------+---------------------------------+
- | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
- +----+-------------+--------+------+---------------+------+---------+------+--------+---------------------------------+
- | 1 | SIMPLE | tbl110 | ALL | NULL | NULL | NULL | NULL | 700596 | Using temporary; Using filesort |
- +----+-------------+--------+------+---------------+------+---------+------+--------+---------------------------------+
- 1 row in set (0.06 sec)
复制代码 据说如果要走索引,聚合函数只能用min()或max(), 或者常量,试了一下Min(),还是不走索引:- mysql> explain select lac_ci, start_date,min(MC01) from tbl110 group by lac_ci, start_date;
- +----+-------------+--------+------+---------------+------+---------+------+--------+---------------------------------+
- | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
- +----+-------------+--------+------+---------------+------+---------+------+--------+---------------------------------+
- | 1 | SIMPLE | tbl110 | ALL | NULL | NULL | NULL | NULL | 700596 | Using temporary; Using filesort |
- +----+-------------+--------+------+---------------+------+---------+------+--------+---------------------------------+
- 1 row in set (0.07 sec)
复制代码 用常量倒是可以:- mysql> explain select lac_ci, start_date,"fuck" from tbl110 group by lac_ci, start_date;
- +----+-------------+--------+-------+---------------+---------+---------+------+--------+--------------------------+
- | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
- +----+-------------+--------+-------+---------------+---------+---------+------+--------+--------------------------+
- | 1 | SIMPLE | tbl110 | range | NULL | PRIMARY | 32 | NULL | 700597 | Using index for group-by |
- +----+-------------+--------+-------+---------------+---------+---------+------+--------+--------------------------+
- 1 row in set (0.00 sec)
复制代码 问题是我要用到其他的聚合函数呀,比如sum,avg等
有解决办法吗?
|
|