- Home
- Blogs
- George Boobyer's blog
- Relational Division
Relational Division
Sometimes you come across a problem in SQL that is far more complex than you first imagine. One classic of these is 'Relational Division' - a poorly understood aspect of SQL that can help answer what must be a common question:
Return the things that have all of the items in a given list
Example questions:
- If I have a list of people with related skills, how can I return those with all of the skills in a list.
- Get a list of products that have a given set of features, recipes with the following ingredients, etc
Most might answer that you use an IN LIST - but that is an OR list not an AND list.
So not:
- Return those with any of the given values e.g. where related values in (1,2,3) but
- Return those with all of the given values i.e. where related values = 1 and 2 and 3
In Joe Celko's SQL for Smarties he has a list of pilots who can fly types of planes and a hanger with some planes in it. Which pilots can fly all of the planes in the hanger. This is called - Relational Division.
This is unbelievable that it is so hard to answer this question.
So to an example to show how it works:
Let's assume we have a set of people that possess one or more skills. The answer we want is show me the people who have all of the skills in a list.
e.g. get those with LAMP skills - Drupal, PHP and MySQL
Given a table schema like
person_name | skill |
Tom | Linux |
Tom | MySQL |
Tom | Drupal |
Tom | PHP |
Dick | PHP |
Dick | MySQL |
Harriet | Drupal |
Harriet | MySQL |
Alice | MySQL |
Alice | Linux |
Alice | Drupal |
Alice | PHP |
Tom, Dick and Harriet are people
Linux, Drupal, MySQL, PHP are skills
Tom is skilled in all four skills (Linux, Drupal, PHP and MySQL) as is Alice; Dick and Harriet only have two skills.
People have 1 or more skills - but we want to find all those with Drupal and PHP and MYSQL skills
Put another way say we normally use an in list like:
but that is an or list
e.g. it says return all people who have Drupal, PHP or MySQL and you'll get back all four people.
What we want is to select People that have all of the skills provided, like an in list but an AND not OR
This turns out to be exceptionally hard and not easy to resolve - it is called Relational Division.
You will find loads about it but very few good answers (Joe Celko always has good solutions clearly - https://www.simple-talk.com/sql/t-sql-programming/divided-we-stand-the-s... - His book 'SQL for Smarties' is a must read for DBAs))
Here is a quick solution:
Basically it says 'get all the people with any of the skills but where the number of skills they have is equal to the number of skills matched by the list'.
Count the number of skills from the skill table.
Do a group by of the people and their skill count and only return those with the same number of skills as asked for. You'd think it would be simpler than that wouldn't you...
This method enables you to pass in one in list and use it twice.
To adapt the method provided by Joe Celko where his example uses a table of planes in a hanger - (our example uses a provided in list)'
This will give us the people with MySQL and Drupal skills (e.g. Tom, Harriet & Alice). This must be the best answer - if not the easiest to understand. Joe Celko uses an nice double negative to explain the logic here (using his Pilot's and Hanger of planes example)'
The quickest way to explain what is happening in this query is to imagine a World War II movie where a cocky pilot has just walked into the hangar, looked over the fleet, and announced, "There ain't no planes in this hangar that I can't fly!" We want to find pilots for whom no plane exists in the hangar for which they have no skills. You might want to read that double negative again – it is ugly English, but good logic. https://www.simple-talk.com/sql/t-sql-programming/divided-we-stand-the-s...
I have also seen other examples that test the list for the number of items (I prefer the previous example as it also tests for the skills' existence):
That uses one 'in list' and simply counts the number of items passed in(by looking for commas).
Refs
Contact Details
Blue-Bag Ltd
- info [at] blue-bag.com
- Telephone: 0843 2894522
- Blue-Bag HQ:
The Garage, Manor Farm
Chilcompton, Radstock
Somerset, BA3 4HP, United Kingdom - Telephone: (+44) 01761 411542
- Blue-Bag Brighton:
Unit 35 Level 6 North, New England House
New England Street, Brighton
BN1 4GH United Kingdom - Telephone: (+44) 07944 938204
- VAT GB 748125034
- UK Company Reg: 3932829