Sum with Internet Oracle

Asked

Viewed 798 times

0

Staff need a help, I need to create a report that shows the total quantity of each product in stock, but I can not make appear the name of the products, only the product code and the sum of the quantity of products I have. Below is the code I made:

SELECT 
    c.COD_PRODUTO,
    SUM(b.QTD_SALDO) AS SALDO 
FROM ESTOQUE_1 b
INNER JOIN ESTOQUE_2 c ON b.COD_PRODUTO = c.COD_PRODUTO
WHERE COD_PRODUTO IN ('6306','6308','6307','6234')
GROUP BY COD_PRODUTO;

In this code I have the following return:

SKU                            SALDO
------------------------- ----------
51231535                         210 
68000512                          24 
50388958                        1000 
50387203                        6000

I need the item name to appear as an example below:

NOME  SKU                            SALDO
----- ------------------------- ----------
      51231535                         210 
      68000512                          24 
      50388958                        1000 
      50387203                        6000

The table containing the product name is ESTOQUE_2

The structure of the table is:

ESTOQUE_1
COD_PRODUTO | QTD_SALDO

ESTOQUE_2
COD_PRODUTO | NOME_PRODUTO

2 answers

0

just add the column of table c in Select and Group by

SELECT 
    c.NOME_PRODUTO,
    c.COD_PRODUTO,
    SUM(b.QTD_SALDO) AS SALDO 
FROM ESTOQUE_1 b
INNER JOIN ESTOQUE_2 c ON b.COD_PRODUTO = c.COD_PRODUTO
WHERE COD_PRODUTO IN ('6306','6308','6307','6234')
GROUP BY c.COD_PRODUTO,c.NOME_PRODUTO;
  • Thanks Rovann, it worked out here!!!

  • @Ikki_nogueira do not forget to mark as response. Thank you and welcome to the community.

0


You can put C.NOME_PRODUTO in select and Group by. Thus the result will return the desired grouping

SELECT
    C.NOME_PRODUTO,
    c.COD_PRODUTO,
    SUM(b.QTD_SALDO) AS SALDO 
FROM ESTOQUE_1 b 
INNER JOIN ESTOQUE_2 c 
   ON b.COD_PRODUTO = c.COD_PRODUTO 
WHERE COD_PRODUTO IN ('6306','6308','6307','6234') 
GROUP BY COD_PRODUTO, C.NOME_PRODUTO;

Browser other questions tagged

You are not signed in. Login or sign up in order to post.