您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789
  1. SELECT
  2. vendor_name,
  3. invoice_number,
  4. invoice_date,
  5. invoice_total - payment_total - credit_total AS balance_due
  6. From vendors v,
  7. invoices i
  8. WHERE invoice_total IS NULL
  9. ORDER BY vendor_name ASC;