You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Exec_3_24.SQL 296B

123456789101112
  1. SELECT vendor_name,
  2. invoice_date,
  3. invoice_number,
  4. invoice_sequence AS li_sequence,
  5. line_item_amount AS li_amount
  6. FROM vendors v,
  7. invoices i,
  8. Invoice_Line_Items l
  9. ORDER BY vendor_name,
  10. invoice_date,
  11. invoice_number,
  12. invoice_sequence;