Enunciados de questões e informações de concursos
Analise os comandos SQL a seguir, que produzem os resultados R1, R2 e R3, respectivamente.
I.
select distinct x.* from x, y
where x.a <> y.a
II.
select distinct x.* from x
where x.a not in (select a from y)
III.
select distinct x.* from x
where not exists
(select * from y where y.a=x.a)
Sabendo-se que nenhuma das instâncias das tabelas “x” e “y” é vazia, é correto concluir que: