1.根据note表的stu_id查找发note人的nam

select a._id,a.content,a.stu_id,a.addDate,b.nam from `note` as a inner join `stu_info` as b on a.stu_id = b.idx order by a.addDate desc limit 10