not sure....
SELECT tbl_movies.movie_id, tbl_movies.movie_title, tbl_users_comments001.comment, tbl_users.user_fname, tbl_users_score001.score
FROM tbl_users_score001 RIGHT JOIN (tbl_users RIGHT JOIN (tbl_movies LEFT JOIN tbl_users_comments001 ON tbl_movies.movie_id = tbl_users_comments001.movie_id) ON tbl_users.user_id = tbl_users_comments001.user_id) ON tbl_users_score001.user_id = tbl_users_comments001.user_id;
I have something like that.... and it doens't work (I conected it like the tbl_users with arrow towards tbl_users_scores001.user_id