PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come unire solo una riga nella tabella unita con postgres?

select distinct on (author.id)
    book.id, author.id, author.name, book.title as last_book
from
    author
    inner join
    book on book.author_id = author.id
order by author.id, book.id desc

Controlla distinct on

Con distinto su è necessario includere le colonne "distinte" nel order by . Se questo non è l'ordine che desideri, devi eseguire il wrapping della query e riordinare

select 
    *
from (
    select distinct on (author.id)
        book.id, author.id, author.name, book.title as last_book
    from
        author
        inner join
        book on book.author_id = author.id
    order by author.id, book.id desc
) authors_with_first_book
order by authors_with_first_book.name

Un'altra soluzione è utilizzare una funzione finestra come nella risposta di Lennart. E un altro molto generico è questo

select 
    book.id, author.id, author.name, book.title as last_book
from
    book
    inner join
    (
        select author.id as author_id, max(book.id) as book_id
        from
            author
            inner join
            book on author.id = book.author_id
        group by author.id
    ) s
    on s.book_id = book.id
    inner join
    author on book.author_id = author.id