Skip to content
Advertisement

Find a list of all suppliers with orders from more than 615 different customers. Should return supplier name and customer count

Tables:

  • Supplier: S_SUPPKEY, S_NAME
  • Customer : C_CUSTKEY, C_NAME
  • Orders : O_ORDERKEY, O_CUSTKEY
  • Lineitem : L_ORDERKEY, L_SUPPKEY

In the Lineitem table, there are many columns with the same ORDERKEY, but from different SUPPKEY. There can be multiple suppliers in a single order. So if you have 3 suppliers in a single order for one customer, that customer would count for each of the 3 suppliers in their customer count.

This is the query that I came up with, but it seems to be counting duplicate orders, since one order can have many items. I can’t figure out a way to fix this.

Please help

Advertisement

Answer

Use COUNT(DISTINCT):

Note that you don’t need the customer table.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement