Questão de Banco de Dados — SQL — NCE-UFRJ 2008
Banco de DadosSQL
- Código
- qg795296
- Banca
- NCE-UFRJ
- Órgão
- UFRJ
- Ano
- 2008
- Nível
- Superior
- Cargo
- NCE - - ACAPLAM-PB - Analista de Tecnologia da Informação
Considere os seguintes comandos SQL:I. select * from R where a not in (select a from S)II. select * from R where not exists (select * from S where R.a=S.a)III. select * from R where a <> all (select a from S)IV. select * from R where count(select * from S where R.a=S.a)=0Pode-se concluir que produzem o mesmo resultado somente os comandos:
- AI e II;
- BII e III;
- CI, II e III;
- DII, III e IV;
- EI, II, III e IV.