Getting One Record Per Group From A One-to-Many Join

Posted December 19, 2007 at 8:58 AM

Tags: SQL

Often times in an application, I have wanted to output a simple list of items that have a one-to-many relationship with other items in the database. One scenario that I come across very often involves attorneys and offices; many attorneys will work out of more than one office, but in an attorney directory, they only want to be listed with their primary office. This is an easy query IF (and only if) "primary office" is explicitly defined using some sort of "is_primary" flag or "sort" indicator, but often times, this filtering is not available.

As such, if you were just to create the SQL JOIN between attorneys and offices, you would get a lot of duplicate names (one for each office relationship), but this is way too much data. Yesterday, I was dealing with a very similar situation and was convinced that I could do all of this in a single query, rather than use query of queries or output shenanigans. What I came up with works, but only with small sets of data; it is not a very efficient method and should be avoided when dealing with large data sets.

To explore this idea, let's create the SQL tables we are going to be used. For this demo, I am going to be using a Contact table and Phone table. The contact table holds people's names. The phone table holds associated phone numbers:

 Launch code in new window » Download code as text file »

  • <!--- SQL to create and populate the data tables. --->
  • <cfsavecontent variable="strSQL">
  • <!--- Create table for contact data. --->
  • DECLARE @contact TABLE (
  • id INT IDENTITY( 1, 1 ),
  • name VARCHAR( 20 )
  • );
  •  
  • <!---
  • Create table for phone data (each phone number will be
  • associated with exactly one contact).
  • --->
  • DECLARE @phone TABLE (
  • id INT IDENTITY( 1, 1 ),
  • name VARCHAR( 20 ),
  • ext VARCHAR( 7 ),
  • is_preferred BIT,
  • contact_id INT
  • );
  •  
  •  
  •  
  • <!--- Populate the contact data. --->
  • INSERT INTO @contact
  • (
  • name
  • )(
  • SELECT 'Ben Nadel' UNION ALL
  • SELECT 'Maria Bello' UNION ALL
  • SELECT 'Jodie Foster' UNION ALL
  • SELECT 'Christina Cox'
  • );
  •  
  •  
  • <!--- Populate the phone data. --->
  • INSERT INTO @phone
  • (
  • name,
  • ext,
  • is_preferred,
  • contact_id
  • )(
  • <!--- Ben's numbers. --->
  • SELECT '212-555-BEN1', '', 1, 1 UNION ALL
  • SELECT '212-555-BEN2', '123', 0, 1 UNION ALL
  • SELECT '212-555-BEN3', '', 0, 1 UNION ALL
  •  
  • <!--- Maria's phone numbers. --->
  • SELECT '917-555-MAR1', '', 0, 2 UNION ALL
  • SELECT '917-555-MAR2', '', 0, 2 UNION ALL
  • SELECT '917-555-MAR3', '', 0, 2 UNION ALL
  •  
  • <!--- Christina's phone numbers. --->
  • SELECT '202-555-CHR1', '', 0, 4 UNION ALL
  • SELECT '202-555-CHR2', '15', 1, 4
  • );
  • </cfsavecontent>

As you can see from this SQL code, we have 4 contacts. Three of them have phone numbers and only two of them have a phone number flagged as "preferred". This means that the "preferred" phone number will not always be easy to access, such as with Maria Bello, who has three numbers but no preference.

Before we get into anything tricky, let's look at a standard JOIN that would bring back both contacts and phone numbers:

 Launch code in new window » Download code as text file »

  • <!--- Query for contacts and their phone numbers. --->
  • <cfquery name="qContact" datasource="#REQUEST.DSN.Source#">
  • <!--- Create the SQL data tables and populate. --->
  • #PreserveSingleQuotes( strSQL )#
  •  
  • <!--- Select contacts as their numbers. --->
  • SELECT
  • c.name,
  •  
  • <!--- Phone data. --->
  • ( p.name ) AS phone_number,
  • ( p.ext ) AS phone_ext,
  • (
  • ISNULL(
  • p.is_preferred,
  • 0
  • )
  • ) AS is_preferred
  • FROM
  • @contact c
  • LEFT OUTER JOIN
  • @phone p
  • ON
  • c.id = p.contact_id
  • ORDER BY
  • c.name ASC
  • </cfquery>
  •  
  •  
  • <!--- Dump out contacts and their phone numbers. --->
  • <cfdump
  • var="#qContact#"
  • label="Contact Phone Numbers"
  • />

As you can see, we just join the two tables based on the associated contact_id. Running the above SQL code, we get the following CFDump output:


 
 
 

 
One-To-Many SQL JOIN Returning Multiple Records Per Grouping  
 
 
 

In this query, we are getting back all contact-phone number associations. For a simple list, however, we don't want that; we only want one contact with a max of one phone number.

If we always had a preferred phone number or had some sort value that was always defined, getting this data would not be a problem - we would just add the sort=1 or is_preferred=1 logic to the LEFT OUTER JOIN. However, as you can see, that can't be done in our example. To get around this, our LEFT OUTER JOIN logic has to get a bit crazy. As part of our join, we want to only get the phone number that is most preferable (which does not mean is_preferred).

Before we look at the overall query, let's think about how we would get the most preferred number for any given contact. Well, we want to prioritize the phone numbers that are flagged as is_preferred. Of course, if that is not defined, or that is always zero, then we need to make an arbitrary decision and say that the first phone number created (as dictated by the auto-incrementing ID) is the most preferred.

Taking that logic, if we wanted to get the most preferred number for contact (ID:1), we would run SQL like this:

 Launch code in new window » Download code as text file »

  • SELECT TOP 1
  • p.id,
  • p.name,
  • p.ext,
  • p.is_preferred
  • FROM
  • @phone p
  • WHERE
  • p.contact_id = 1
  • ORDER BY
  • p.is_preferred DESC,
  • p.id ASC

This will return one (or zero) phone records with the most "preferred" number for contact:1. Now, we want to take this logic, and integrate it into our SQL LEFT OUTER JOIN logic:

 Launch code in new window » Download code as text file »

  • <!--- Query for contacts and their phone numbers. --->
  • <cfquery name="qContact" datasource="#REQUEST.DSN.Source#">
  • <!--- Create the SQL data tables and populate. --->
  • #PreserveSingleQuotes( strSQL )#
  •  
  • <!--- Select contacts as their numbers. --->
  • SELECT
  • c.name,
  •  
  • <!--- Phone data. --->
  • ( p.name ) AS phone_number,
  • ( p.ext ) AS phone_ext,
  • (
  • ISNULL(
  • p.is_preferred,
  • 0
  • )
  • ) AS is_preferred
  • FROM
  • @contact c
  • LEFT OUTER JOIN
  • @phone p
  • ON
  • (
  • c.id = p.contact_id
  • AND
  •  
  • <!---
  • As part of the JOIN condition, make sure
  • that this ID of the phone record we return
  • is equal to the *most* preferred one for
  • that user.
  • --->
  • p.id = ISNULL(
  • (
  • SELECT TOP 1
  • p2.id
  • FROM
  • @phone p2
  • WHERE
  • <!--- Tie to current user record. --->
  • p2.contact_id = c.id
  • ORDER BY
  • p2.is_preferred DESC,
  • p2.id ASC
  • ),
  • 0
  • )
  • )
  • ORDER BY
  • c.name ASC
  • </cfquery>
  •  
  •  
  • <!--- Show contact with max of ONLY one phone number. --->
  • <cfdump
  • var="#qContact#"
  • label="Contact Phone Numbers (Max: 1)"
  • />

Now, our LEFT OUTER JOIN logic not only joins based on the contact ID, it also requires that the ID of the phone number in the join be the ID of the most preferred phone number for that contact. Running this code, you see that we get a much better and more useful query result set:


 
 
 

 
One-To-Many SQL JOIN Returning MAX Of One Record Per Grouping  
 
 
 

This query is easy to work with, in terms of results, but like I said, this is only good for small sets of data. Anytime you make a sub query be part of you JOIN logic, whether it's an INNER or OUTER JOIN, you've got problems; that's a lot of look-ups to perform and the query is going to be slow. But, like I said, if you just need a simple list with one record per group in a one-to-many query, this is an option that I discovered yesterday.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page


You Might Also Be Interested In:




Reader Comments

Dec 19, 2007 at 9:39 AM // reply »
153 Comments

That UNION ALL trick is rather convenient, isn't it?

How about this one:

  • SELECT
  • c.name,
  • p.name AS phone_number,
  • p.ext AS phone_ext,
  • COALESCE(p.is_preferred, 0) AS is_preferred
  • FROM
  • contact c
  • LEFT OUTER JOIN
  • (
  • SELECT
  • contact_id,
  • COALESCE(
  • MIN(CASE WHEN is_preferred = 1 THEN id END),
  • MIN(id)
  • ) AS phoneid
  • FROM
  • phone
  • GROUP BY
  • contact_id
  • ) AS r
  • ON
  • (c.id = r.contact_id)
  • LEFT OUTER JOIN
  • phone AS p
  • ON
  • (r.phoneid = p.id)
  • ORDER BY
  • c.name ASC

Instead of the line-by-line join that yours used, this one tries to grab the best phone number for every contact all at once. The COALESCE() sets up two choices:

1. The first MIN() looks for the first preferred number. It does this just in case someone accidentally ends up with more than one preferred number.
2. The second MIN looks for the first number, whether or not it is preferred.

The "r" subquery then has the best number for each contact, and we join again to [phone] to get the details for the number.


Dec 19, 2007 at 9:59 AM // reply »
7,572 Comments

@Rick,

I formatted your SQL statement so I could read it. Very clever stuff. I like it cause you are using the subquery to create an intermediary table that is not row-specific, so you lack the overhead that my ON-clause subquery has. Very slick.

Also, I am pretty sure I learned that UNION ALL trick from you a long time ago. If I didn't say thanks then, THANK YOU now - it has made testing SQL stuff insanely easy :)

Rick, why are you so clever?!?


Dec 19, 2007 at 7:09 PM // reply »
7 Comments

check this 1 out:

  • select
  • c.name,
  • case
  • (
  • select
  • count(*)
  • from
  • @phone p2
  • where
  • c.id = p2.contact_id
  • and
  • is_preferred = 1
  • )
  • when
  • 0
  • then
  • (
  • select top 1
  • p2.name
  • from
  • @phone p2
  • where
  • c.id = p2.contact_id
  • order by
  • p2.id asc
  • )
  • else
  • (
  • select top 1
  • p2.name
  • from
  • @phone p2
  • where
  • c.id = p2.contact_id
  • and
  • is_preferred = 1
  • order by
  • p2.id asc
  • )
  • end as phone_number,
  • ( p.ext ) as phone_ext,
  • (isnull(p.is_preferred,0)) as is_preferred
  • from
  • @contact c
  • left outer join
  • @phone p
  • on
  • c.id = p.contact_id
  • and
  • is_preferred = 1
  • order by
  • c.name asc

Dec 20, 2007 at 4:27 PM // reply »
7,572 Comments

@Peter,

I formatted your code snippet so that I could better read it (I hope that you don't mind).

In yours, I am not sure that you can get the phone Ext if is not preferred. Your ON clause will exclude the record for non-preferred items. But then, your select clause only makes up for the phone_number, not the Ext field.... I think.


Dec 20, 2007 at 5:00 PM // reply »
7 Comments

Yes, you're right. The extension would require another subquery just like the phone number.

Oh well, thought I'd give it a shot.

P.S. Thanks for formatting.

Peter


Dec 20, 2007 at 5:03 PM // reply »
7,572 Comments

@Peter,

No worries. The more people we have look at / taking shots at a solution, the better then end result will be. Thanks for taking the time to give it a go.


Jun 23, 2008 at 2:24 PM // reply »
1 Comments

Bless you!!!! I needed help with getting the top record only for a join and this helped!


Mar 24, 2009 at 9:46 AM // reply »
1 Comments

Nice trick, I needed it and found it after a Google search.
Thanks from the Netherlands


Mar 24, 2009 at 9:47 AM // reply »
7,572 Comments

@Koek,

Awesome. Glad to help out.


Dec 17, 2009 at 9:11 PM // reply »
1 Comments

Hi,

Is it possible to have the query to return the phone numbers on one line for each worker. Reason I ask, as we have items with multiple prices and management want each item with its' seven different prices on one line. Basically to return the one to many within each line returned.

Most appreciated if you can help. If not, thanks all the same.

Regards, Steve


Jan 5, 2010 at 9:29 AM // reply »
7,572 Comments

@Steve,

If you are using MySQL, I believe they have a CONCAT_GROUP() method for GROUP BY aggregates which does something like that. I have not tried it personally (nor do I know how that might be accomplished in other engines).


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 21, 2010 at 11:13 AM
A New Wrist Pain
@chiropractor suwanee, Spoken like someone trying to sell something. Other than for minor, temporary relief from some back pain, chiropractic treatment is nothing but placebo effect and quackery. ... read »
Mar 21, 2010 at 6:32 AM
ColdFusion CFPOP - My First Look
Apologies... The field name in the db for C. is "BounceCode" It stores the code / message which is returned in the email. Sorry for the confusion. ... read »
Mar 21, 2010 at 6:29 AM
ColdFusion CFPOP - My First Look
@Jose Galdamez, Hi Ben and Jose 1st of all.. big thanks to Jose for his Skype chat a few weeks back. Your time was much appreciated. I have come up with a rather unelegant solution to my problem a ... read »
Mar 21, 2010 at 3:42 AM
A New Wrist Pain
Chiropractic treatment is one of the best methods for treating numerous health problems naturally. After years of experience being a chiropractor, I have found that it is a powerful way to solve many ... read »
Mar 20, 2010 at 12:07 PM
Drawing On The iPhone Canvas With jQuery And ColdFusion
Simply awesome. Saved my day. ... read »
Mar 20, 2010 at 9:00 AM
Building A Fixed-Position Bottom Menu Bar (ala FaceBook)
I would like to say thx for an easy way to create a bottom bar. I do have a ?. Is it possible to center the bar if i want to resize it to ex 85%. Regards Offenbach ... read »
Mar 19, 2010 at 7:26 PM
MySQL 3/4 - com.mysql.jdbc.Driver And allowMultiQueries=true
Thank you very much for this post. Adding allowMultiQueries="true" in context.xml didn't help until I added it to url as allowMultiQueries=true Good idea is to use prepared statements and it will he ... read »
Jim
Mar 19, 2010 at 4:49 PM
Nobody Puts Baby In The Corner!
Wow. This is like suddenly finding a support group for your secret shame. I'm not alone! I always liked this movie, even though it is extremely cheesy. I just wish Jennifer Grey hadn't gotten the ... read »