SELECT applicant.id, applicant.firstname, applicant.lastname, applicant.state, applicant.mobile, applicant.lead_description, GROUP_CONCAT(note.note SEPARATOR ', ') as notes
FROM applicant LEFT JOIN
note
ON applicant.id = note.applicant_id
WHERE delete_type = 0 AND applicant.type = 0
GROUP BY applicant.id
ORDER BY applicant.id DESC
The result is too slow from 2 tables.
This is your query:
You should start with indexes. I would recommend
applicant(type, id)
andnote(applicant_id)
. And includingdelete_type
in one of them (I don't know which table it comes from).Second, this query may be faster using a correlated subquery. This would look like:
The condition on
delete_type
either goes in the outer query or the subquery -- it is not clear which table this comes from.This avoids the large
group by
on the external data, which can be a performance boost.