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.

exer_5C47.sql 84B

12345
  1. USE AP;
  2. SELECT vendor_id, COUNT(*) AS invoice_qty
  3. FROM invoices
  4. GROUP BY vendor_id;