Skip to content
Advertisement

SQL Server : sum and multiplies on 2 tables

I need help to SUM and MULTIPLIES on join 2 tables:

tb1

Tabel 1

tb2

Tabel 2

In tb1, I need to sum QTY and multiples SKU with PRICE without repeating same SKU (21135208, 21035621):

Current query:

My result is:

enter image description here

Expected result is:

enter image description here

Advertisement

Answer

I believe that you could filter out duplicates by using a subquery like SELECT DISTINCT ... FROM tb1, while leaving the rest of the query untouched:

NB: there are some issues with the table aliases in your query:

  • columns STATUS_A or STATUS_B should be prefixed tb2, not tb1 (I fixed that)
  • alias COH which is being used in the ORDER BY clause is not declared anywhere in the query (that’s a syntax error)
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement