SQL query Got error 28 from storage engine
SELECT DISTINCT(a.`cafe_id`), a.*, b.`address`, c.`time_from_hours`, c.`time_from_mins`, c.`time_to_hours`, c.`time_to_mins`, c.`lunch_delivery`
FROM
`client_users_info` a
LEFT JOIN `client_users_addresses` b ON a.`cafe_id` = b.`cafe_id`
LEFT JOIN `client_lunch` c ON a.`cafe_id` = c.`cafe_id`
WHERE
b.`district` = 67 AND
a.`info_status` = 'show'
GROUP BY a.`cafe_id` ORDER BY a.`title` ASC