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 `examples` ADD INDEX `examples_idx_id` (`id`);
SELECT
examples.id,
(examples.first_name = :first_name) AS first_name_match,
(examples.last_name = :last_name) AS last_name_match,
(examples.email = :email) AS email_match
FROM
examples
WHERE
(
examples.id <> :id
)