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 `transactions` ADD INDEX `transactions_idx_memberid_tadatetime` (`Memberid`,`taDateTime`);
SELECT
*
FROM
members M
WHERE
EXISTS (
SELECT
1
FROM
transactions
WHERE
transactions.taDateTime >= '30.06.2013'
AND transactions.Memberid = M.ID
)