I have 2 subqueries, but I\'m having trouble joining columns together from the same tables. I tried:
SELECT * FROM (SELECT userid, listid FROM user_views_
Join like this:
ON a.userid = b.sourceid AND a.listid = b.destinationid;
You want to join on condition 1 AND condition 2, so simply use the AND keyword as below