For MySQL 8.0.14+ you can also do this with LATERAL by using order and limit in the subquery.
SELECT CONCAT(title, ' ', forename, ' ', surname) AS name
FROM t_customer c,
LATERAL (
SELECT title, forename, surname
FROM t_customer_data
WHERE customer_id = c.customer_id
ORDER BY id DESC
LIMIT 1
) d