dannyb785 Posted July 6, 2012 Share Posted July 6, 2012 So here's my situation: I have a table called User and Report. The Report table has 2 columns, 1 for the person submitting the report and another for the user they are reporting. Each column contains the user id of the respective user. The User table has user_id and user_username. I know how to do a simple Join to get one of the usernames, but how do I get both? For example: to get the username of the person submitting the report, my query is: SELECT r_id,user_username,r_reason FROM Report,User WHERE User.user_id=Report.r_reporter This gives me results with theusername who submitted the report, but I also need to grab the username of the person being reported Quote Link to comment Share on other sites More sharing options...
mikosiko Posted July 6, 2012 Share Posted July 6, 2012 using different table aliases you can use (join) the same table more than once Quote Link to comment Share on other sites More sharing options...
Barand Posted July 6, 2012 Share Posted July 6, 2012 EG SELECT r.R_id, a.user_username as userA, b.user_username as userB FROM report r INNER JOIN user a ON r.userid1 = a.userid INNER JOIN user b ON r.userid2 = b.userid I don't know your column names so can't be precise. Join one id col to user with one alias and the second id to user with another alias Quote Link to comment Share on other sites More sharing options...
mikosiko Posted July 6, 2012 Share Posted July 6, 2012 I call that ^^^ "instant gratification" ... no challenge for the OP at all... Quote Link to comment Share on other sites More sharing options...
Barand Posted July 6, 2012 Share Posted July 6, 2012 But I have shown him a far better way to define joins rather than ... FROM tableA, tableB WHERE tableA.something = tableB.something thus separating the structure of the query from the selection conditions Quote Link to comment Share on other sites More sharing options...
dannyb785 Posted July 13, 2012 Author Share Posted July 13, 2012 EG SELECT r.R_id, a.user_username as userA, b.user_username as userB FROM report r INNER JOIN user a ON r.userid1 = a.userid INNER JOIN user b ON r.userid2 = b.userid I don't know your column names so can't be precise. Join one id col to user with one alias and the second id to user with another alias yes! this worked perfectly, thank you!! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.