Considere as tabelas aluno (matricula INT, nome CHAR, cod_curso INT) e curso (cod_curso INT, curso CHAR, area CHAR), apresentadas a seguir.
Qual dos comandos Structured Query Language (SQL) pode ser utilizado para listar somente os alunos que cursam História?
- A. select aluno.Nome from aluno,curso where aluno.cod_curso = curso.cod_curso AND curso.curso = 'Historia';
- B. select aluno.Nome from aluno,curso where curso.curso = 'Historia';
- C. select aluno.Nome from aluno,curso where aluno.cod_curso = 'Historia';
- D. select curso.curso from aluno,curso where aluno.cod_curso = curso.cod_curso AND curso.curso = 'Historia';
- E. select aluno.Nome from aluno,curso where curso.curso = 'Historia' and aluno.cod_curso != curso.cod_curso;