Given that tables T1 and T2 contain the following rows: Table T1:<br /> C1 C2<br /> 5 4 5 2 5 5<br /> Table T2: C1 C2 5 1 5 2 5 3<br /> Which of the following queries will return only those rows that exist in T1 and not in T2?()<p> Given that tables T1 and T2 contain the following rows: Table T1:<br /> C1 C2<br /> 5 4 5 2 5 5<br /> Table T2: C1 C2 5 1 5 2 5 3<br /> Which of the following queries will return only those rows that exist in T1 and not in T2?()</p>
A、A.SELECT * FROM T1 MINUS SELECT * FROM T2
B、B.SELECT * FROM T1 EXCEPT SELECT * FROM T2
C、C.SELECT * FROM T2 UNION EXCEPT SELECT * FROM T1
D、D.SELECT * FROM T1 NOT EXISTS SELECT * FROM T2