Pessoal preciso gerar uma coluna calculada dos Ids_Produtos que contém na query, mas está apresentando o erro : Subquery returns more than 1 row
Query :
select
f.id,
f.data_baixa as data_pagamento,
cm.valor_movimento as valorFaturaSemFrete,
c.id as idCadastro,
c.nome,
(select sum(cm.valor_movimento) from teste_base.produtos_movimento pm
where pm.id_produto in(505,506,595,596,597,629,725,732,788,824,1197,1198,1199,1200,1278,214,215,216,217,218,219)
and pm.id_produto = pm.id_produto) as valor_kits
from teste_base.faturas f
left join teste_base.produtos_movimento pm on(pm.id_movimento = f.id_movimento)
left join teste_base.controle_movimento cm on(cm.id = f.id_movimento)
left join teste_base.usuarios u on(u.id = cm.id_usuario)
left join teste_base.cadastros c on(c.id = u.id_cadastro)
where
f.confirmado = 1
and f.tipo not in(32,33)
and f.data_baixa >= '2017-05-01'
and f.data_baixa <= '2017-12-31'
and pm.id_produto in(505,506,595,596,597,629,725,732,788,824,1197,1198,1199,1200,1278,214,215,216,217,218,219)
group by f.id asc
having sum(pm.quantidade) >= 14