Jump to content

Help With Query


limitphp

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.