Если правильно понял ТЗ, то нужно получить удаленные аккаунты. join может дать нам эту фильтрацию, сделав соединение.
select *
from account
join account_history on account_history.parentId = account.id and account_history.Status = 'deleted'
order by account.id desc
limit 50
Если нужно выбрать аккаунты и с тем условием, что не у всех может быть статус удален, то так:
select *
from account
left join account_history on account_history.parentId = account.id and account_history.Status = 'deleted'
order by account.id desc, account_history.parentId desc
limit 50