Fiz com uma sequencia de subconsultas:
SELECT CONCAT('O cliente ', j.nome, ' ', 'faturou', ' ', j.faturamento, 'no ano de 2016') from
(select tabela_de_clientes.nome, x.faturamento from
(select notas_fiscais.cpf, sum(itens_notas_fiscais.quantidade*itens_notas_fiscais.preco) as faturamento
from notas_fiscais inner join itens_notas_fiscais
on notas_fiscais.numero = itens_notas_fiscais.numero
where year(notas_fiscais.data_venda) = 2016
group by cpf) x inner join tabela_de_clientes
on tabela_de_clientes.cpf=x.cpf) j