Considere a relação a seguir, definida na linguagem SQL padrão.
CREATE TABLE ALUNO (
ID NUMBER(4) PRIMARY KEY,
NOME VARCHAR(1 O),
RENDIMENTO NUMBER(5,2))
Considere também as consultas (C1, C2, C3 e C4) a seguir, expressas na linguagem SQL.
C1 :select NOME from ALUNO
where ID in ((select ID from ALUNO)
minus (select A1.ID from ALUNO A1,ALUNO E2
where A1. RENDIMENTO> A2.RENDIMENTO))
Obs: o operador minus realiza a operação de subtração entre relações.
C2:select NOME from ALUNO
where ID in ( select A1.ID from ALUNO A1, ALUNO A2
where A1. RENDIMENTO< A2. RENDIMENTO)
C3:select NOME from ALUNOwhere RENDIMENTO = (select
min(RENDIMENTO) from ALUNO)
C4:select NOME from ALUNOwhere RENDIMENTO <= all (select RENDIMENTO
from ALUNO)
Com relação às consultas, assinale a opção CORRETA.