PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como INTERSECT dados de tabelas no postgres


Pelo que entendi a pergunta, acho que é isso que você está procurando
select title , movieid from movies
where movieid in 
(
        SELECT movieid FROM ratings
        WHERE votes > 0
    INTERSECT 
        SELECT movieid FROM genres 
        WHERE genre = '$_SESSION[genero]'
)