【解题思路】
题目结果要求有null的情况,所有需使用外联结函数

SELECT p.*,t.content 
FROM person AS p
LEFT JOIN task AS t
ON p.id=t.person_id;