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 `table` ADD INDEX `table_idx_nameofstud_unixtime_percentage` (`NameOfStudent`,`UnixTime_YearOfExam`,`percentageScored`);
ALTER TABLE `table` ADD INDEX `table_idx_unixtime_yearof_percentagescore` (`UnixTime_YearOfExam`,`percentageScored`);
SELECT
*
FROM
table
WHERE
table.NameOfStudent = 'xyz'
ORDER BY
table.UnixTime_YearOfExam DESC,
table.percentageScored DESC LIMIT 3