我想加入一张时间单位的表格(注意:这些不是连续的)
Time 1
Time 2
...有一个部门 ...
的表格Department 1
Department 2
...为了与观察的表格匹配,但只选择X类型的那些......
Time unit Department id Observation Type
Time 1 Department 1 6 X
Time 2 Department 2 5 X
Time 2 Department 2 4 Y
...以这样的表结束 - 缺少的观察用0或NULL填充
Time unit Department id Observation
Time 1 Department 1 6
Time 2 Department 1 0
Time 1 Department 2 0
Time 2 Department 2 5
这可以胜任,但速度很慢,所以我确信必须有比以下更好的方法?
SELECT timeunits.time_unit, departments.department_id, observations.observation
FROM timeunits
CROSS JOIN departments
LEFT JOIN (
SELECT observations.time_unit, observations.department_id, observations.observation
FROM observations
WHERE observations.type='X'
) as observations
ON timeunits.time_unit=observations.time_unit
AND departments.department_id=observations.department_id
说明:
+----+-------------+--------------+-------+---------------+-------------+---------+---------------------------------------------+--------+----------------------------------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+--------------+-------+---------------+-------------+---------+---------------------------------------------+--------+----------------------------------------------------+
| 1 | PRIMARY | time_units | ALL | NULL | NULL | NULL | NULL | 200 | NULL |
| 1 | PRIMARY | departments | index | NULL | PRIMARY | 4 | NULL | 500 | Using index; Using join buffer (Block Nested Loop) |
| 1 | PRIMARY | <derived2> | ref | <auto_key0> | <auto_key0> | 263 | observations.time_units.time_unit, | | |
| | | | | | | | observations.departments.department_id | 600 | Using where |
| 2 | DERIVED | observations | ref | type | type | 258 | const | 100000 | Using index condition |
+----+-------------+--------------+-------+---------------+-------------+---------+---------------------------------------------+--------+----------------------------------------------------+
答案 0 :(得分:0)
我们已经看到type = 'X'
与observations
- 表并不太常见。
直接消除子查询:
SELECT timeunits.time_unit, departments.department_id, observations.observation
FROM timeunits
JOIN departments
LEFT JOIN observations ON observations.time_unit = timeunits.time_unit
AND observations.department_id = departments.department_id
AND observations.type = 'X'
导致更高的执行时间,因为MySQL目前只能在observations
中的一列上使用索引。只要这不是type
,就会加入完整的observations
- 表(因为我们明确查询所有department_id
和time_unit
组合),然后只有不同的列type
将被删除=&gt;全表扫描。
对无子查询语句的可能优化将是组合索引。理想情况下,在department_id
,time_unit
和type
上,因为在连接条件中所有三个都与equals一起使用。为了减少存储开销,我们可以(并且可能应该)省略排除最少数据的列。
如果我们计划选择例如time_unit
稍后我们应该将此列放在索引的最后,以便能够最好地使用索引。