I would like to get a different record from the left join sql.
SELECT sd.bill_amount, mr.payment_amount
FROM event_mgmt_settlement_details sd
LEFT JOIN event_mgmt_registration mr
ON sd.order_id = mr.order_id
In this sql, I can get all the records from 2 tables with same order_id, but some sd.order_id or mr.order_id that have unique id that each other don't have, how I can get those records?