Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

क्रेडिट और डेबिट से चल रहे शेष को प्रदर्शित करने के लिए एक MySQL क्वेरी कैसे बनाएं जहां एकाधिक ग्राहकों के पास व्यक्तिगत शेष राशि है

यह काम करना चाहिए

  select  transaction_id, customer_id, date, credit, debit,
  abs(sum(ifnull(credit,0)) over (partition by customer_id order by date,credit,transaction_id ) - sum(ifnull(debit,0)) over(partition by customer_id order by date,debit,transaction_id)) as balance
  from ledger
  order by transaction_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. यूयूआईडी को नोड में बाइनरी से/में कनवर्ट करें

  2. एक कॉलम चुनें अगर दूसरा खाली है

  3. MySQL में किसी तालिका के संयोजन को कैसे दिखाएं

  4. एक पंक्ति में पूर्वावलोकन अगला रिकॉर्ड प्राप्त करें

  5. Express.js और MySQL मॉडल + सत्यापन