Mysql
 sql >> Baza danych >  >> RDS >> Mysql

jak uzyskać poprawną liczbę?

Szukasz rozwiązania sumarycznego:

Sprawdź to tutaj:http://rextester.com/SEZS4911

select if (@last_order <> sales_order, @acm_order := order_quantity - bill_qty, @acm_order := @acm_order - bill_qty) as Open,
       sales_order,
       so_create_on,
       order_quantity,
       bill_item,
       bill_qty,
       bill_doc,
       bill_doc_date,
       @last_order := sales_order
from
     (select @last_order := 0, @acm_order := 0) x,
     (SELECT sa.sales_order,
               sa.so_create_on,
               sa.order_quantity,
               sh.bill_item, 
               sh.bill_qty,
               sh.bill_doc, 
               sh.bill_doc_date
        FROM sales_order sa
        LEFT JOIN shipped_order sh ON sa.sales_order = sh.sales_order
        order by sa.sales_order, sh.bill_doc_date) y
;



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak przechowywać dane w bazie danych w LARAVEL 5.2?

  2. Dlaczego mój wynik jest duplikowany podczas korzystania z podzapytania?

  3. Wyświetlanie zbioru danych JSON jako tabeli z Node.js i Express

  4. Jak pobrać dzisiejsze / wczorajsze dane z bazy MySQL?

  5. Usuwanie duplikatów w MySQL