vote up 0 vote down star

I have two tables:

  • posts - holds post information
  • listen - holds information on what other users you are listening to. (what users posts you want to view)

The structure of listen is:

  • id(uniqueid)
  • userid(the users unique id)
  • listenid(id of a user they are listening too)

How would I gather all the entries from listen that mach the active users userid and then use those to find all the posts that match any of the found listenid values so as to create a query of the combined users posts I want to view?

flag

78% accept rate
for us to help you, you need to provide much more information on the structure of your tables and more clearly explain what it is you're trying to do. – Jonathan Fingland Jun 2 at 15:06
Cool, three answers, all right, all different. – altCognito Jun 2 at 15:12
Please include all the relevant tables in the question. As well as the SQL you've tried. – S.Lott Jun 2 at 15:32

4 Answers

vote up 1 vote down check
SELECT  posts.*
FROM    listen
JOIN    posts
ON      posts.userid = listen.listenid
WHERE   listen.userid = @current_user
link|flag
vote up 1 vote down

You can do this with a simple natural join, or a direct join as given in other answers.

select 
  *
from 
  posts, listen 
where 
  listen.userid == $active_user and 
  posts.userid = listen.userid

You probably want to be more selective about the columns you are bringing in.

link|flag
vote up 0 vote down

I think you're talking about something like this:

select postid from posts 
where userid in
(
    select listenid from listen
    where userid = CURRENT-USER
)

This is assuming the table posts has a userid field.

link|flag
vote up 0 vote down

a simple join wont work?

select 
 posts.* 
from 
 posts
inner join 
 listen
on 
 listen.listenID = posts.userID
where 
 listen.userID = ACTIVEUSER
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.