[Solved] MySQL performance issue on a simple two tables joined Query

How to optimize this SQL query?

In case you have your own slow SQL query, you can optimize it automatically here.

For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:

  1. Description of the steps you can take to speed up the query.
  2. The optimal indexes for this query, which you can copy and create in your database.
  3. An automatically re-written query you can copy and execute in your database.
The optimization process and recommendations:
  1. Avoid Optimizer Hints (modified query below): Using optimizer hints such as FORCE INDEX can be valuable in the short term. When important aspects such as the amount of data or the data distribution change, these hints can do more harm than good.
  2. Create Optimal Indexes (modified query below): The recommended indexes are an integral part of this optimization effort and should be created before testing the execution duration of the optimized query.
Optimal indexes for this query:
ALTER TABLE `data_raw` ADD INDEX `data_raw_idx_timeslot_id` (`TIMESLOT_ID`);
ALTER TABLE `data_timeslots` ADD INDEX `data_timeslots_idx_device_id_id` (`DEVICE_ID`,`ID`);
ALTER TABLE `data_timeslots` ADD INDEX `data_timeslots_idx_id` (`ID`);
The optimized query:
SELECT
        D.VRMS0,
        D.VRMS1,
        D.VRMS2,
        D.PWRA0,
        D.PWRA1,
        D.PWRA2,
        D.DEVICE_ID,
        D.SRV_TIMESTAMP 
    FROM
        data_raw AS D 
    INNER JOIN
        data_timeslots AS T 
            ON T.ID = D.TIMESLOT_ID 
    WHERE
        T.DEVICE_ID = 'CEC02' 
    ORDER BY
        T.ID DESC LIMIT 1

Related Articles



* original question posted on StackOverflow here.