Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

MySQL kurangi dari subquery yang terisolasi

SELECT 
    a.product_id
  , a.cumulative as total_inventory
  , a.cumulative - COALESCE(b.quantity,0) AS inventory_on_hand
FROM table1 a
JOIN 
    ( SELECT MAX(id) AS max_id
      FROM table1
      GROUP BY product_id
    ) m ON (m.max_id = a.id)
LEFT JOIN
    ( SELECT product_id, SUM(quantity) 
      FROM table1 
      WHERE in_transit = 1
      GROUP BY product_id
    ) b ON (a.product_id = b.product_id)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Mendapatkan 5 karakter string terakhir dengan kueri mysql

  2. Lewati sisipan pada entri duplikat di mysql

  3. Berjuang dengan kueri SQL khusus

  4. Pembaruan bidang MySQL CURRENT_TIMESTAMP pada setiap pembaruan

  5. MYSQL menggabungkan tampilan dua tabel yang memiliki jumlah catatan entri yang berbeda