已知关系Student(S#, Sname, Sage, Sclass),Course(C#, Cname, Credit, Cteacher),SC(S#, C#, Score)。给定SQL语句如下:“SELECT  Score  FROM Student, Course, SC WHERE Cname=‘Database System’and Sname=‘张伟’ and Student.S# = SC.S#  and Course.C#=SC.C#”请用语法树给出其最终的优化结果,正确的是____________。
A、
B、
C、
D、