I'm having trouble coming up with a query that will find all customers who have purchased both PROD1 and PROD2.
Here's a pseudo-query that kind of looks like what I want to do: (obviously this wouldn't work)
SELECT COUNT(DISTINCT userid)
FROM TRANSACTIONS
WHERE product_id = 'prod1'
AND product_id = 'prod2'
So basically I'm trying to get a count of the number of distinct userids that have a transaction in the transactions
table for both product_id 'prod1
' and 'prod2
'. Each transaction is stored in a row in the transactions
table.