Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Duplicate Invoice SQL Logic
00:00
5 left

Duplicate Invoice SQL Logic

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify vendors who have submitted multiple invoices with the exact same dollar amount on the same day.

Use the vendors and invoices tables. Include only duplicate invoice combinations where the vendor, invoice date, and dollar amount are all present.

Output

  1. One row per vendor, date, and invoice amount combination with multiple invoices.
  2. Columns: vendor_id, vendor_name, invoice_date, invoice_amount, invoice_count, and invoice_ids.
  3. Sort by vendor_id, invoice_date, and invoice_amount in ascending order.

Schema

vendors
ColumnTypeDescription
vendor_idPKINTUnique vendor identifier
vendor_nameVARCHAR(150)Vendor legal or trading name
invoices
ColumnTypeDescription
invoice_idPKINTUnique invoice identifier
vendor_idINTVendor that submitted the invoice
invoice_dateDATEDate the invoice was submitted
invoice_amountNUMERIC(12,2)Invoice amount in dollars
Tablesvendorsinvoices
Interviewer

Your question is Duplicate Invoice SQL Logic. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.