My MySQL query keeps returning with no results even though I think it should, I've probably made a silly mistake. So a fix would be fantastic. Thanks
SELECT SQL_CALC_FOUND_ROWS business_title, CONCAT(School_title, ', ', County, ', ', Town, ', ', Street_title, ', ', Postcode)
FROM `me-datab`.`business_main_location`
INNER JOIN `business_site`
ON `business_site`.Find_Me= `business_main_location`.Find_Me
INNER JOIN `Personal`
ON `Personal`.Personal_ID = `business_main_location`.Personal_ID
INNER JOIN `address`
ON `address`.Address_ID = `business_main_location`.Find_Me
LEFT JOIN.