I have 2 select which are basically identical, changing only 1 table. I'm trying to put the 2 in a single select, but I'm not getting it.
Follow the select:
SELECT DISTINCT
a.id,
a.unidade,
a.posicao,
a.nome,
a.peso
FROM
produtos a,
produtos_pedidos b
WHERE
a.id = b.id_produto
and b.id_pedido IN (1,2)
ORDER BY a.nome
Select 2:
SELECT DISTINCT
a.id,
a.unidade,
a.posicao,
a.nome,
a.peso
FROM
produtos a,
pedidos_barganha b
WHERE
a.id = b.id_produto
and b.id_pedido IN (1,2)
ORDER BY a.nome
Does anyone know how I can put the 2 together?