I have the below SQL query and want to know if there is a way to optimise the query.
SELECT * FROM LogEntry WHERE UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(updateTime) > 10;
Will adding index on updateTime improve the performance on something more can be done to improve the performance