SELECT p.id,p.name,t.content
FROM person p left join task t on p.id=t.person_id
order by p.id

考察左外连接,外连接查询内连接+主表中有而从表中没有的记录
本题主表为左表,故为左外连接