1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-11 11:08:02 +00:00

Add Find Records That Have Multiple Associated Records as a postgres til

This commit is contained in:
jbranchaud
2021-02-14 18:08:12 -06:00
parent 746a22c5ae
commit 0d2eb263ef
2 changed files with 30 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
# Find Records That Have Multiple Associated Records
A common type of table association in a relational database is a one-to-many
relationship. For instance, a database representing a bookshelf may have an
`authors` table where each record can be associated with multiple records in
the `books` table. That relationship is represented by a `author_id` foreign
key column on `books` that points to `authors.id`.
We can write a query to find all authors that have not zero or one, but
multiple books by doing a join and then tacking on a `having` clause.
```sql
select authors.id, authors.name, count(books.id)
from authors
join books
on authors.id = books.author_id
group by authors.id
having count(books.id) >= 2;
```
This will result in a listing of author ids, author names, and their number of
books.
It does this by joining books to authors, grouping by the `authors.id` to
produce a set of records unique to each author, and then combining multiple
books by aggregating them with a `count`. The `having` clause is necessary
because it is our way of _filtering_ on an aggregate value, in this case the
`count`.