Considerando o SQL Server 2008, a execução do código SQL aba...

Considerando as tabelas acima e seus relacionamentos, julgue os
itens seguintes.
SELECT a.nomecliente Cliente, SUM(c.valorcurso) Valor
FROM tbcliente a
LEFT JOIN tbClienteCurso c
ON a.idcliente = c.idcliente
RIGHT JOIN tbcurso b
ON b.idcurso = c.idcurso
GROUP BY a.nomecliente
WITH CUBE
ORDER BY 2