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:
SELECT
StartTime AS ID,
StartTime,
(SELECT
GROUP_CONCAT(B.intActivityID)
FROM
tblBookings B
WHERE
B.dtmDateTime = DATE_ADD(STR_TO_DATE(CONCAT('2015-08-21 ', StartTime), '%Y-%m-%d %H:%i'), INTERVAL 1 DAY)) AS `Sat`
FROM
(SELECT
'10:00' AS StartTime
UNION
SELECT
'10:30'
UNION
SELECT
'11:00'
UNION
SELECT
'11:30'
UNION
SELECT
'12:00'
UNION
SELECT
'12:30'
UNION
SELECT
'13:00'
UNION
SELECT
'13:30'
UNION
SELECT
'14:00'
UNION
SELECT
'14:30'
UNION
SELECT
'15:00'
UNION
SELECT
'15:30'
UNION
SELECT
'16:00'
) AS X