MySQL的左连接
#左连接,以左表为基表 select class1.stuid,class1.stuname,sex,course from class1 left join course on class1.stuid=course.stuid;