U kunt UNION ALL
gebruiken
om rijen van beide tabellen te krijgen:
SELECT id, article, author, tag, date FROM table1 WHERE tag = '1'
UNION ALL
SELECT id, article, author, tag, date FROM table2 WHERE tag = '3'
ORDER BY date
U kunt ook overwegen uw database zo te herstructureren dat u in plaats van twee tabellen slechts één enkele tabel gebruikt met een veld om het type van elke rij te onderscheiden. Dan kan de zoekopdracht worden vereenvoudigd tot:
SELECT id, article, author, tag, date
FROM yourtable
WHERE (tag, type) IN (('1','type1'), ('3','type2'))
ORDER BY date