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 `sign_ins` ADD INDEX `sign_ins_idx_time_in` (`time_in`);
SELECT
DISTINCT `sign_ins`.`project`
FROM
`sign_ins`
WHERE
`sign_ins`.`time_in` >= '2014-12-07 00:00:00'
AND `sign_ins`.`time_out` <= '2014-12-08 00:00:00'