So I want to join two tables together, but for each row in the first table, I only want to join it to the top 8 matching rows in the other table, ordered by one of the columns in that table. Any clever syntax I can use, or do I need to get messy with subqueries?
A:
This may not be the best solution, but say you're joining on ID, you can use a subquery in your where clause.
select from table1 where id in (select top 8 id from table2 order by column1 desc)
Aaron
2010-02-11 20:47:11
The TOP clause is SQL Server only.
Jon Seigel
2010-04-05 15:51:51
+1
A:
Have a look at
How to select the first/least/max row per group in SQL
Section Select the top N rows from each group
This is a slightly harder problem to solve. Finding a single row from each group is easy with SQL’s aggregate functions (MIN(), MAX(), and so on). Finding the first several from each group is not possible with that method because aggregate functions only return a single value. Still, it’s possible to do.
astander
2010-02-11 20:47:29