query
stringlengths 24
325
| positive
stringlengths 1
580
| negative
stringlengths 1
580
|
---|---|---|
Provide the games that can be played on the SCD platform.
|
game refers to game_name; on the SCD platform refers to platform_name = 'SCD'
|
BMG Interactive Entertainment refers to publisher_name = 'BMG Interactive Entertainment'; release in 2012 refers to release_year = 2012;
|
Provide the games that can be played on the SCD platform.
|
game refers to game_name; on the SCD platform refers to platform_name = 'SCD'
|
record ID refers to game.id; released between 2000 to 2003 refers to release_year BETWEEN 2000 AND 2003
|
Provide the games that can be played on the SCD platform.
|
game refers to game_name; on the SCD platform refers to platform_name = 'SCD'
|
gained 350000 sales refers to num_sales = 3.5; in North America refers to region_name = 'North America'
|
Provide the games that can be played on the SCD platform.
|
game refers to game_name; on the SCD platform refers to platform_name = 'SCD'
|
how many games = MULTIPLY(SUM(num_sales), 100000); PS3 refers to platform_name = 'PS3'; Japan refers to region_name = 'Japan';
|
Provide the games that can be played on the SCD platform.
|
game refers to game_name; on the SCD platform refers to platform_name = 'SCD'
|
other regions refers to region_name = 'Other'; positive sales refers to num_sales > 0; DS platform refers to platform_name = 'DS';
|
Provide the games that can be played on the SCD platform.
|
game refers to game_name; on the SCD platform refers to platform_name = 'SCD'
|
PSP refers to platform_name = 'PSP'; released in 2004 refers to release_year = 2004;
|
Which platform is the most popular in Europe?
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
difference = SUBTRACT(SUM(num_sales WHERE release_year = 2000), SUM(num_sales WHERE release_year = 1990));
|
Which platform is the most popular in Europe?
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
Which platform is the most popular in Europe?
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
fighting genre refers to genre_name = 'Fighting';
|
Which platform is the most popular in Europe?
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
|
Which platform is the most popular in Europe?
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
when the game was released refers to release_year;
|
Which platform is the most popular in Europe?
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
the genre of sports refers to genre_name = 'Sports'
|
Which platform is the most popular in Europe?
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
name of publisher refers to publisher_name; the game ID 75 refers to game_id = 75
|
Which platform is the most popular in Europe?
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
publisher refers to publisher_name; the most games refers to max(count(publisher_id))
|
Which platform is the most popular in Europe?
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
Abylight refers to publisher_name = 'Abylight';
|
Which platform is the most popular in Europe?
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
games refers to game_name; "Activision" refers to publisher_name = 'Activision';
|
Give the genre of the following game titled 'Airlock' , 'Airline Tycoon' , and 'Airblade', respectively.
|
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
|
game ID refers to game.id; genre ID 2 refers to genre_id = 2
|
Give the genre of the following game titled 'Airlock' , 'Airline Tycoon' , and 'Airblade', respectively.
|
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
|
on the DS platform refers to platform_name = 'DS'; number of games sold on average = divide(sum(multiply(num_sales, 100000)), 4) where platform_name = 'DS'
|
Give the genre of the following game titled 'Airlock' , 'Airline Tycoon' , and 'Airblade', respectively.
|
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
|
publisher refers to publisher_name; the most games refers to max(count(publisher_id))
|
Give the genre of the following game titled 'Airlock' , 'Airline Tycoon' , and 'Airblade', respectively.
|
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
|
genre ID 3 refers to genre.id = 3
|
Give the genre of the following game titled 'Airlock' , 'Airline Tycoon' , and 'Airblade', respectively.
|
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
|
name of publisher refers to publisher_name; the game ID 75 refers to game_id = 75
|
Give the genre of the following game titled 'Airlock' , 'Airline Tycoon' , and 'Airblade', respectively.
|
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
|
which publisher refers to publisher_name; publisher that has published the most number of Action games refers to MAX(COUNT(publisher_name)) WHERE genre_name = 'Action'; Action games refers to game_name WHERE genre_name = 'Action';
|
Give the genre of the following game titled 'Airlock' , 'Airline Tycoon' , and 'Airblade', respectively.
|
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
|
name of games refers to game_name; 'SCD' platform refers to platform_name = 'SCD';
|
Give the genre of the following game titled 'Airlock' , 'Airline Tycoon' , and 'Airblade', respectively.
|
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
|
in 2004 refers to release_year = 2004; on PSP refers to platform_name = 'PSP'; percentage = divide(sum(platform_id where platform_name = 'PSP'), count(platform_id)) * 100% where release_year = 2004
|
Give the genre of the following game titled 'Airlock' , 'Airline Tycoon' , and 'Airblade', respectively.
|
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
|
number of sales refers to multiply(num_sales, 100000)
|
Give the genre of the following game titled 'Airlock' , 'Airline Tycoon' , and 'Airblade', respectively.
|
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
|
name of the company that produced the game refers to publisher_name; Adventure Time: Explore the Dungeon Because I Don't Know! Refers to game_name = 'Adventure Time: Explore the Dungeon Because I Don''t Know!';
|
Which game has the longest name?
|
game refers to game_name; the longest name refers to max(length(game_name))
|
total number of games sold = MULTIPLY(num_sales, 100000); Europe refers to region_name = 'Europe';
|
Which game has the longest name?
|
game refers to game_name; the longest name refers to max(length(game_name))
|
strategy games refers to game_name WHERE genre_name = 'Strategy';
|
Which game has the longest name?
|
game refers to game_name; the longest name refers to max(length(game_name))
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
Which game has the longest name?
|
game refers to game_name; the longest name refers to max(length(game_name))
|
genre of the game refers to genre_name; game ID 119 refers to game.id = 119;
|
Which game has the longest name?
|
game refers to game_name; the longest name refers to max(length(game_name))
|
gained 350000 sales refers to num_sales = 3.5; in North America refers to region_name = 'North America'
|
Which game has the longest name?
|
game refers to game_name; the longest name refers to max(length(game_name))
|
games refers to game_name; "Activision" refers to publisher_name = 'Activision';
|
Which game has the longest name?
|
game refers to game_name; the longest name refers to max(length(game_name))
|
on PS4 refers to platform_name = 'PS4'; in 2014 refers to release_year = 2014
|
Which game has the longest name?
|
game refers to game_name; the longest name refers to max(length(game_name))
|
in North America refers to region_name = 'North America'; platform ID 9577 refers to game_platform_id = 9577; percent = divide(subtract(num_sales where region_name = 'North America' and game_platform_id = 9577, avg(num_sales)), avg(num_sales)) * 100%
|
Which game has the longest name?
|
game refers to game_name; the longest name refers to max(length(game_name))
|
year the first game was released refers to MIN(release_year);
|
Which game has the longest name?
|
game refers to game_name; the longest name refers to max(length(game_name))
|
more than 200000 sales refers to SUM(num_sales) > 2; Japan refers to region_name = 'Japan';
|
Which year has the most number of video game releases?
|
year that has the most number of video game releases refers to MAX(COUNT(release_year));
|
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
|
Which year has the most number of video game releases?
|
year that has the most number of video game releases refers to MAX(COUNT(release_year));
|
name of the games refers to game_name; released in the year 2010 refers to release_year = 2010;
|
Which year has the most number of video game releases?
|
year that has the most number of video game releases refers to MAX(COUNT(release_year));
|
ID refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
|
Which year has the most number of video game releases?
|
year that has the most number of video game releases refers to MAX(COUNT(release_year));
|
on PS4 refers to platform_name = 'PS4'; in 2014 refers to release_year = 2014
|
Which year has the most number of video game releases?
|
year that has the most number of video game releases refers to MAX(COUNT(release_year));
|
game refers to game_name; on the SCD platform refers to platform_name = 'SCD'
|
Which year has the most number of video game releases?
|
year that has the most number of video game releases refers to MAX(COUNT(release_year));
|
PSP refers to platform_name = 'PSP'; released in 2004 refers to release_year = 2004;
|
Which year has the most number of video game releases?
|
year that has the most number of video game releases refers to MAX(COUNT(release_year));
|
other regions refers to region_name = 'Other'; positive sales refers to num_sales > 0; DS platform refers to platform_name = 'DS';
|
Which year has the most number of video game releases?
|
year that has the most number of video game releases refers to MAX(COUNT(release_year));
|
average = AVG(MULTIPLY(num_sales, 100000));
|
Which year has the most number of video game releases?
|
year that has the most number of video game releases refers to MAX(COUNT(release_year));
|
name of the publisher refers to publisher_name; publisher that released the most video games in 2007 refers to MAX(COUNT(publisher_name)) WHERE release_year = 2007;
|
Which year has the most number of video game releases?
|
year that has the most number of video game releases refers to MAX(COUNT(release_year));
|
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
|
How many games in the database belong to the genre of sports?
|
the genre of sports refers to genre_name = 'Sports'
|
which publisher refers to publisher_name; 'Pachi-Slot Kanzen Kouryaku 3: Universal Koushiki Gaido Volume 3' refers to game_name = 'Pachi-Slot Kanzen Kouryaku 3: Universal Koushiki Gaido Volume 3';
|
How many games in the database belong to the genre of sports?
|
the genre of sports refers to genre_name = 'Sports'
|
which publisher refers to publisher_name; publisher that has published the most games refers to MAX(COUNT(publisher_name)); puzzle genre refers to genre_name = 'Puzzle';
|
How many games in the database belong to the genre of sports?
|
the genre of sports refers to genre_name = 'Sports'
|
Minecraft refers to game_name = 'Minecraft';
|
How many games in the database belong to the genre of sports?
|
the genre of sports refers to genre_name = 'Sports'
|
name of the publisher refers to publisher_name; publisher that released the most video games in 2007 refers to MAX(COUNT(publisher_name)) WHERE release_year = 2007;
|
How many games in the database belong to the genre of sports?
|
the genre of sports refers to genre_name = 'Sports'
|
name of game refers to game_name; published by 3DO refers to publisher_name = '3DO'
|
How many games in the database belong to the genre of sports?
|
the genre of sports refers to genre_name = 'Sports'
|
game ID refers to game.id; genre ID 2 refers to genre_id = 2
|
How many games in the database belong to the genre of sports?
|
the genre of sports refers to genre_name = 'Sports'
|
what platform refers to platform_name; 3Xtreme refers to game_name = '3Xtreme';
|
How many games in the database belong to the genre of sports?
|
the genre of sports refers to genre_name = 'Sports'
|
do not have any sales refers to num_sales = 0; in Europe refers to region_name = 'Europe'
|
How many games in the database belong to the genre of sports?
|
the genre of sports refers to genre_name = 'Sports'
|
on the Wii platform refers to platform_name = 'Wii'
|
How many games in the database belong to the genre of sports?
|
the genre of sports refers to genre_name = 'Sports'
|
publisher refers to publisher_name; the most games refers to max(count(publisher_id))
|
How many FIFA games are there across all platforms?
|
FIFA games refers to game_name LIKE '%FIFA%';
|
Activision refers to publisher_name = 'Activision';
|
How many FIFA games are there across all platforms?
|
FIFA games refers to game_name LIKE '%FIFA%';
|
which publisher refers to publisher_name; Overwatch refers to game_name = 'Overwatch';
|
How many FIFA games are there across all platforms?
|
FIFA games refers to game_name LIKE '%FIFA%';
|
game ID refers to game.id; genre ID 2 refers to genre_id = 2
|
How many FIFA games are there across all platforms?
|
FIFA games refers to game_name LIKE '%FIFA%';
|
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
|
How many FIFA games are there across all platforms?
|
FIFA games refers to game_name LIKE '%FIFA%';
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
How many FIFA games are there across all platforms?
|
FIFA games refers to game_name LIKE '%FIFA%';
|
which publisher refers to publisher_name; publisher that has published the most number of Action games refers to MAX(COUNT(publisher_name)) WHERE genre_name = 'Action'; Action games refers to game_name WHERE genre_name = 'Action';
|
How many FIFA games are there across all platforms?
|
FIFA games refers to game_name LIKE '%FIFA%';
|
adventure games refers to game_name WHERE genre_name = 'Adventure'; released in 2005 refers to release_year = 2005;
|
How many FIFA games are there across all platforms?
|
FIFA games refers to game_name LIKE '%FIFA%';
|
sports game refers to genre_name = 'Sports'; simulation game refers to genre_name = 'Simulation'; how many more = subtract(sum(game_id where genre_name = 'Sports'), sum(game_id where genre_name = 'Simulation'))
|
How many FIFA games are there across all platforms?
|
FIFA games refers to game_name LIKE '%FIFA%';
|
which region refers to region_name; lowest number of sales refers to MIN(num_sales);
|
How many FIFA games are there across all platforms?
|
FIFA games refers to game_name LIKE '%FIFA%';
|
role-playing game refers to genre_name = 'Role-Playing'
|
List the game IDs of the games produced by Abylight.
|
Abylight refers to publisher_name = 'Abylight';
|
number of sales refers to multiply(num_sales, 100000)
|
List the game IDs of the games produced by Abylight.
|
Abylight refers to publisher_name = 'Abylight';
|
released in 1990 refers to release_year = 1990; 2000 refers to release_year = 2000;
|
List the game IDs of the games produced by Abylight.
|
Abylight refers to publisher_name = 'Abylight';
|
publishers refers to publisher_name; number of sales less than 10000 refers to num_sales < 0.1;
|
List the game IDs of the games produced by Abylight.
|
Abylight refers to publisher_name = 'Abylight';
|
publisher refers to publisher_name; the most games refers to max(count(publisher_id))
|
List the game IDs of the games produced by Abylight.
|
Abylight refers to publisher_name = 'Abylight';
|
on the Wii platform refers to platform_name = 'Wii'
|
List the game IDs of the games produced by Abylight.
|
Abylight refers to publisher_name = 'Abylight';
|
adventure games refers to game_name WHERE genre_name = 'Adventure'; released in 2005 refers to release_year = 2005;
|
List the game IDs of the games produced by Abylight.
|
Abylight refers to publisher_name = 'Abylight';
|
game "ModNation Racers" refers to game_name = 'ModNation Racers'
|
List the game IDs of the games produced by Abylight.
|
Abylight refers to publisher_name = 'Abylight';
|
id of game refers to game.id; "Resident Evil Archives: Resident Evil" refers to game_name = 'Resident Evil Archives: Resident Evil'
|
List the game IDs of the games produced by Abylight.
|
Abylight refers to publisher_name = 'Abylight';
|
Activision refers to publisher_name = 'Activision';
|
List the game IDs of the games produced by Abylight.
|
Abylight refers to publisher_name = 'Abylight';
|
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
|
List down the names of the games in the racing genre.
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
genre of the game refers to genre_name; '999: Nine Hours, Nine Persons, Nine Doors' refers to game_name = '999: Nine Hours, Nine Persons, Nine Doors';
|
List down the names of the games in the racing genre.
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
when refers to release_year; the "Adventure Island" game refers to game_name = 'Adventure Island'
|
List down the names of the games in the racing genre.
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
released in 2007 refers to release_year = 2007;
|
List down the names of the games in the racing genre.
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
List down the names of the games in the racing genre.
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
average number = divide(count(game_id), count(publisher_id))
|
List down the names of the games in the racing genre.
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
names of games refers to game_name; released in 2015 refers to release_year = 2015;
|
List down the names of the games in the racing genre.
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
the earliest refers to min(release_year); name of platform refers to platform_name
|
List down the names of the games in the racing genre.
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
publisher refers to publisher_name; publisher who has published the most games of all time refers to MAX(COUNT(publisher_name));
|
List down the names of the games in the racing genre.
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
on the DS platform refers to platform_name = 'DS'; number of games sold on average = divide(sum(multiply(num_sales, 100000)), 4) where platform_name = 'DS'
|
List down the names of the games in the racing genre.
|
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
|
published by Ascaron Entertainment GmbH refers to publisher_name = 'Ascaron Entertainment GmbH'
|
Provide the name of game produced by 505 Games in 2006.
|
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
|
fighting genre refers to genre_name = 'Fighting';
|
Provide the name of game produced by 505 Games in 2006.
|
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
|
X360 refers to platform_name = 'X360';
|
Provide the name of game produced by 505 Games in 2006.
|
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
|
platform refers to platform_name;
|
Provide the name of game produced by 505 Games in 2006.
|
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
|
the first year refers to min(release_year)
|
Provide the name of game produced by 505 Games in 2006.
|
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
|
difference = SUBTRACT(SUM(num_sales WHERE region_id = 2), SUM(num_sales WHERE region_id = 3));
|
Provide the name of game produced by 505 Games in 2006.
|
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
|
total number of games sold = MULTIPLY(SUM(num_sales), 100000);
|
Provide the name of game produced by 505 Games in 2006.
|
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
|
sports game refers to genre_name = 'Sports'; simulation game refers to genre_name = 'Simulation'; how many more = subtract(sum(game_id where genre_name = 'Sports'), sum(game_id where genre_name = 'Simulation'))
|
Provide the name of game produced by 505 Games in 2006.
|
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
|
which region refers to region_name; lowest number of sales refers to MIN(num_sales);
|
Provide the name of game produced by 505 Games in 2006.
|
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
|
on PS4 refers to platform_name = 'PS4'; in 2014 refers to release_year = 2014
|
Provide the name of game produced by 505 Games in 2006.
|
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
|
FIFA games refers to game_name LIKE '%FIFA%';
|
List down the name of strategy games.
|
strategy games refers to game_name WHERE genre_name = 'Strategy';
|
total number of games sold = MULTIPLY(num_sales, 100000); Europe refers to region_name = 'Europe';
|
List down the name of strategy games.
|
strategy games refers to game_name WHERE genre_name = 'Strategy';
|
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
|
List down the name of strategy games.
|
strategy games refers to game_name WHERE genre_name = 'Strategy';
|
the earliest refers to min(release_year); name of platform refers to platform_name
|
List down the name of strategy games.
|
strategy games refers to game_name WHERE genre_name = 'Strategy';
|
average = AVG(MULTIPLY(num_sales, 100000));
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.