SELECT user.name, movie.name FROM user JOIN list ON list.user_id = user.id JOIN movie ON list.movie_id = movie.id ORDER BY 1,2;