I have a table journals
having columns transaction_id, type(receipt or payment), debit and credit columns for amount, account_id relation with accounts
table
the records can be multiple receipt or payment entries, and an opposite entry to record sum of these multiple entries matching transaction_id if entries are type receipt column credit should have amount else column debit should have amount.
i want to retrieve results as following. get all journals, each row should have opposite row columns, rows columns should be like this. transaction_id, type, amount(debit or credit), credit_id(based on entry type, from journal or opposite journal), debit_id(based on entry type, from journal or opposite journal matching transaction_id)
$accounts = DB::select("
SELECT
a.id as account_id,
a.title as accountTitle,
j1.type as type,
CASE
WHEN j1.type = 'cashReceipt' THEN j1.credit
ELSE j1.debit
END AS amount,
CASE
WHEN j1.type = 'cashReceipt' THEN j1.account_id
ELSE j2.account_id
END AS credit_id,
a_credit.title as credit_account_title,
CASE
WHEN j1.type = 'cashPayment' THEN j1.account_id
ELSE j2.account_id
END AS debit_id,
a_debit.title as debit_account_title,
j1.narration
FROM
accounts a
JOIN
journals j1 ON a.id = j1.account_id
JOIN
journals j2 ON j1.transaction_id = j2.transaction_id
JOIN
accounts a_credit ON a_credit.id = CASE
WHEN j1.type = 'cashReceipt' THEN j1.account_id
ELSE j2.account_id
END
JOIN
accounts a_debit ON a_debit.id = CASE
WHEN j1.type = 'cashPayment' THEN j1.account_id
ELSE j2.account_id
END
WHERE
(j1.type = 'cashReceipt' AND j2.type = 'cashPayment')
OR
(j1.type = 'cashPayment' AND j2.type = 'cashReceipt')
");
but not returning rows as expected, number of rows are 35640, but result was 7640
I understand that you want to retrieve all rows from the journals table while matching each row with its opposite entry based on the transaction_id. You also want to exclude the opposite rows from the result set. To achieve this, you can use a self-join and a subquery.