Tuple Variables
SELECT product1.maker, product2.maker
FROM Product AS product1, Product AS product2
WHERE product1.category=product2.category
AND product1.maker <> product2.maker
Product ( name, price, category, maker)
Find pairs of companies making products in the same category