SELECT CONCAT('O cliente: ',NOME,' faturou R$',ROUND(SUM(PRECO*QUANTIDADE),2),' no ano de 2016') RESULTADO FROM tabela_de_clientes INNER JOIN notas_fiscais ON tabela_de_clientes.cpf = notas_fiscais.cpf
INNER JOIN itens_notas_fiscais ON notas_fiscais.numero = itens_notas_fiscais.numero
WHERE YEAR(DATA_VENDA) = 2016 GROUP BY NOME;