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:
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`);
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