select i.invoice_id, coalesce(pp.balance, i.balance) as Balance
from invoices i
left outer join pending_payments pp on i.invoice_id = pp.invoice_id
Hãy cho tôi biết nếu có thể có nhiều hàng trong pending_payments
cho cùng một invoice_id
và tôi sẽ đề xuất một giải pháp thay thế.