आप इसे एक सहसंबद्ध सबक्वेरी के साथ कर सकते हैं:
select a.*,
(select application_stage
from application_progress ap
where ap.application_id = a.id
order by stage_date desc
limit 1
) MostRecentStage
from applications a;
संपादित करें:
आप आवेदक डेटा में कुछ इस तरह शामिल हो सकते हैं::
select a.*, aa.*,
(select application_stage
from application_progress ap
where ap.application_id = a.id
order by stage_date desc
limit 1
) MostRecentStage
from applications a join
applicant aa
on a.applicant_id = aa.id;