db_id
stringlengths
4
31
SQL
stringlengths
18
1.45k
input_sequence
stringlengths
148
11k
question
stringlengths
16
325
movie_platform
select movie_title from movies where movie_release_year = 1945 order by movie_popularity desc limit 1
Question: name movie titles released in year 1945. sort the listing by the descending order of movie popularity. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, li...
name movie titles released in year 1945. sort the listing by the descending order of movie popularity.
movie_platform
select movie_title, movie_release_year, director_name from movies order by movie_popularity desc limit 1
Question: state the most popular movie? when was it released and who is the director for the movie? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_imag...
state the most popular movie? when was it released and who is the director for the movie?
movie_platform
select movie_title, movie_release_year from movies order by length(movie_popularity) desc limit 1
Question: what is the name of the longest movie title? when was it released? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_imag...
what is the name of the longest movie title? when was it released?
movie_platform
select movie_title from movies group by movie_title order by count(movie_title) desc limit 1
Question: name the movie with the most ratings. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_third_image_url. ...
name the movie with the most ratings.
movie_platform
select avg(movie_popularity) from movies where director_name = 'stanley kubrick'
Question: what is the average number of mubi users who love movies directed by stanley kubrick? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_ur...
what is the average number of mubi users who love movies directed by stanley kubrick?
movie_platform
select avg(t2.rating_score) from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t1.movie_title = 'when will i be loved'
Question: what is the average rating for movie titled 'when will i be loved'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_ima...
what is the average rating for movie titled 'when will i be loved'?
movie_platform
select t3.user_avatar_image_url, t3.rating_date_utc from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id inner join ratings_users as t3 on t3.user_id = t2.user_id where t3.user_id = 41579158 order by t3.rating_date_utc desc limit 1
Question: what is the user avatar url for user 41579158? what is the latest movie rated by him / her? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_im...
what is the user avatar url for user 41579158? what is the latest movie rated by him / her?
movie_platform
select cast(sum(case when user_subscriber = 1 then 1 else 0 end) as real) * 100 / count(*) from ratings
Question: what is the percentage of the ratings were rated by user who was a subcriber? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_...
what is the percentage of the ratings were rated by user who was a subcriber?
movie_platform
select t1.movie_title from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t2.user_trialist = 1 and t2.rating_timestamp_utc like '2020-04%'
Question: list all movie title rated in april 2020 from user who was a trialist. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_...
list all movie title rated in april 2020 from user who was a trialist.
movie_platform
select t1.user_id from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'love will tear us apart' and t1.rating_score = 1
Question: list ther users who gave the worst rating for movie 'love will tear us apart'. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list...
list ther users who gave the worst rating for movie 'love will tear us apart'.
movie_platform
select distinct t2.movie_title, t2.movie_popularity from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t1.rating_score = 5
Question: list all movies with the best rating score. state the movie title and number of mubi user who loves the movie. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image...
list all movies with the best rating score. state the movie title and number of mubi user who loves the movie.
movie_platform
select t2.movie_title from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where cast(substr(t1.rating_timestamp_utc, 1, 4) as integer) = 2020 and cast(substr(t1.rating_timestamp_utc, 6, 2) as integer) > 4
Question: for all ratings which are rated in year 2020, name the movies which has the rating scored 4 and above. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, li...
for all ratings which are rated in year 2020, name the movies which has the rating scored 4 and above.
movie_platform
select t2.movie_title, t1.user_id, t1.rating_score, t1.critic from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t1.critic is not null
Question: for all movies where users left a critic, find the movie name, user, rating and critics comments from the user. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_imag...
for all movies where users left a critic, find the movie name, user, rating and critics comments from the user.
movie_platform
select cast(sum(case when t2.rating_score = 5 then 1 else 0 end) as real) * 100 / count(*) from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t1.movie_title = 'welcome to the dollhouse'
Question: for movie titled 'welcome to the dollhouse', how many percentage of the ratings were rated with highest score. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image...
for movie titled 'welcome to the dollhouse', how many percentage of the ratings were rated with highest score.
movie_platform
select cast(sum(case when t1.movie_release_year = 2021 then 1 else 0 end) as real) * 100 / count(*) from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id
Question: what is the percentage of rated movies were released in year 2021? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_imag...
what is the percentage of rated movies were released in year 2021?
movie_platform
select director_name from movies where movie_title = 'sex, drink and bloodshed'
Question: who is the director of the movie sex, drink and bloodshed? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, l...
who is the director of the movie sex, drink and bloodshed?
movie_platform
select list_title from lists order by list_followers desc limit 1
Question: what is the name of the most followed list? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_third_image...
what is the name of the most followed list?
movie_platform
select list_url from lists where list_update_timestamp_utc like '2012%' and list_followers between 1 and 2 order by list_update_timestamp_utc desc limit 1
Question: what are the url to the list page on mubi of the lists with followers between 1-2 and whose last update timestamp was on 2012? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, ...
what are the url to the list page on mubi of the lists with followers between 1-2 and whose last update timestamp was on 2012?
movie_platform
select list_id from lists_users where user_id = 85981819 order by list_creation_date_utc asc limit 1
Question: what is the list id that was first created by user 85981819? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url,...
what is the list id that was first created by user 85981819?
movie_platform
select count(*) from ratings where movie_id = 1269 and rating_score <= 2 and user_eligible_for_trial = 1 and user_has_payment_method = 1
Question: for movie id 1269, how many users, who was a paying subscriber and was eligible for trial when he rated the movie, gave the movie a rating score of less than or equal to 2? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_follower...
for movie id 1269, how many users, who was a paying subscriber and was eligible for trial when he rated the movie, gave the movie a rating score of less than or equal to 2?
movie_platform
select movie_title, movie_popularity from movies where movie_release_year = 2021 and director_name = 'steven spielberg'
Question: what are the movie popularity of the movies released in 2021 that were directed by steven spielberg? list the names of the movies and their corresponding popularity. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list...
what are the movie popularity of the movies released in 2021 that were directed by steven spielberg? list the names of the movies and their corresponding popularity.
movie_platform
select movie_release_year, director_name from movies where movie_release_year is not null order by movie_release_year asc limit 1
Question: when was the first movie released and who directed it? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_...
when was the first movie released and who directed it?
movie_platform
select user_id from lists_users where user_subscriber = 1 group by user_id having max(substr(list_creation_date_utc, 1, 4)) - min(substr(list_creation_date_utc, 1, 4)) >= 10
Question: what is the user id of the user, who was a subscriber when he created the list, who created a list for 10 consecutive years? if there are multiple users, indicate each of their user ids. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc,...
what is the user id of the user, who was a subscriber when he created the list, who created a list for 10 consecutive years? if there are multiple users, indicate each of their user ids.
movie_platform
select count(t2.user_id) from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t1.movie_title = 'pavee lackeen: the traveller girl' and t2.rating_score = 4
Question: how many users gave 'pavee lackeen: the traveller girl' movie a rating score of 4? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, ...
how many users gave 'pavee lackeen: the traveller girl' movie a rating score of 4?
movie_platform
select t2.user_eligible_for_trial, t1.list_followers from lists as t1 inner join lists_users as t2 on t1.user_id = t1.user_id and t1.list_id = t2.list_id where t1.list_title = 'world war 2 and kids'
Question: was the user who created the 'world war 2 and kids' list eligible for trial when he created the list? indicate how many followers does the said list has. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_c...
was the user who created the 'world war 2 and kids' list eligible for trial when he created the list? indicate how many followers does the said list has.
movie_platform
select t2.movie_release_year, t1.user_id from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t1.movie_id = ( select movie_id from movies where director_name = 'quentin tarantino' order by movie_release_year asc limit 2, 1 ) and t1.rating_score = 4
Question: which year was the third movie directed by quentin tarantino released? indicate the user ids of the user who gave it a rating score of 4. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_de...
which year was the third movie directed by quentin tarantino released? indicate the user ids of the user who gave it a rating score of 4.
movie_platform
select t2.director_url from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t1.user_id = 2452551 and t1.critic_likes = 39
Question: what is the url to the movie director page on mubi of the director whose movie was critic by user 2452551 and was given 39 likes? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_descriptio...
what is the url to the movie director page on mubi of the director whose movie was critic by user 2452551 and was given 39 likes?
movie_platform
select avg(t1.rating_score), t2.director_name from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'when will i be loved'
Question: what is the average rating score of the movie 'when will i be loved' and who was its director? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first...
what is the average rating score of the movie 'when will i be loved' and who was its director?
movie_platform
select t1.list_movie_number, t2.user_has_payment_method from lists as t1 inner join lists_users as t2 on t1.list_id = t2.list_id order by t1.list_movie_number desc limit 1
Question: how many movies were added to the list with the most number of movies? indicate whether the user was a paying subscriber or not when he created the list. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_c...
how many movies were added to the list with the most number of movies? indicate whether the user was a paying subscriber or not when he created the list.
movie_platform
select t2.movie_title from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id order by t1.critic_likes desc limit 1
Question: what is the name of the movie whose critic received the highest number of likes related to the critic made by the user rating the movie? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_des...
what is the name of the movie whose critic received the highest number of likes related to the critic made by the user rating the movie?
movie_platform
select max(t2.movie_popularity), min(t1.rating_timestamp_utc) from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_release_year between 1920 and 1929 and t1.rating_score = 1 and t1.user_has_payment_method = 1
Question: how much is the popularity of the movie that has the highest popularity between 1920 to 1929 and when did the movie received its first rating score of 1 from the users who were a paying subscriber when they rated the movie ? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_times...
how much is the popularity of the movie that has the highest popularity between 1920 to 1929 and when did the movie received its first rating score of 1 from the users who were a paying subscriber when they rated the movie ?
movie_platform
select count(t2.movie_title), t1.critic from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.director_name = 'francis ford coppola' and t2.movie_popularity > 1000
Question: how many movies directed by francis ford coppola have a popularity of more than 1,000? indicate what is the highest amount of likes that each critic per movie has received, if there's any. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_ut...
how many movies directed by francis ford coppola have a popularity of more than 1,000? indicate what is the highest amount of likes that each critic per movie has received, if there's any.
movie_platform
select t2.user_avatar_image_url from ratings as t1 inner join ratings_users as t2 on t1.user_id = t2.user_id where t2.user_id = 1103 and rating_score = 5 and t2.rating_date_utc = '2020-04-19'
Question: what is the url to the user profile image on mubi of the user who gave the movie id of 1103 a 5 ratinng score on 4/19/2020? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, lis...
what is the url to the user profile image on mubi of the user who gave the movie id of 1103 a 5 ratinng score on 4/19/2020?
movie_platform
select t1.list_followers, t2.user_subscriber = 1 from lists as t1 inner join lists_users as t2 on t1.user_id = t2.user_id and t2.list_id = t2.list_id where t2.user_id = 4208563 order by t1.list_followers desc limit 1
Question: among the lists created by user 4208563, which one has the highest number of followers? indicate how many followers it has and whether the user was a subscriber or not when he created the list. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timesta...
among the lists created by user 4208563, which one has the highest number of followers? indicate how many followers it has and whether the user was a subscriber or not when he created the list.
movie_platform
select distinct t1.movie_release_year, t1.movie_title from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t1.movie_release_year = ( select movie_release_year from movies group by movie_release_year order by count(movie_id) desc limit 1 ) and t2.rating_score = 1
Question: which year has the least number of movies that was released and what is the title of the movie in that year that has the highest number of rating score of 1? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, li...
which year has the least number of movies that was released and what is the title of the movie in that year that has the highest number of rating score of 1?
movie_platform
select count(t2.user_id) from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t1.movie_release_year = 1924 and t1.director_name = 'erich von stroheim' and t2.rating_score = 5 and t2.user_has_payment_method = 1
Question: how many users, who were a paying subscriber when they rated the movie, gave the movie that was released in 1924 and directed by erich von stroheim a rating score of 5? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, l...
how many users, who were a paying subscriber when they rated the movie, gave the movie that was released in 1924 and directed by erich von stroheim a rating score of 5?
movie_platform
select avg(t1.list_movie_number), t2.user_avatar_image_url from lists as t1 inner join lists_users as t2 on t1.list_id = t2.list_id and t1.user_id = t2.user_id where t2.user_id = 8516503
Question: what is the average number of movies added to the lists of user 8516503? give the user profile image url on mubi. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_im...
what is the average number of movies added to the lists of user 8516503? give the user profile image url on mubi.
movie_platform
select count(t2.user_id), t2.rating_url from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t1.movie_title = 'the magnificent ambersons' and t2.rating_score <= 2
Question: how many users rated the movie 'the magnificent ambersons' gave a rating score of no more than 2? list all the url to the rating on mubi. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_de...
how many users rated the movie 'the magnificent ambersons' gave a rating score of no more than 2? list all the url to the rating on mubi.
movie_platform
select t1.list_followers from lists as t1 inner join lists_users as t2 on t1.user_id = t2.user_id and t1.list_id = t2.list_id where t2.list_creation_date_utc between '2016-02-01' and '2016-02-29' and t2.user_eligible_for_trial = 1
Question: how many users who created a list in the february of 2016 were eligible for trial when they created the list? indicate the user id of the user who has the most number of followers in his list in february of 2016. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, li...
how many users who created a list in the february of 2016 were eligible for trial when they created the list? indicate the user id of the user who has the most number of followers in his list in february of 2016.
movie_platform
select t2.rating_url from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t2.user_id = 22030372 and t2.rating_score = 5 and t1.movie_title = 'riff-raff'
Question: what is the url to the rating on mubi of the riff-raff movie that was given the highest rating score by user 22030372? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cov...
what is the url to the rating on mubi of the riff-raff movie that was given the highest rating score by user 22030372?
movie_platform
select t2.director_name from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_release_year between 1960 and 1985 group by t2.director_name having count(t2.movie_id) > 10
Question: how many directors have directed atleast 10 movies between 1960 to 1985? indicate the name of the movie in those years of each director that received the highest amount of 5 rating score. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc...
how many directors have directed atleast 10 movies between 1960 to 1985? indicate the name of the movie in those years of each director that received the highest amount of 5 rating score.
movie_platform
select count(t2.user_id) from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t2.user_trialist = 0 and t2.rating_score <= 2 and t1.movie_title = 'the south'
Question: how many users, who were not a a trialist when they rated the movie, gave the movie 'the south' a rating score of not more than 2? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_descripti...
how many users, who were not a a trialist when they rated the movie, gave the movie 'the south' a rating score of not more than 2?
movie_platform
select t2.critic_likes from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t2.user_trialist = 0 and t2.rating_score = 5 and t1.movie_title = 'apocalypse now'
Question: how many likes did the critic of the movie 'apocalypse now' received after giving the movie a rating score of 5? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_ima...
how many likes did the critic of the movie 'apocalypse now' received after giving the movie a rating score of 5?
movie_platform
select avg(t2.rating_score), t1.director_name from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t1.movie_title = 'the crowd'
Question: what is the average rating score of the movie 'the crowd' and who was its director? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url,...
what is the average rating score of the movie 'the crowd' and who was its director?
movie_platform
select min(movie_release_year) from movies where director_name = ( select t2.director_name from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_release_year between 1960 and 1985 group by t2.director_name order by count(t2.director_name) desc limit 1 )
Question: when was the first movie of the director who directed the highest number of movies released and what is the user id of the user who received the highest number of comments related to the critic made by the user rating the movie? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_t...
when was the first movie of the director who directed the highest number of movies released and what is the user id of the user who received the highest number of comments related to the critic made by the user rating the movie?
movie_platform
select t1.movie_title, max(t2.rating_score) from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t1.movie_popularity between 400 and 500 group by t1.movie_title
Question: how many movies have a popularity of more than 400 but less than 500? indicate the name of the movies and the highest rating score each movie has received. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list...
how many movies have a popularity of more than 400 but less than 500? indicate the name of the movies and the highest rating score each movie has received.
movie_platform
select t2.rating_url from movies as t1 inner join ratings as t2 on t1.movie_id = t2.movie_id where t2.user_id = 45579900 and t1.movie_title = 'the vertical ray of the sun' and t2.critic_likes = 20
Question: what is the url to the rating on mubi made by user 45579900 for the movie 'the vertical ray of the sun' that received 20 likes? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description,...
what is the url to the rating on mubi made by user 45579900 for the movie 'the vertical ray of the sun' that received 20 likes?
movie_platform
select avg(t2.movie_popularity) from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.director_name = 'christopher nolan'
Question: what is the average popularity of each movie that was directed by christopher nolan? indicate which movie directed by him has received the highest number of 5 rating scores. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followe...
what is the average popularity of each movie that was directed by christopher nolan? indicate which movie directed by him has received the highest number of 5 rating scores.
movie_platform
select t2.movie_title from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id inner join lists as t3 on t3.user_id = t1.user_id where t1.rating_timestamp_utc between '2013-01-01' and '2013-12-31' and t3.list_title = '100 greatest living american filmmakers'
Question: what are the names of the movie that was rated by the user between 1/1/2013 to 12/31/2013 by the user who created the list '100 greatest living american filmmakers'? calculate for the average rating score of those movies in 2013. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_...
what are the names of the movie that was rated by the user between 1/1/2013 to 12/31/2013 by the user who created the list '100 greatest living american filmmakers'? calculate for the average rating score of those movies in 2013.
movie_platform
select avg(t1.rating_score), t2.movie_release_year from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'pavee lackeen: the traveller girl'
Question: what is the average rating score of the 'pavee lackeen: the traveller girl' movie and what year was it released? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_ima...
what is the average rating score of the 'pavee lackeen: the traveller girl' movie and what year was it released?
movie_platform
select count(*) from lists where substr(list_update_timestamp_utc, 1, 4) - substr(list_creation_timestamp_utc, 1, 4) > 10
Question: how many movie lists were still updated 10 years after it was created? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_...
how many movie lists were still updated 10 years after it was created?
movie_platform
select list_description from lists where list_title = 'short and pretty damn sweet'
Question: what's the description for the movie list 'short and pretty damn sweet'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_secon...
what's the description for the movie list 'short and pretty damn sweet'?
movie_platform
select list_url from lists where list_title = 'short and pretty damn sweet'
Question: where can i find the movie list 'short and pretty damn sweet'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_ur...
where can i find the movie list 'short and pretty damn sweet'?
movie_platform
select count(*) from lists where list_followers > 200 and list_update_timestamp_utc > '2010-01-01'
Question: among the movie lists created after 2010/1/1, how many of them have over 200 followers? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_...
among the movie lists created after 2010/1/1, how many of them have over 200 followers?
movie_platform
select count(*) from lists_users where user_id = 83373278 and user_subscriber = 1
Question: how many movie lists were created by user 83373278 when he or she was a subscriber? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url,...
how many movie lists were created by user 83373278 when he or she was a subscriber?
movie_platform
select movie_release_year from movies where movie_title = 'la antena'
Question: in which year was the movie 'la antena' released? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_third...
in which year was the movie 'la antena' released?
movie_platform
select movie_url from movies where movie_title = 'la antena'
Question: please give me the url of the movie 'la antena'. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_third_...
please give me the url of the movie 'la antena'.
movie_platform
select movie_title from movies where movie_title = 'the general' or movie_title = 'il grido' order by movie_popularity desc limit 1
Question: which movie is more popular, 'the general' or 'il grido'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, li...
which movie is more popular, 'the general' or 'il grido'?
movie_platform
select count(movie_id) from movies where director_name = 'hong sang-soo'
Question: how many movies registered on mubi are directed by hong sang-soo? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image...
how many movies registered on mubi are directed by hong sang-soo?
movie_platform
select t2.user_trialist from lists as t1 inner join lists_users as t2 on t1.list_id = t2.list_id and t1.user_id = t2.user_id where t1.list_title = '250 favourite films'
Question: was the user who created the list '250 favourite films' a trialist when he or she created the list? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_...
was the user who created the list '250 favourite films' a trialist when he or she created the list?
movie_platform
select t1.list_title from lists as t1 inner join lists_users as t2 on t1.list_id = t2.list_id and t1.user_id = t2.user_id where t1.user_id = 32172230 and t2.user_eligible_for_trial = 1
Question: please list the titles of the movie lists user 32172230 created when he or she was eligible for trial. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, li...
please list the titles of the movie lists user 32172230 created when he or she was eligible for trial.
movie_platform
select count(*) from lists as t1 inner join lists_users as t2 on t1.list_id = t2.list_id and t1.user_id = t2.user_id where t1.user_id = 85981819 and t1.list_movie_number > 100 and t2.user_has_payment_method = 1
Question: how many movie lists with over 100 movies had user 85981819 created when he or she was a paying subscriber? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_ur...
how many movie lists with over 100 movies had user 85981819 created when he or she was a paying subscriber?
movie_platform
select t1.list_description from lists as t1 inner join lists_users as t2 on t1.list_id = t2.list_id and t1.user_id = t2.user_id where t1.user_id = 85981819 order by t1.list_followers desc limit 1
Question: what's the description of user 85981819's movie list with the most followers? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_...
what's the description of user 85981819's movie list with the most followers?
movie_platform
select t2.list_update_date_utc from lists as t1 inner join lists_users as t2 on t1.list_id = t2.list_id and t1.user_id = t2.user_id where t1.list_title = '250 favourite films' order by t2.list_update_date_utc desc limit 1
Question: when did the creator of the list '250 favourite films' last updated a movie list? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, l...
when did the creator of the list '250 favourite films' last updated a movie list?
movie_platform
select t2.user_avatar_image_url from lists as t1 inner join lists_users as t2 on t1.list_id = t2.list_id and t1.user_id = t2.user_id where t1.list_title = '250 favourite films'
Question: what's the avatar image of the user who created the movie list '250 favourite films'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_ur...
what's the avatar image of the user who created the movie list '250 favourite films'?
movie_platform
select count(list_id) from lists_users where user_id = ( select user_id from lists where list_title = '250 favourite films' )
Question: how many more movie lists were created by the user who created the movie list '250 favourite films'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list...
how many more movie lists were created by the user who created the movie list '250 favourite films'?
movie_platform
select count(t1.user_id) from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'a way of life' and t1.rating_score = 5
Question: how many users liked the movie 'a way of life' to the highest extent? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_i...
how many users liked the movie 'a way of life' to the highest extent?
movie_platform
select t1.critic from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'a way of life'
Question: please list all the critics made by the user rating the movie 'a way of life'. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list...
please list all the critics made by the user rating the movie 'a way of life'.
movie_platform
select count(*) from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'imitation of life' and t1.critic_likes > 1
Question: how many critics of the movie 'imitation of life' got more than 1 like? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second...
how many critics of the movie 'imitation of life' got more than 1 like?
movie_platform
select t1.user_id from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'when will i be loved' and t1.critic_comments = 2
Question: which user made a critic for the film 'when will i be loved' and got 2 comments for the critic? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_firs...
which user made a critic for the film 'when will i be loved' and got 2 comments for the critic?
movie_platform
select t1.rating_score from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'a way of life' and t1.user_id = 39115684
Question: when did user 39115684 rate the movie 'a way of life'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_...
when did user 39115684 rate the movie 'a way of life'?
movie_platform
select t1.rating_url from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'a way of life' and t1.user_id = 39115684
Question: what's the url of user 39115684's rating on the movie 'when will i be loved'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_...
what's the url of user 39115684's rating on the movie 'when will i be loved'?
movie_platform
select t1.user_trialist from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'a way of life' and t1.user_id = 39115684
Question: was user 39115684 a trialist when he or she rated the movie 'a way of life'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_s...
was user 39115684 a trialist when he or she rated the movie 'a way of life'?
movie_platform
select count(t1.user_id) from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'when will i be loved' and t1.user_trialist = 1
Question: how many users were trialists when they rated the movie 'a way of life'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_secon...
how many users were trialists when they rated the movie 'a way of life'?
movie_platform
select t1.rating_url from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'a way of life' and t1.critic is not null
Question: please list all the links to the ratings on the movie 'a way of life' with a critic. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url...
please list all the links to the ratings on the movie 'a way of life' with a critic.
movie_platform
select count(rating_id) from ratings where movie_id = ( select movie_id from movies order by movie_popularity desc limit 1 )
Question: how many users have rated the most popular movie? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_third...
how many users have rated the most popular movie?
movie_platform
select t2.movie_title from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t1.user_id = 58149469 and t1.critic_likes = 1 and t1.critic_comments = 2
Question: user 58149469's critic on which film got 1 like and 2 comments? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_u...
user 58149469's critic on which film got 1 like and 2 comments?
movie_platform
select count(t1.user_id) from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'when will i be loved' and t1.rating_score = 1 and t1.user_trialist = 1
Question: among the users who are trailists when rating the movie 'when will i be loved', how many of them have rated '1' on the movie? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, l...
among the users who are trailists when rating the movie 'when will i be loved', how many of them have rated '1' on the movie?
movie_platform
select count(t1.rating_id) from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'a way of life' and t1.rating_timestamp_utc >= '2012-01-01'
Question: how many ratings on the movie 'a way of life' are made after the year 2011? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_se...
how many ratings on the movie 'a way of life' are made after the year 2011?
movie_platform
select t1.rating_score from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id inner join lists as t3 on t3.user_id = t1.user_id where t2.movie_title = 'innocence unprotected' and t3.list_title = '250 favourite films'
Question: what's of rating on the movie 'innocence unprotected' by the user who created the movie list '250 favourite films'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_...
what's of rating on the movie 'innocence unprotected' by the user who created the movie list '250 favourite films'?
movie_platform
select t2.movie_title from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id inner join lists as t3 on t3.user_id = t1.user_id where t3.list_title = '250 favourite films'
Question: please list the movies rated by the user who created the movie list '250 favourite films'. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_ima...
please list the movies rated by the user who created the movie list '250 favourite films'.
movie_platform
select avg(t1.rating_score) from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'a way of life'
Question: what's the average rating score of the movie 'a way of life'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url...
what's the average rating score of the movie 'a way of life'?
movie_platform
select cast(sum(case when t1.rating_score = 1 then 1 else 0 end) as real) * 100 / count(*) from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_title = 'when will i be loved'
Question: what's the percentage of the users who have rated '1' on the movie 'when will i be loved'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_ima...
what's the percentage of the users who have rated '1' on the movie 'when will i be loved'?
movie_platform
select sum(case when t2.movie_title = 'innocence unprotected' then t1.rating_score else 0 end) / sum(case when t2.movie_title = 'innocence unprotected' then 1 else 0 end) - sum(case when t2.movie_title = 'when will i be loved' then t1.rating_score else 0 end) / sum(case when t2.movie_title = 'when will i be loved' then...
Question: how much higher is the average rating score of the movie 'innocence unprotected' than the movie 'when will i be loved'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_co...
how much higher is the average rating score of the movie 'innocence unprotected' than the movie 'when will i be loved'?
movie_platform
select director_name from movies where movie_title = 'tokyo eyes'
Question: who was the director of the movie 'tokyo eyes' | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_third_im...
who was the director of the movie 'tokyo eyes'
movie_platform
select count(*) from movies where movie_release_year = 2007
Question: how many films were released in 2007? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_third_image_url. ...
how many films were released in 2007?
movie_platform
select movie_title from movies where movie_release_year = 2006 order by movie_popularity desc limit 1
Question: which of the films released in 2006 was the most popular among mubi users? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_sec...
which of the films released in 2006 was the most popular among mubi users?
movie_platform
select count(movie_title) from movies where director_name = 'ke sandgren'
Question: how many films did ke sandgren direct? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_third_image_url....
how many films did ke sandgren direct?
movie_platform
select movie_title from movies where director_name = 'ke sandgren' order by movie_popularity desc limit 1
Question: which of the films directed by lex de la iclesia is the most popular among mubi users? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_u...
which of the films directed by lex de la iclesia is the most popular among mubi users?
movie_platform
select movie_release_year from movies where movie_title = 'cops'
Question: when was the movie cops released? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_third_image_url. movi...
when was the movie cops released?
movie_platform
select director_id from movies where movie_title = 'it''s winter'
Question: please list the id of the director of the movie 'it's winter'. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_ur...
please list the id of the director of the movie 'it's winter'.
movie_platform
select user_id from lists order by list_followers desc limit 1
Question: please provide the id of the user with the most followers on the list. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_...
please provide the id of the user with the most followers on the list.
movie_platform
select list_title from lists group by list_title order by count(list_comments) desc limit 1
Question: please provide the title of the list with the most comments on the list. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_secon...
please provide the title of the list with the most comments on the list.
movie_platform
select t2.movie_title from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t2.movie_release_year = 2008 order by t1.rating_score desc limit 1
Question: which of the film released in 2008 scored the highest? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_url, list_...
which of the film released in 2008 scored the highest?
movie_platform
select t2.movie_title from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id order by t1.critic_likes desc limit 3
Question: please list the names of the top three movies in the number of likes related to the critic made by the user rating the movie. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, l...
please list the names of the top three movies in the number of likes related to the critic made by the user rating the movie.
movie_platform
select count(t1.user_id) from lists_users as t1 inner join lists as t2 on t1.list_id = t2.list_id where t2.list_followers > 100 and t1.list_creation_date_utc like '2009%'
Question: how many users have more than 100 followers in the list created by users in 2009? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, l...
how many users have more than 100 followers in the list created by users in 2009?
movie_platform
select count(t1.user_id) from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t1.rating_score = 5 and t2.movie_title = 'white night wedding'
Question: how many users in mubi give the movie 'white night wedding for 5'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_imag...
how many users in mubi give the movie 'white night wedding for 5'?
movie_platform
select t1.user_cover_image_url from lists_users as t1 inner join lists as t2 on t1.list_id = t2.list_id where t2.list_title like 'georgia related films'
Question: what's the cover image of the user who created the movie list 'georgia related films'? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_u...
what's the cover image of the user who created the movie list 'georgia related films'?
movie_platform
select sum(t2.list_followers) from lists_users as t1 inner join lists as t2 on t1.list_id = t2.list_id where t1.user_avatar_image_url = 'https://assets.mubicdn.net/images/avatars/74983/images-w150.jpg?1523895214'
Question: how many followers does the list created by the user whose user_avatar_image_url is https://assets.mubicdn.net/images/avatars/74983/images-w150.jpg?1523895214 have? | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_...
how many followers does the list created by the user whose user_avatar_image_url is https://assets.mubicdn.net/images/avatars/74983/images-w150.jpg?1523895214 have?
movie_platform
select t2.movie_title from ratings as t1 inner join movies as t2 on t1.movie_id = t2.movie_id where t1.rating_score = 5 and t1.user_id = 94978
Question: please list the names of the movies that user 94978 scored as 5. | Tables: lists -> user_id, list_id, list_title, list_movie_number, list_update_timestamp_utc, list_creation_timestamp_utc, list_followers, list_url, list_comments, list_description, list_cover_image_url, list_first_image_url, list_second_image_...
please list the names of the movies that user 94978 scored as 5.