Given that tables T1 and T2 contain the following rows : Table T1 : C1 C2 (5 4) (5 2) (5 5) Table T2 : C1 C2 (5 1) (5 2) (5 3) Which of the following queries will return only those rows that exists in T1 and not in T2 ?
Select * from T1 minus select * from T2
Select * from T1 except select * from T2
Select * from T1 union except select * from T2
Select * from T1 not exists select * from T2