limitphp Posted May 6, 2009 Share Posted May 6, 2009 I get all comments for a song with this: SELECT songCommentID, username,date,comment FROM songcomments WHERE songID = '$songID' ORDER BY date ASC As its pulling each comment from the songcomments table, I need it to check another table to see if the user has reported that particular comment. The table it will check will be report_comments. I'm guessing I will need to have an inner join? to report_comments and check to see if the userID and songCommentID match up. If they do, then the user has already reported it. thanks for any help....my brain is a little confused right now..... Link to comment https://forums.phpfreaks.com/topic/157136-help-with-query/ Share on other sites More sharing options...
ohdang888 Posted May 6, 2009 Share Posted May 6, 2009 proabbaly something like this is what you are looking for: SELECT * FROM songcomments, report_comments WHERE songcomments.songID = '$songId' AND songcomments.songCommentId = report_comments.userID Link to comment https://forums.phpfreaks.com/topic/157136-help-with-query/#findComment-827943 Share on other sites More sharing options...
Ken2k7 Posted May 6, 2009 Share Posted May 6, 2009 SELECT s.* FROM songcomments s INNER JOIN report_comments r ON s.songID = r.userID WHERE s.songID = '$songID' ORDER BY s.date Link to comment https://forums.phpfreaks.com/topic/157136-help-with-query/#findComment-827950 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.