I'm having trouble w/ a large query and think it comes down to a small piece that I might be doing wrong. Here's an example of it...Table1userID username555 doug666 steve777 carl888 stan
Table2requestID userID 005 555 006 666
I need to return users that have an entry in Table1, but do NOT have an entry in Table2. How would I do this? Below is how I'm approaching it, but I'm not getting the correct results back.select * from Table1 t1 outer join Table2 t2 on t1.userID = t2.userIDwhere t1.userID <> t2.userID
Thanks in advance for any help!