Skip to content
Advertisement

How to Join to first row

I’ll use a concrete, but hypothetical, example.

Each Order normally has only one line item:

Orders:

LineItems:

But occasionally there will be an order with two line items:

Normally when showing the orders to the user:

I want to show the single item on the order. But with this occasional order containing two (or more) items, the orders would appear be duplicated:

What I really want is to have SQL Server just pick one, as it will be good enough:

If I get adventurous, I might show the user, an ellipsis to indicate that there’s more than one:

So the question is how to either

  • eliminate “duplicate” rows
  • only join to one of the rows, to avoid duplication

First attempt

My first naive attempt was to only join to the “TOP 1” line items:

But that gives the error:

The column or prefix ‘Orders’ does not
match with a table name or alias name
used in the query.

Presumably because the inner select doesn’t see the outer table.

Advertisement

Answer

In SQL Server 2005 and above, you could just replace INNER JOIN with CROSS APPLY:

Please note that TOP 1 without ORDER BY is not deterministic: this query you will get you one line item per order, but it is not defined which one will it be.

Multiple invocations of the query can give you different line items for the same order, even if the underlying did not change.

If you want deterministic order, you should add an ORDER BY clause to the innermost query.

Example sqlfiddle

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