query
stringlengths
24
325
positive
stringlengths
1
580
negative
stringlengths
1
580
What is the ratio of game sales between North America and Japan?
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';
which region refers to region_name; lowest number of sales refers to MIN(num_sales);
What is the ratio of game sales between North America and Japan?
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';
3 largest numbers of games sold refers to game_name where MAX(num_sales) LIMIT 3;
What is the ratio of game sales between North America and Japan?
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';
platform refers to platform_name;
What is the ratio of game sales between North America and Japan?
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';
the genre of sports refers to genre_name = 'Sports'
What is the ratio of game sales between North America and Japan?
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';
FIFA games refers to game_name LIKE '%FIFA%';
What is the ratio of game sales between North America and Japan?
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';
difference = SUBTRACT(SUM(num_sales WHERE region_id = 2), SUM(num_sales WHERE region_id = 3));
How many publishers have published more than 3 puzzle games?
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
game ID refers to game.id; released in 2017 refers to release_year = 2017
How many publishers have published more than 3 puzzle games?
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
adventure games refers to game_name WHERE genre_name = 'Adventure'; released in 2005 refers to release_year = 2005;
How many publishers have published more than 3 puzzle games?
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
which region refers to region_name; lowest number of sales refers to MIN(num_sales);
How many publishers have published more than 3 puzzle games?
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
platform of the game refers to platform_name; "Final Fantasy XIII-2" refers to game_name = 'Final Fantasy XIII-2';
How many publishers have published more than 3 puzzle games?
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
released in 2007 refers to release_year = 2007;
How many publishers have published more than 3 puzzle games?
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
genre refers to genre_name; 2010 FIFA World Cup South Africa refers to game_name = '2010 FIFA World Cup South Africa';
How many publishers have published more than 3 puzzle games?
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
role-playing game refers to genre_name = 'Role-Playing'; Microsoft Game Studios refers to publisher_name = 'Microsoft Game Studios'
How many publishers have published more than 3 puzzle games?
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
which publisher refers to publisher_name; Overwatch refers to game_name = 'Overwatch';
How many publishers have published more than 3 puzzle games?
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
platform ID 15 refers to platform_id = 15
How many publishers have published more than 3 puzzle games?
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
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';
How many more sports games than simulation games?
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'))
genre of the game refers to genre_name; game ID 119 refers to game.id = 119;
How many more sports games than simulation games?
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'))
on PS4 refers to platform_name = 'PS4'; in 2014 refers to release_year = 2014
How many more sports games than simulation games?
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'))
Abylight refers to publisher_name = 'Abylight';
How many more sports games than simulation games?
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'))
game refers to game_name; the longest name refers to max(length(game_name))
How many more sports games than simulation games?
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'))
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
How many more sports games than simulation games?
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'))
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%
How many more sports games than simulation games?
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'))
on the Wii platform refers to platform_name = 'Wii'
How many more sports games than simulation games?
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'))
name of game refers to game_name; published by 3DO refers to publisher_name = '3DO'
How many more sports games than simulation games?
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'))
role-playing game refers to genre_name = 'Role-Playing'
How many more sports games than simulation games?
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'))
FIFA games refers to game_name LIKE '%FIFA%';
List the name of all games published by 'Pioneer LDC'.
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
publisher refers to publisher_name; the most games refers to max(count(publisher_id))
List the name of all games published by 'Pioneer LDC'.
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
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 the name of all games published by 'Pioneer LDC'.
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
number of sales = multiply(num_sales, 100000); in Europe refers to region_name = 'Europe'
List the name of all games published by 'Pioneer LDC'.
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
List the name of all games published by 'Pioneer LDC'.
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
game refers to game_name; on the SCD platform refers to platform_name = 'SCD'
List the name of all games published by 'Pioneer LDC'.
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
name of games refers to game_name;  'SCD' platform refers to platform_name = 'SCD';
List the name of all games published by 'Pioneer LDC'.
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
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%
List the name of all games published by 'Pioneer LDC'.
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
fighting genre refers to genre_name = 'Fighting';
List the name of all games published by 'Pioneer LDC'.
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
genre refers to genre_name; game "Mario vs. Donkey Kong" refers to game_name = 'Mario vs. Donkey Kong'
List the name of all games published by 'Pioneer LDC'.
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
published by 10TACLE Studios refers to publisher_name = '10TACLE Studios'; puzzle refers to genre_name = 'Puzzle'
Find out the difference between the number of publishers who released the games on the PS3 and X360.
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
gained 350000 sales refers to num_sales = 3.5; in North America refers to region_name = 'North America'
Find out the difference between the number of publishers who released the games on the PS3 and X360.
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
name of publisher refers to publisher_name; the game ID 75 refers to game_id = 75
Find out the difference between the number of publishers who released the games on the PS3 and X360.
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
number of games refers to count(game_id)
Find out the difference between the number of publishers who released the games on the PS3 and X360.
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
genre ID 3 refers to genre.id = 3
Find out the difference between the number of publishers who released the games on the PS3 and X360.
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
when refers to release_year; the "Adventure Island" game refers to game_name = 'Adventure Island'
Find out the difference between the number of publishers who released the games on the PS3 and X360.
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
the earliest refers to min(release_year); name of platform refers to platform_name
Find out the difference between the number of publishers who released the games on the PS3 and X360.
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
id of game refers to game.id; "Resident Evil Archives: Resident Evil" refers to game_name = 'Resident Evil Archives: Resident Evil'
Find out the difference between the number of publishers who released the games on the PS3 and X360.
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
name of game refers to game_name; published by 3DO refers to publisher_name = '3DO'
Find out the difference between the number of publishers who released the games on the PS3 and X360.
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
name of the games refers to game_name; released in the year 2010 refers to release_year = 2010;
Find out the difference between the number of publishers who released the games on the PS3 and X360.
difference = SUBTRACT(SUM(platform_name = 'PS3'), SUM(platform_name = 'X360')); PS3 refers to platform_name = 'PS3'; X360 refers to platform_name = 'X360';
when refers to release_year; the game titled 3DS Classic Collection refers to game_name = '3DS Classic Collection'
List the region name where games reached 300000 sales and above.
reached 300000 sales and above refers to num_sales > 3
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'))
List the region name where games reached 300000 sales and above.
reached 300000 sales and above refers to num_sales > 3
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
List the region name where games reached 300000 sales and above.
reached 300000 sales and above refers to num_sales > 3
name of games refers to game_name; racing genre refers to genre_name = 'Racing';
List the region name where games reached 300000 sales and above.
reached 300000 sales and above refers to num_sales > 3
publishers that have Interactive in their names refers to publisher_name LIKE '%Interactive%';
List the region name where games reached 300000 sales and above.
reached 300000 sales and above refers to num_sales > 3
do not have any sales refers to num_sales = 0; in Europe refers to region_name = 'Europe'
List the region name where games reached 300000 sales and above.
reached 300000 sales and above refers to num_sales > 3
game ID refers to game.id; genre ID 2 refers to genre_id = 2
List the region name where games reached 300000 sales and above.
reached 300000 sales and above refers to num_sales > 3
when refers to release_year; the "Adventure Island" game refers to game_name = 'Adventure Island'
List the region name where games reached 300000 sales and above.
reached 300000 sales and above refers to num_sales > 3
year the first game was released refers to MIN(release_year);
List the region name where games reached 300000 sales and above.
reached 300000 sales and above refers to num_sales > 3
game ID refers to game.id; released in 2017 refers to release_year = 2017
List the region name where games reached 300000 sales and above.
reached 300000 sales and above refers to num_sales > 3
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%
What is the name of the company that produced the game titled Adventure Time: Explore the Dungeon Because I Don't Know!?
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!';
publisher refers to publisher_name; the Chronicles of the Sword game refers to game_name = 'Chronicles of the Sword'
What is the name of the company that produced the game titled Adventure Time: Explore the Dungeon Because I Don't Know!?
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!';
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 is the name of the company that produced the game titled Adventure Time: Explore the Dungeon Because I Don't Know!?
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!';
id of game refers to game.id; "Resident Evil Archives: Resident Evil" refers to game_name = 'Resident Evil Archives: Resident Evil'
What is the name of the company that produced the game titled Adventure Time: Explore the Dungeon Because I Don't Know!?
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!';
genre refers to genre_name; 'Airlock', 'Airline Tycoon' , and 'Airblade' refers to game_name IN ('Airlock', 'Airline Tycoon', 'Airblade');
What is the name of the company that produced the game titled Adventure Time: Explore the Dungeon Because I Don't Know!?
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!';
name of publisher refers to publisher_name; puzzle refers to genre_name = 'Puzzle'
What is the name of the company that produced the game titled Adventure Time: Explore the Dungeon Because I Don't Know!?
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!';
publishers that have Interactive in their names refers to publisher_name LIKE '%Interactive%';
What is the name of the company that produced the game titled Adventure Time: Explore the Dungeon Because I Don't Know!?
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!';
the genre of sports refers to genre_name = 'Sports'
What is the name of the company that produced the game titled Adventure Time: Explore the Dungeon Because I Don't Know!?
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!';
released in 2007 refers to release_year = 2007;
What is the name of the company that produced the game titled Adventure Time: Explore the Dungeon Because I Don't Know!?
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!';
total sales in all regions = MULTIPLY(SUM(num_sales), 100000);
What is the name of the company that produced the game titled Adventure Time: Explore the Dungeon Because I Don't Know!?
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 Japan refers to region_name = 'Japan'; average number of sales = multiply(avg(num_sales), 100000) where region_name = 'Japan'
How many games are not of the genres 'Role-Playing', 'Shooter' and 'Simulation'?
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
Minecraft refers to game_name = 'Minecraft';
How many games are not of the genres 'Role-Playing', 'Shooter' and 'Simulation'?
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
region id refers to region.id; Japan refers to region_name = 'Japan'
How many games are not of the genres 'Role-Playing', 'Shooter' and 'Simulation'?
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
PSP refers to platform_name = 'PSP'; released in 2004 refers to release_year = 2004;
How many games are not of the genres 'Role-Playing', 'Shooter' and 'Simulation'?
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
published by 10TACLE Studios refers to publisher_name = '10TACLE Studios'; puzzle refers to genre_name = 'Puzzle'
How many games are not of the genres 'Role-Playing', 'Shooter' and 'Simulation'?
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
number of sales = multiply(num_sales, 100000); in Europe refers to region_name = 'Europe'
How many games are not of the genres 'Role-Playing', 'Shooter' and 'Simulation'?
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
FIFA games refers to game_name LIKE '%FIFA%';
How many games are not of the genres 'Role-Playing', 'Shooter' and 'Simulation'?
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
which region refers to region_name; highest number of games sold on all platforms refers to MAX(SUM(num_sales));
How many games are not of the genres 'Role-Playing', 'Shooter' and 'Simulation'?
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
strategy games refers to game_name WHERE genre_name = 'Strategy';
How many games are not of the genres 'Role-Playing', 'Shooter' and 'Simulation'?
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
puzzle refers to genre_name = 'Puzzle'; more than 3 puzzle games refers to count(game_id where genre_name = 'Puzzle') > 3
How many games are not of the genres 'Role-Playing', 'Shooter' and 'Simulation'?
not of the genres 'Role-Playing', 'Shooter' and 'Simulation' refers to genre_name NOT IN ('Role-Playing', 'Shooter', 'Simulation');
X360 refers to platform_name = 'X360';
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
platform that is the most popular refers to platform_name WHERE MAX(num_sales); in Europe refers to region_name = 'Europe' ;
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
strategy games refers to game_name WHERE genre_name = 'Strategy';
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
when the game was released refers to release_year;
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
FIFA games refers to game_name LIKE '%FIFA%';
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
on the Wii platform refers to platform_name = 'Wii'
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
name of game refers to game_name; 505 Games refers to publisher_name = '505 Games'; in 2006 refers to release_year = 2006;
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
game ID refers to game.id; genre ID 2 refers to genre_id = 2
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
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;
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
reached 300000 sales and above refers to num_sales > 3
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
genre refers to genre_name; "Grand Theft Auto V" refers to game_name = 'Grand Theft Auto V';
Indicate the name of all adventure games.
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
genre refers to genre_name; 3D Lemmings refers to game_name = '3D Lemmings'
Indicate the name of all adventure games.
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
record ID refers to game.id; released between 2000 to 2003 refers to release_year BETWEEN 2000 AND 2003
Indicate the name of all adventure games.
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
which region refers to region_name; highest number of games sold on all platforms refers to MAX(SUM(num_sales));
Indicate the name of all adventure games.
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
sales = SUM(num_sales); Japan region refers to region_name = 'Japan';
Indicate the name of all adventure games.
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
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';
Indicate the name of all adventure games.
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
name of games refers to game_name; 'Pioneer LDC' refers to publisher_name = 'Pioneer LDC';
Indicate the name of all adventure games.
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
released in the year 2001 refers to release_year = 2001;
Indicate the name of all adventure games.
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
Pro Evolution Soccer 2012 refers to game_name = 'Pro Evolution Soccer 2012'
Indicate the name of all adventure games.
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
id of game platform refers to game_platform_id; the most sales refers to max(num_sales); in Japan refers to region_name = 'Japan'
Indicate the name of all adventure games.
name of games refers to game_name; adventure games refers to game_name WHERE genre_name = 'Adventure';
game refers to game_name; released in 2011 refers to release_year = 2011
List the genre id of the game Pro Evolution Soccer 2012.
Pro Evolution Soccer 2012 refers to game_name = 'Pro Evolution Soccer 2012'
the genre of sports refers to genre_name = 'Sports'
List the genre id of the game Pro Evolution Soccer 2012.
Pro Evolution Soccer 2012 refers to game_name = 'Pro Evolution Soccer 2012'
id of game platform refers to game_platform_id; the most sales refers to max(num_sales); in Japan refers to region_name = 'Japan'
List the genre id of the game Pro Evolution Soccer 2012.
Pro Evolution Soccer 2012 refers to game_name = 'Pro Evolution Soccer 2012'
when refers to release_year; the "Adventure Island" game refers to game_name = 'Adventure Island'
List the genre id of the game Pro Evolution Soccer 2012.
Pro Evolution Soccer 2012 refers to game_name = 'Pro Evolution Soccer 2012'
id of game refers to game.id; "Resident Evil Archives: Resident Evil" refers to game_name = 'Resident Evil Archives: Resident Evil'