Hi All,
Hwo I can connect these three tables in one query?
tbl_movies keeps main data about the movies
movie_id (U)
movie_title
movie_year
movie_imdb
movie_entryDate
tbl_users_comments keeps users comments
comment_id (U)
movie_id
user_id
comment
tbl_users_scores keeps users scores
score_id
movie_id
user_id
score
I have movie_id and user_id known...
So I would like to select details of movie (let say title, year, imdb) and comment for that movie from know user and the score that user gave to that movie. Ho can I do that..... I am trying and trying but I have problems with it.... The problem is I am still struggeling with the joins I think that's the reason.... Once I got that I think I would be able to do a little bit more here... Please help....
Hwo I can connect these three tables in one query?
tbl_movies keeps main data about the movies
movie_id (U)
movie_title
movie_year
movie_imdb
movie_entryDate
tbl_users_comments keeps users comments
comment_id (U)
movie_id
user_id
comment
tbl_users_scores keeps users scores
score_id
movie_id
user_id
score
I have movie_id and user_id known...
So I would like to select details of movie (let say title, year, imdb) and comment for that movie from know user and the score that user gave to that movie. Ho can I do that..... I am trying and trying but I have problems with it.... The problem is I am still struggeling with the joins I think that's the reason.... Once I got that I think I would be able to do a little bit more here... Please help....