用left join保留所有person表信息
select p.id, p.name, t.content 
from person p
left join task t
on p.id=t.person_id
order by p.id;