I have a problem in the query to generate a report. I made a JOIN of the ordering table (which will get the report) with the table of customers and products. Until then everything worked, but he hardly shows all the requests, only shows the first. At the moment I have about 3 requests related to the tables. Look at the code:
SELECT pedidos_id,
pedidos.cliente_id,
pedidos.produto_id,
clientes.nome AS nome_cliente,
produtos.nome AS nome_produto,
pedidos.data,
pedidos.frete,
pedidos.quantidade,
pedidos.total,
SUM(pedidos.total) as sub_total
FROM pedidos
INNER JOIN clientes ON pedidos.cliente_id = clientes.clientes_id
INNER JOIN produtos ON pedidos.produto_id = produtos.produtos_id
ORDER BY clientes.nome