sql >> Base de Datos >  >> RDS >> PostgreSQL

Para usar otra tabla como criterio DONDE en SQL

prueba:

SELECT q.question_id, q.title
    FROM questions      q
        INNER JOIN tags t ON q.question_id=t.question_id
    WHERE tag = $1 
    ORDER BY q.was_sent_at_time
    DESC LIMIT 50