-- 查询至少有一门课与学号为"01"的同学所学相同的同学的信息 ** group_concat函数将学生所学课程转化为字符串,比较字符串 select*fromstudentwheres_idin(selectdistinctb.s_idfromscore bwhereb.c_idin(selectc_idfromscorewheres_id='01')) -- 查询和"01"号的同学学习的课程完全相同的其他同学的信息 s...