query
stringlengths
24
325
positive
stringlengths
1
580
negative
stringlengths
1
580
List all the platform games.
platform game refers to genre_name = 'Platform'; game refers to game_name
games refers to game_name; "Activision" refers to publisher_name = 'Activision';
List all the platform games.
platform game refers to genre_name = 'Platform'; game refers to game_name
game "ModNation Racers" refers to game_name = 'ModNation Racers'
List all the platform games.
platform game refers to genre_name = 'Platform'; game refers to game_name
PSP refers to platform_name = 'PSP'; released in 2004 refers to release_year = 2004;
List all the platform games.
platform game refers to genre_name = 'Platform'; game refers to game_name
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
List all the platform games.
platform game refers to genre_name = 'Platform'; game refers to game_name
genre refers to genre_name; 2010 FIFA World Cup South Africa refers to game_name = '2010 FIFA World Cup South Africa';
List all the platform games.
platform game refers to genre_name = 'Platform'; game refers to game_name
name of games refers to game_name;  'SCD' platform refers to platform_name = 'SCD';
How many role-playing games are there?
role-playing game refers to genre_name = 'Role-Playing'
publishers refers to publisher_name; number of sales less than 10000 refers to num_sales < 0.1;
How many role-playing games are there?
role-playing game refers to genre_name = 'Role-Playing'
Activision refers to publisher_name = 'Activision';
How many role-playing games are there?
role-playing game refers to genre_name = 'Role-Playing'
the first year refers to min(release_year)
How many role-playing games are there?
role-playing game refers to genre_name = 'Role-Playing'
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
How many role-playing games are there?
role-playing game refers to genre_name = 'Role-Playing'
more than 200000 sales refers to SUM(num_sales) > 2; Japan refers to region_name = 'Japan';
How many role-playing games are there?
role-playing game refers to genre_name = 'Role-Playing'
year the first game was released refers to MIN(release_year);
How many role-playing games are there?
role-playing game refers to genre_name = 'Role-Playing'
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
How many role-playing games are there?
role-playing game refers to genre_name = 'Role-Playing'
genre refers to genre_name; 3D Lemmings refers to game_name = '3D Lemmings'
How many role-playing games are there?
role-playing game refers to genre_name = 'Role-Playing'
game publisher's name refers to publisher_name; sales greater than 90% of the average sales refers to num_sales > multiply(0.9, avg(num_sales)); in Japan refers to region_name = 'Japan'
How many role-playing games are there?
role-playing game refers to genre_name = 'Role-Playing'
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
Calculate the total sales in all regions with game platform ID 66.
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
the genre of sports refers to genre_name = 'Sports'
Calculate the total sales in all regions with game platform ID 66.
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
how much are the sales = SUM(num_sales);
Calculate the total sales in all regions with game platform ID 66.
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
genre refers to genre_name; game "Mario vs. Donkey Kong" refers to game_name = 'Mario vs. Donkey Kong'
Calculate the total sales in all regions with game platform ID 66.
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
percentage = MULTIPLY(DIVIDE(SUM(genre_name = 'sport'), COUNT(game_name)), 100.0); sports refers to genre_name = 'sport';
Calculate the total sales in all regions with game platform ID 66.
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
released in 1990 refers to release_year = 1990; 2000 refers to release_year = 2000;
Calculate the total sales in all regions with game platform ID 66.
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
published by 10TACLE Studios refers to publisher_name = '10TACLE Studios'; puzzle refers to genre_name = 'Puzzle'
Calculate the total sales in all regions with game platform ID 66.
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
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'
Calculate the total sales in all regions with game platform ID 66.
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
platform of the game refers to platform_name; "Final Fantasy XIII-2" refers to game_name = 'Final Fantasy XIII-2';
Calculate the total sales in all regions with game platform ID 66.
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
strategy games refers to game_name WHERE genre_name = 'Strategy';
Calculate the total sales in all regions with game platform ID 66.
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
in Japan refers to region_name = 'Japan'; on X360 refers to platform_name = 'X360'; in 2011 refers to release_year = 2011
Please list the names of the publishers of all the puzzle games.
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
on the Wii platform refers to platform_name = 'Wii'
Please list the names of the publishers of all the puzzle games.
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
genre of the game refers to genre_name; game ID 119 refers to game.id = 119;
Please list the names of the publishers of all the puzzle games.
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
which region refers to region_name; lowest number of sales refers to MIN(num_sales);
Please list the names of the publishers of all the puzzle games.
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
which publisher refers to publisher_name; Overwatch refers to game_name = 'Overwatch';
Please list the names of the publishers of all the puzzle games.
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
strategy games refers to game_name WHERE genre_name = 'Strategy';
Please list the names of the publishers of all the puzzle games.
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
platform game refers to genre_name = 'Platform'; game refers to game_name
Please list the names of the publishers of all the puzzle games.
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
ratio = DIVIDE(SUM(num_sales WHERE region_name = 'North America'), SUM(num_sales WHERE region_name = 'Japan')); North America refers to region_name = 'North America'; Japan refers to region_name = 'Japan';
Please list the names of the publishers of all the puzzle games.
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
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;
Please list the names of the publishers of all the puzzle games.
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
total number of games sold = MULTIPLY(SUM(num_sales), 100000);
Please list the names of the publishers of all the puzzle games.
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
when refers to release_year; the game titled 3DS Classic Collection refers to game_name = '3DS Classic Collection'
In what platform does the game ID 178 available?
platform refers to platform_name;
record ID refers to game.id; released between 2000 to 2003 refers to release_year BETWEEN 2000 AND 2003
In what platform does the game ID 178 available?
platform refers to platform_name;
difference = SUBTRACT(SUM(num_sales WHERE release_year = 2000), SUM(num_sales WHERE release_year = 1990));
In what platform does the game ID 178 available?
platform refers to platform_name;
name of game refers to game_name; published by 3DO refers to publisher_name = '3DO'
In what platform does the game ID 178 available?
platform refers to platform_name;
total number of games sold = MULTIPLY(SUM(num_sales), 100000);
In what platform does the game ID 178 available?
platform refers to platform_name;
id of game refers to game.id; "Resident Evil Archives: Resident Evil" refers to game_name = 'Resident Evil Archives: Resident Evil'
In what platform does the game ID 178 available?
platform refers to platform_name;
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
In what platform does the game ID 178 available?
platform refers to platform_name;
published by Ascaron Entertainment GmbH refers to publisher_name = 'Ascaron Entertainment GmbH'
In what platform does the game ID 178 available?
platform refers to platform_name;
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!';
In what platform does the game ID 178 available?
platform refers to platform_name;
platform game refers to genre_name = 'Platform'; game refers to game_name
In what platform does the game ID 178 available?
platform refers to platform_name;
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
Calculate how many percent of sales in North America is higher than the average sale per region for platform ID 9577.
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%
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
Calculate how many percent of sales in North America is higher than the average sale per region for platform ID 9577.
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%
year refers to release_year; "WiiU" refers to platform_name = 'WiiU'
Calculate how many percent of sales in North America is higher than the average sale per region for platform ID 9577.
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%
game refers to game_name; on the SCD platform refers to platform_name = 'SCD'
Calculate how many percent of sales in North America is higher than the average sale per region for platform ID 9577.
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%
on the Wii platform refers to platform_name = 'Wii'
Calculate how many percent of sales in North America is higher than the average sale per region for platform ID 9577.
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%
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
Calculate how many percent of sales in North America is higher than the average sale per region for platform ID 9577.
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%
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;
Calculate how many percent of sales in North America is higher than the average sale per region for platform ID 9577.
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%
genre of the game refers to genre_name; game ID 119 refers to game.id = 119;
Calculate how many percent of sales in North America is higher than the average sale per region for platform ID 9577.
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%
genre refers to genre_name; "Grand Theft Auto V" refers to game_name = 'Grand Theft Auto V';
Calculate how many percent of sales in North America is higher than the average sale per region for platform ID 9577.
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%
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
Calculate how many percent of sales in North America is higher than the average sale per region for platform ID 9577.
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%
total number of games sold = MULTIPLY(num_sales, 100000); Europe refers to region_name = 'Europe';
What year were the first game released?
year the first game was released refers to MIN(release_year);
name refers to game_name; published by 10TACLE Studios refers to publisher_name = '10TACLE Studios'
What year were the first game released?
year the first game was released refers to MIN(release_year);
released in 2007 refers to release_year = 2007;
What year were the first game released?
year the first game was released refers to MIN(release_year);
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
What year were the first game released?
year the first game was released refers to MIN(release_year);
released in the year 2001 refers to release_year = 2001;
What year were the first game released?
year the first game was released refers to MIN(release_year);
Activision refers to publisher_name = 'Activision';
What year were the first game released?
year the first game was released refers to MIN(release_year);
published by Ascaron Entertainment GmbH refers to publisher_name = 'Ascaron Entertainment GmbH'
What year were the first game released?
year the first game was released refers to MIN(release_year);
do not have any sales refers to num_sales = 0; in Europe refers to region_name = 'Europe'
What year were the first game released?
year the first game was released refers to MIN(release_year);
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'
What year were the first game released?
year the first game was released refers to MIN(release_year);
on PS4 refers to platform_name = 'PS4'; in 2014 refers to release_year = 2014
What year were the first game released?
year the first game was released refers to MIN(release_year);
in Japan refers to region_name = 'Japan'; average number of sales = multiply(avg(num_sales), 100000) where region_name = 'Japan'
Which game platform is the most popular in Europe?
game platform refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
on PS4 refers to platform_name = 'PS4'; in 2014 refers to release_year = 2014
Which game platform is the most popular in Europe?
game platform refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
game publisher's name refers to publisher_name; sales greater than 90% of the average sales refers to num_sales > multiply(0.9, avg(num_sales)); in Japan refers to region_name = 'Japan'
Which game platform is the most popular in Europe?
game platform refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
region id refers to region.id; Japan refers to region_name = 'Japan'
Which game platform is the most popular in Europe?
game platform refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
Pro Evolution Soccer 2012 refers to game_name = 'Pro Evolution Soccer 2012'
Which game platform is the most popular in Europe?
game platform refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
record ID refers to game.id; released between 2000 to 2003 refers to release_year BETWEEN 2000 AND 2003
Which game platform is the most popular in Europe?
game platform refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
genre refers to genre_name; 2010 FIFA World Cup South Africa refers to game_name = '2010 FIFA World Cup South Africa';
Which game platform is the most popular in Europe?
game platform refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
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';
Which game platform is the most popular in Europe?
game platform refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
Which game platform is the most popular in Europe?
game platform refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
more than 200000 sales refers to SUM(num_sales) > 2; Japan refers to region_name = 'Japan';
Which game platform is the most popular in Europe?
game platform refers to game_platform_id; the most popular refers to max(num_sales); in Europe refers to region_name = 'Europe'
year that has the most number of video game releases refers to MAX(COUNT(release_year));
For all the games which were published by Namco Bandai Games, what percentage of them were adventure games?
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
game refers to game_name; on the SCD platform refers to platform_name = 'SCD'
For all the games which were published by Namco Bandai Games, what percentage of them were adventure games?
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
region id refers to region.id; Japan refers to region_name = 'Japan'
For all the games which were published by Namco Bandai Games, what percentage of them were adventure games?
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
average number = divide(count(game_id), count(publisher_id))
For all the games which were published by Namco Bandai Games, what percentage of them were adventure games?
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
year refers to release_year; "WiiU" refers to platform_name = 'WiiU'
For all the games which were published by Namco Bandai Games, what percentage of them were adventure games?
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
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'
For all the games which were published by Namco Bandai Games, what percentage of them were adventure games?
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
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';
For all the games which were published by Namco Bandai Games, what percentage of them were adventure games?
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
strategy games refers to game_name WHERE genre_name = 'Strategy';
For all the games which were published by Namco Bandai Games, what percentage of them were adventure games?
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
platform of the game refers to platform_name; "Final Fantasy XIII-2" refers to game_name = 'Final Fantasy XIII-2';
For all the games which were published by Namco Bandai Games, what percentage of them were adventure games?
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
For all the games which were published by Namco Bandai Games, what percentage of them were adventure games?
published by Namco Bandai Games refers to publisher_name = 'Namco Bandai Games'; adventure game refers to genre_name = 'Adventure'; percentage = divide(sum(game_id where genre_name = 'Adventure'), count(game_id)) * 100% where publisher_name = 'Namco Bandai Games'
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
What are the sales made by the games in Japan region?
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
role-playing game refers to genre_name = 'Role-Playing'; Microsoft Game Studios refers to publisher_name = 'Microsoft Game Studios'
What are the sales made by the games in Japan region?
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
genre refers to genre_name; game "Mario vs. Donkey Kong" refers to game_name = 'Mario vs. Donkey Kong'
What are the sales made by the games in Japan region?
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
the earliest refers to min(release_year); name of platform refers to platform_name
What are the sales made by the games in Japan region?
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
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';
What are the sales made by the games in Japan region?
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
publisher refers to publisher_name; the most games refers to max(count(game_id))
What are the sales made by the games in Japan region?
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
genre refers to genre_name; 3D Lemmings refers to game_name = '3D Lemmings'
What are the sales made by the games in Japan region?
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
game ID refers to game.id; released in 2017 refers to release_year = 2017
What are the sales made by the games in Japan region?
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
released in 1990 refers to release_year = 1990; 2000 refers to release_year = 2000;
What are the sales made by the games in Japan region?
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
percentage = MULTIPLY(DIVIDE(SUM(genre_name = 'sport'), COUNT(game_name)), 100.0); sports refers to genre_name = 'sport';
What are the sales made by the games in Japan region?
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
platform ID 15 refers to platform_id = 15
What genre is the game 2010 FIFA World Cup South Africa?
genre refers to genre_name; 2010 FIFA World Cup South Africa refers to game_name = '2010 FIFA World Cup South Africa';
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'
What genre is the game 2010 FIFA World Cup South Africa?
genre refers to genre_name; 2010 FIFA World Cup South Africa refers to game_name = '2010 FIFA World Cup South Africa';
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';
What genre is the game 2010 FIFA World Cup South Africa?
genre refers to genre_name; 2010 FIFA World Cup South Africa refers to game_name = '2010 FIFA World Cup South Africa';
name of publisher refers to publisher_name; the game ID 75 refers to game_id = 75
What genre is the game 2010 FIFA World Cup South Africa?
genre refers to genre_name; 2010 FIFA World Cup South Africa refers to game_name = '2010 FIFA World Cup South Africa';
publisher refers to publisher_name; the Chronicles of the Sword game refers to game_name = 'Chronicles of the Sword'