11、查询至少有一门课与学号为“1001”的同学所学相同的同学的学号和姓名; 
    select S#,Sname from Student,SC where Student.S#=SC.S# and C# in select C# from SC where S#='1001'; 
12、查询至少学过学号为“001”同学所有一门课的其他同学学号和姓名; 
    select distinct SC.S#,Sname 
    from Student,SC 
    where Student.S#=SC.S# and C# in (select C# from SC where S#='001'); 
上面两句是不是一样的呀?