-4
SELECT DISTINCT(pedidos.id_pedidos),produtos.nome_produto
FROM pedidos
INNER JOIN itens_dopedido ON itens_dopedido.id_pedido=pedidos.id_pedidos
INNER JOIN produtos ON produtos.id_produto=itens_dopedido.id_produto
WHERE nome_produto = (SELECT (COUNT(DISTINCT(id_pedido)) >= 5));
Results are coming out with 4 different orders and 1. Can anyone explain to me what is going on? Because I don’t understand.
What is the purpose of your
query
?– Sorack
Consider using the clause
HAVING
. It is the typical problem to which it applies.– anonimo