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

Menggunakan PHP MYSQLi cara mendapatkan hanya debitur dan hanya kreditur yang dikelola dengan action_type DR dan CR

Tampaknya Anda hanya perlu mengubah HAVING klausa, untuk memfilter kasus di mana balance lebih dari nol (Debitur) ATAU balance kurang dari nol (Kredit).

Anda juga dapat menggunakan IF() condition bersyarat ekspresi untuk menentukan dr/cr di balance kolom.

Untuk mendapatkan Debitur hanya:

SELECT client_id, 
       Sum(Coalesce(CASE 
                      WHEN action_type = 'dr' THEN amount 
                    end, 0)) AS total_debits, 
       Sum(Coalesce(CASE 
                      WHEN action_type = 'cr' THEN amount 
                    end, 0)) AS total_credits, 
       Sum(Coalesce(CASE 
                      WHEN action_type = 'cr' THEN amount 
                    end, 0)) - Sum(Coalesce(CASE 
                                              WHEN action_type = 'dr' THEN 
                                              amount 
                                            end, 0)) AS total_debtors, 
       IF(Sum(Coalesce(CASE 
                         WHEN action_type = 'cr' THEN amount 
                       end, 0)) - Sum(Coalesce(CASE 
                                                 WHEN action_type = 'dr' THEN 
                                                 amount 
                                               end, 0)) > 0, 'dr', 'cr') AS balance 
FROM   tbl_balancesheet 
GROUP  BY client_id 
HAVING balance = 'dr' AND total_debtors <> 0

Untuk mendapatkan Kredit hanya:

SELECT client_id, 
       Sum(Coalesce(CASE 
                      WHEN action_type = 'dr' THEN amount 
                    end, 0)) AS total_debits, 
       Sum(Coalesce(CASE 
                      WHEN action_type = 'cr' THEN amount 
                    end, 0)) AS total_credits, 
       Sum(Coalesce(CASE 
                      WHEN action_type = 'cr' THEN amount 
                    end, 0)) - Sum(Coalesce(CASE 
                                              WHEN action_type = 'dr' THEN 
                                              amount 
                                            end, 0)) AS total_debtors, 
       IF(Sum(Coalesce(CASE 
                         WHEN action_type = 'cr' THEN amount 
                       end, 0)) - Sum(Coalesce(CASE 
                                                 WHEN action_type = 'dr' THEN 
                                                 amount 
                                               end, 0)) > 0, 'dr', 'cr') AS balance 
FROM   tbl_balancesheet 
GROUP  BY client_id 
HAVING balance = 'cr' AND total_debtors <> 0


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Fungsi MySQL POW() – Meningkatkan Nilai ke Kekuatan Nilai Lain

  2. MySQL DROP semua tabel, abaikan kunci asing

  3. Bagaimana menemukan semua string huruf besar dalam tabel MySQL?

  4. #1060 - Duplikat nama kolom 'id'

  5. Mengelompokkan beberapa pernyataan Mysql untuk mengambil jumlah beberapa status