///
Analise o comando SQL a seguir, no contexto das tabelas R1, R2 e R3.
delete from R2
where exists
(select * from R1
where R1.A1=R2.A2 and R1.B1=R2.B2)
or exists
(select * from R2 r
where r.A2=R2.A2 and r.B2=R2.B2)Assinale a opção que indica as linhas de R2 removidas na execução do referido comando.