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 `User_Info` ADD INDEX `user_info_idx_action_user_name_url` (`action`,`user_name`,`url`);
SELECT
*
FROM
(SELECT
info.*,
ROW_NUMBER() OVER (ORDER
BY
info.modified_date DESC) rn
FROM
(SELECT
info.*,
Count(*) OVER () AS info_count
FROM
User_Info info
WHERE
(
(
info.url LIKE 'url://%'
)
AND (
info.action = 'Action1'
)
AND info.user_name = 'john'
AND info.modified_date >= '04/01/2014 00:00:00'
AND info.modified_date <= '04/12/2014 23:59:59'
)) info) info
WHERE
rn >= 1
AND rn <= 100