Imagem de fundo

Considere as tabelas aluno (id INT, nome CHAR, curso INT) e curso (id INT, nome CHAR), ...

Considere as tabelas aluno (id INT, nome CHAR, curso INT) e curso (id INT, nome CHAR), apresentadas a seguir.

Qual dos comandos SQL a seguir foi utilizado?

A
SELECT a.nome, c.nome FROM aluno a RIGHT JOIN curso c ON a.curso = c.id;
B
SELECT a.nome, c.nome FROM aluno a LEFT JOIN curso c ON a.curso = c.id UNION SELECT a.nome, c.nome FROM aluno a RIGHT JOIN curso c ON a.curso = c.id;
C
SELECT a.nome, c.nome FROM aluno a LEFT JOIN curso c ON a.curso = c.id;
D
SELECT a.nome, c.nome FROM aluno a INNER JOIN curso c ON a.curso = c.id;
E
SELECT a.nome, c.nome FROM aluno a RIGHT JOIN curso c ON a.curso = c.id UNION SELECT a.nome, c.nome FROM aluno a LEFT JOIN curso c ON a.curso = c.id;