question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
How many first downs were there when the attendance was 13196?
CREATE TABLE table_14877831_2 (first_downs INTEGER, attendance VARCHAR)
{ "SQL_Query": "SELECT MIN(first_downs) FROM table_14877831_2 WHERE attendance = 13196" }
What was the site of the game against Buffalo Bills ?
CREATE TABLE table_14875671_1 (game_site VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT game_site FROM table_14875671_1 WHERE opponent = \"Buffalo Bills\"" }
What was the attendance in week 8?
CREATE TABLE table_14875671_1 (attendance INTEGER, week VARCHAR)
{ "SQL_Query": "SELECT MAX(attendance) FROM table_14875671_1 WHERE week = 8" }
What was the date when the attendance was 63995
CREATE TABLE table_14875671_1 (date VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT date FROM table_14875671_1 WHERE attendance = 63995" }
Who was the opponent in week 4?
CREATE TABLE table_14875671_1 (opponent VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_14875671_1 WHERE week = 4" }
How many different skippers of the yacht City Index Leopard?
CREATE TABLE table_14882588_2 (skipper VARCHAR, yacht VARCHAR)
{ "SQL_Query": "SELECT COUNT(skipper) FROM table_14882588_2 WHERE yacht = \"City Index Leopard\"" }
If sail number is AUS 03, what are all associated race numbers?
CREATE TABLE table_14882588_2 (race_number VARCHAR, sail_number VARCHAR)
{ "SQL_Query": "SELECT race_number FROM table_14882588_2 WHERE sail_number = \"AUS 03\"" }
In what location was the fastest time 1:37.071s?
CREATE TABLE table_14884844_2 (location VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT location FROM table_14884844_2 WHERE record = \"1:37.071s\"" }
What are all the places where Birgit Fischer competed?
CREATE TABLE table_14884844_2 (location VARCHAR, athletes VARCHAR)
{ "SQL_Query": "SELECT location FROM table_14884844_2 WHERE athletes = \"Birgit Fischer\"" }
What are the records when Elzbieta Urbanczik competed?
CREATE TABLE table_14884844_2 (record VARCHAR, athletes VARCHAR)
{ "SQL_Query": "SELECT record FROM table_14884844_2 WHERE athletes = \"Elzbieta Urbanczik\"" }
Name the number of wins for when points is 17
CREATE TABLE table_14889048_1 (wins VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT COUNT(wins) FROM table_14889048_1 WHERE points = 17" }
Name the number of draws for when conceded is 25
CREATE TABLE table_14889048_1 (draws VARCHAR, conceded VARCHAR)
{ "SQL_Query": "SELECT COUNT(draws) FROM table_14889048_1 WHERE conceded = 25" }
Name the most conceded when draws is 5 and position is 1
CREATE TABLE table_14889048_1 (conceded INTEGER, draws VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT MAX(conceded) FROM table_14889048_1 WHERE draws = 5 AND position = 1" }
What date was the episode with production code 176265 aired?
CREATE TABLE table_14889988_1 (original_air_date VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_14889988_1 WHERE production_code = 176265" }
On what dates were episodes written by Robert Carlock aired?
CREATE TABLE table_14889988_1 (original_air_date VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_14889988_1 WHERE written_by = \"Robert Carlock\"" }
What is the production code for episode 229?
CREATE TABLE table_14889988_1 (production_code INTEGER, no_in_series VARCHAR)
{ "SQL_Query": "SELECT MAX(production_code) FROM table_14889988_1 WHERE no_in_series = 229" }
What is the title for the episode written by Robert Carlock & Dana Klein Borkow?
CREATE TABLE table_14889988_1 (title VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT title FROM table_14889988_1 WHERE written_by = \"Robert Carlock & Dana Klein Borkow\"" }
Who directed the episode with the production code 176252?
CREATE TABLE table_14889988_1 (directed_by VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_14889988_1 WHERE production_code = 176252" }
How many points when 15 is scored is considered the minimum?
CREATE TABLE table_14889048_2 (points INTEGER, scored VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_14889048_2 WHERE scored = 15" }
When a team wins 4, how much is the Maximum amount of points?
CREATE TABLE table_14889048_2 (points INTEGER, wins VARCHAR)
{ "SQL_Query": "SELECT MAX(points) FROM table_14889048_2 WHERE wins = 4" }
How may draws did libertad have?
CREATE TABLE table_14889048_2 (draws VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT COUNT(draws) FROM table_14889048_2 WHERE team = \"Libertad\"" }
Name the men doubles for els baert
CREATE TABLE table_14903355_2 (men_doubles VARCHAR, womens_singles VARCHAR)
{ "SQL_Query": "SELECT men_doubles FROM table_14903355_2 WHERE womens_singles = \"Els Baert\"" }
Name the men doubles for caroline persyn smids
CREATE TABLE table_14903355_2 (men_doubles VARCHAR, womens_doubles VARCHAR)
{ "SQL_Query": "SELECT men_doubles FROM table_14903355_2 WHERE womens_doubles = \"Caroline Persyn Smids\"" }
Name the number of men doubles for 2007
CREATE TABLE table_14903355_2 (men_doubles VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT COUNT(men_doubles) FROM table_14903355_2 WHERE year = 2007" }
Name the womens singles for raina tzvetkova petya nedelcheva
CREATE TABLE table_14903491_1 (womens_singles VARCHAR, womens_doubles VARCHAR)
{ "SQL_Query": "SELECT womens_singles FROM table_14903491_1 WHERE womens_doubles = \"Raina Tzvetkova Petya Nedelcheva\"" }
Name the number of years for womens doubles being diana koleva emilia dimitrova and jeliazko valkov
CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR, mens_singles VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_14903491_1 WHERE womens_doubles = \"Diana Koleva Emilia Dimitrova\" AND mens_singles = \"Jeliazko Valkov\"" }
Name the mens singles for jeliazko valkov dobrinka peneva
CREATE TABLE table_14903491_1 (mens_singles VARCHAR, mixed_doubles VARCHAR)
{ "SQL_Query": "SELECT mens_singles FROM table_14903491_1 WHERE mixed_doubles = \"Jeliazko Valkov Dobrinka Peneva\"" }
Name the mens singles for 1989
CREATE TABLE table_14903491_1 (mens_singles VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT mens_singles FROM table_14903491_1 WHERE year = 1989" }
Name the year for victoria hristova neli nedialkova
CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR)
{ "SQL_Query": "SELECT year FROM table_14903491_1 WHERE womens_doubles = \"Victoria Hristova Neli Nedialkova\"" }
Name the year for womens doubles being raina tzvetkova emilia dimitrova
CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR)
{ "SQL_Query": "SELECT year FROM table_14903491_1 WHERE womens_doubles = \"Raina Tzvetkova Emilia Dimitrova\"" }
WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO?
CREATE TABLE table_14903627_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)
{ "SQL_Query": "SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = \"Piret Hamer Helen Reino\"" }
WHAT IS THE NAME OF THE MENS DOUBLES PLAYER WHEN THE WOMENS DOUBLES PLAYER IS HELEN REINO KAI-RIIN SALUSTE?
CREATE TABLE table_14903627_1 (mens_doubles VARCHAR, womens_doubles VARCHAR)
{ "SQL_Query": "SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = \"Helen Reino Kai-Riin Saluste\"" }
WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?
CREATE TABLE table_14903627_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)
{ "SQL_Query": "SELECT mixed_doubles FROM table_14903627_1 WHERE womens_singles = \"Kairi Viilup\"" }
HOW MANY YEARS DID MENS DOUBLES PLAYER HEIKI SORGE MEELIS MAISTE PLAY?
CREATE TABLE table_14903627_1 (year VARCHAR, mens_doubles VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_14903627_1 WHERE mens_doubles = \"Heiki Sorge Meelis Maiste\"" }
Name the womens doubles when mens doubles is charalambos kazilas stepan partemian
CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)
{ "SQL_Query": "SELECT womens_doubles FROM table_14903881_1 WHERE mens_doubles = \"Charalambos Kazilas Stepan Partemian\"" }
Name the womens doubles when mixed doubles is potten ruth scott
CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)
{ "SQL_Query": "SELECT womens_doubles FROM table_14903881_1 WHERE mixed_doubles = \"Potten Ruth Scott\"" }
Name the mens singles when mens doubles is george georgoudis gerostergiou
CREATE TABLE table_14903881_1 (mens_singles VARCHAR, mens_doubles VARCHAR)
{ "SQL_Query": "SELECT mens_singles FROM table_14903881_1 WHERE mens_doubles = \"George Georgoudis Gerostergiou\"" }
Name the womens doubles when mens doubles is theodoros velkos giorgos patis
CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)
{ "SQL_Query": "SELECT womens_doubles FROM table_14903881_1 WHERE mens_doubles = \"Theodoros Velkos Giorgos Patis\"" }
What was the earliest year Þorvaldur Ásgeirsson Lovísa Sigurðardóttir won mixed doubles
CREATE TABLE table_14903999_1 (year INTEGER, mixed_doubles VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_14903999_1 WHERE mixed_doubles = \"Þorvaldur Ásgeirsson Lovísa Sigurðardóttir\"" }
Who won womens doubles the year magnús ingi helgason tinna helgadóttir won mixed doubles and ragna ingólfsdóttir won womens singles in 2010
CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, year VARCHAR, mixed_doubles VARCHAR, womens_singles VARCHAR)
{ "SQL_Query": "SELECT womens_doubles FROM table_14903999_1 WHERE mixed_doubles = \"Magnús Ingi Helgason Tinna Helgadóttir\" AND womens_singles = \"Ragna Ingólfsdóttir\" AND year = 2010" }
How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles
CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)
{ "SQL_Query": "SELECT COUNT(womens_doubles) FROM table_14903999_1 WHERE mixed_doubles = \"Broddi Kristjánsson Drífa Harðardóttir\"" }
What was the last year árni þór hallgrímsson drífa harðardóttir won mixed doubles
CREATE TABLE table_14903999_1 (year INTEGER, mixed_doubles VARCHAR)
{ "SQL_Query": "SELECT MAX(year) FROM table_14903999_1 WHERE mixed_doubles = \"Árni Þór Hallgrímsson Drífa Harðardóttir\"" }
Who won mens singles the year sveinn logi sölvason tryggvi nilsen won mens doubles and elsa nielsen won womens singles
CREATE TABLE table_14903999_1 (mens_singles VARCHAR, mens_doubles VARCHAR, womens_singles VARCHAR)
{ "SQL_Query": "SELECT mens_singles FROM table_14903999_1 WHERE mens_doubles = \"Sveinn Logi Sölvason Tryggvi Nilsen\" AND womens_singles = \"Elsa Nielsen\"" }
In which position is the team Cerro Porteño?
CREATE TABLE table_14911550_5 (position VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT position FROM table_14911550_5 WHERE team = \"Cerro Porteño\"" }
How many games were played?
CREATE TABLE table_14911550_5 (played INTEGER)
{ "SQL_Query": "SELECT MIN(played) FROM table_14911550_5" }
What is the result of men's doubles when there was no competition?
CREATE TABLE table_14904221_1 (mixed_doubles VARCHAR, mens_doubles VARCHAR)
{ "SQL_Query": "SELECT mixed_doubles FROM table_14904221_1 WHERE mens_doubles = \"no competition\"" }
WHo won men's singles in 1994?
CREATE TABLE table_14904221_1 (mens_singles VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT mens_singles FROM table_14904221_1 WHERE year = 1994" }
Who won women's singles in 2001?
CREATE TABLE table_14904221_1 (womens_singles VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT womens_singles FROM table_14904221_1 WHERE year = 2001" }
Name the least wins
CREATE TABLE table_14911550_1 (wins INTEGER)
{ "SQL_Query": "SELECT MIN(wins) FROM table_14911550_1" }
is γолемата вода nominated for anything?
CREATE TABLE table_14928423_1 (result VARCHAR, original_title VARCHAR)
{ "SQL_Query": "SELECT result FROM table_14928423_1 WHERE original_title = \"Γолемата Вода\"" }
how many years has сенки been nominated?
CREATE TABLE table_14928423_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
{ "SQL_Query": "SELECT COUNT(year__ceremony_) FROM table_14928423_1 WHERE original_title = \"Сенки\"" }
how many directors for the film мајки
CREATE TABLE table_14928423_1 (director_s_ VARCHAR, original_title VARCHAR)
{ "SQL_Query": "SELECT COUNT(director_s_) FROM table_14928423_1 WHERE original_title = \"Мајки\"" }
Who is the second performer in episode 5?
CREATE TABLE table_14934885_1 (performer_2 VARCHAR, episode VARCHAR)
{ "SQL_Query": "SELECT performer_2 FROM table_14934885_1 WHERE episode = 5" }
How many times was performer 3 Kate Robbins?
CREATE TABLE table_14934885_1 (date VARCHAR, performer_3 VARCHAR)
{ "SQL_Query": "SELECT COUNT(date) FROM table_14934885_1 WHERE performer_3 = \"Kate Robbins\"" }
Who was perfomer one on 30 January 1988?
CREATE TABLE table_14934885_1 (performer_1 VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT performer_1 FROM table_14934885_1 WHERE date = \"30 January 1988\"" }
Who was performer 4 when Kate Robbins was performer 3?
CREATE TABLE table_14934885_1 (performer_4 VARCHAR, performer_3 VARCHAR)
{ "SQL_Query": "SELECT performer_4 FROM table_14934885_1 WHERE performer_3 = \"Kate Robbins\"" }
How many episodes was Jimmy Mulville performer 4?
CREATE TABLE table_14934885_1 (episode VARCHAR, performer_4 VARCHAR)
{ "SQL_Query": "SELECT COUNT(episode) FROM table_14934885_1 WHERE performer_4 = \"Jimmy Mulville\"" }
Which general election had a vote swing of 1.84?
CREATE TABLE table_149330_1 (general_election VARCHAR, votes_swing VARCHAR)
{ "SQL_Query": "SELECT general_election FROM table_149330_1 WHERE votes_swing = \"1.84\"" }
What was the total number of seats won where the % of votes is equal to 20.29?
CREATE TABLE table_149330_1 (seats_won VARCHAR, _percentage_of_votes VARCHAR)
{ "SQL_Query": "SELECT COUNT(seats_won) FROM table_149330_1 WHERE _percentage_of_votes = \"20.29\"" }
What was the number of seat changes when the % of votes was 23.75?
CREATE TABLE table_149330_1 (change_in_seat VARCHAR, _percentage_of_votes VARCHAR)
{ "SQL_Query": "SELECT change_in_seat FROM table_149330_1 WHERE _percentage_of_votes = \"23.75\"" }
Which general election had a vote swing of 1.69?
CREATE TABLE table_149330_1 (general_election VARCHAR, votes_swing VARCHAR)
{ "SQL_Query": "SELECT general_election FROM table_149330_1 WHERE votes_swing = \"1.69\"" }
What was the vote swing for the general election of the 12th lok sabha?
CREATE TABLE table_149330_1 (votes_swing VARCHAR, general_election VARCHAR)
{ "SQL_Query": "SELECT votes_swing FROM table_149330_1 WHERE general_election = \"12th Lok Sabha\"" }
What was the team's result in week 4?
CREATE TABLE table_14942535_1 (result VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT result FROM table_14942535_1 WHERE week = 4" }
When the network mask is 255.255.255.252 what is the prefix size?
CREATE TABLE table_149426_4 (prefix_size VARCHAR, network_mask VARCHAR)
{ "SQL_Query": "SELECT prefix_size FROM table_149426_4 WHERE network_mask = \"255.255.255.252\"" }
available subnets leading total is?
CREATE TABLE table_149426_4 (available_subnets INTEGER)
{ "SQL_Query": "SELECT MAX(available_subnets) FROM table_149426_4" }
When the network mask is 255.255.255.128 what is the lowest available subnet?
CREATE TABLE table_149426_4 (available_subnets INTEGER, network_mask VARCHAR)
{ "SQL_Query": "SELECT MIN(available_subnets) FROM table_149426_4 WHERE network_mask = \"255.255.255.128\"" }
When the network mask is 255.255.255.224 what is the highest total usable host?
CREATE TABLE table_149426_4 (total_usable_hosts INTEGER, network_mask VARCHAR)
{ "SQL_Query": "SELECT MAX(total_usable_hosts) FROM table_149426_4 WHERE network_mask = \"255.255.255.224\"" }
Who were all of the opponents when the date was November 12, 1978?
CREATE TABLE table_14945112_1 (opponent VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_14945112_1 WHERE date = \"November 12, 1978\"" }
What is the total number of values for attendance for the date October 1, 1978?
CREATE TABLE table_14945112_1 (attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(attendance) FROM table_14945112_1 WHERE date = \"October 1, 1978\"" }
What was the highest attendance?
CREATE TABLE table_14945608_1 (attendance INTEGER)
{ "SQL_Query": "SELECT MAX(attendance) FROM table_14945608_1" }
What date did the Colts play New York Jets?
CREATE TABLE table_14945608_1 (date VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT date FROM table_14945608_1 WHERE opponent = \"New York Jets\"" }
How many games had the attendance of 60225?
CREATE TABLE table_14945608_1 (result VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT COUNT(result) FROM table_14945608_1 WHERE attendance = 60225" }
What was the result of the game on October 6, 1974?
CREATE TABLE table_14954150_1 (result VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT result FROM table_14954150_1 WHERE date = \"October 6, 1974\"" }
What was the record on September 22, 1974?
CREATE TABLE table_14954150_1 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_14954150_1 WHERE date = \"September 22, 1974\"" }
What was the Bhofen #1 score and rank for the player whose Bhofen #2 score and rank was 231.2 (8)?
CREATE TABLE table_14948647_1 (bhofen_number1__rk_ VARCHAR, bhofen_number2__rk_ VARCHAR)
{ "SQL_Query": "SELECT bhofen_number1__rk_ FROM table_14948647_1 WHERE bhofen_number2__rk_ = \"231.2 (8)\"" }
What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 233.4 (16)?
CREATE TABLE table_14948647_1 (bhofen_number2__rk_ VARCHAR, ga_pa__rk_ VARCHAR)
{ "SQL_Query": "SELECT bhofen_number2__rk_ FROM table_14948647_1 WHERE ga_pa__rk_ = \"233.4 (16)\"" }
What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 227.5 (19)?
CREATE TABLE table_14948647_1 (bhofen_number2__rk_ VARCHAR, ga_pa__rk_ VARCHAR)
{ "SQL_Query": "SELECT bhofen_number2__rk_ FROM table_14948647_1 WHERE ga_pa__rk_ = \"227.5 (19)\"" }
How many points in total were scored by the player whose Oberstdork score and rank were 252.6 (11)?
CREATE TABLE table_14948647_1 (total_points VARCHAR, oberstdorf__rk_ VARCHAR)
{ "SQL_Query": "SELECT total_points FROM table_14948647_1 WHERE oberstdorf__rk_ = \"252.6 (11)\"" }
On which week was the attendance 74303?
CREATE TABLE table_14958620_1 (week INTEGER, attendance VARCHAR)
{ "SQL_Query": "SELECT MAX(week) FROM table_14958620_1 WHERE attendance = 74303" }
On which date was the game played at Tiger Stadium?
CREATE TABLE table_14958620_1 (date VARCHAR, game_site VARCHAR)
{ "SQL_Query": "SELECT date FROM table_14958620_1 WHERE game_site = \"Tiger Stadium\"" }
What was the final score of the game against the Dallas Cowboys?
CREATE TABLE table_14959246_2 (result VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_14959246_2 WHERE opponent = \"Dallas Cowboys\"" }
What was the attendance at the game played on December 10, 1972?
CREATE TABLE table_14959246_2 (attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_14959246_2 WHERE date = \"December 10, 1972\"" }
Name the french actor with javier romano
CREATE TABLE table_14960574_6 (french_voice_actor VARCHAR, spanish_voice_actor VARCHAR)
{ "SQL_Query": "SELECT COUNT(french_voice_actor) FROM table_14960574_6 WHERE spanish_voice_actor = \"Javier Romano\"" }
Name the german voice actor for alain dorval
CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, french_voice_actor VARCHAR)
{ "SQL_Query": "SELECT german_voice_actor FROM table_14960574_6 WHERE french_voice_actor = \"Alain Dorval\"" }
Name the german voice actor for rafael torres
CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, spanish_voice_actor VARCHAR)
{ "SQL_Query": "SELECT german_voice_actor FROM table_14960574_6 WHERE spanish_voice_actor = \"Rafael Torres\"" }
Name the character for sophie arthuys
CREATE TABLE table_14960574_6 (character VARCHAR, french_voice_actor VARCHAR)
{ "SQL_Query": "SELECT character FROM table_14960574_6 WHERE french_voice_actor = \"Sophie Arthuys\"" }
Name the italian voice actor for dirk fenselau
CREATE TABLE table_14960574_6 (italian_voice_actor VARCHAR, german_voice_actor VARCHAR)
{ "SQL_Query": "SELECT italian_voice_actor FROM table_14960574_6 WHERE german_voice_actor = \"Dirk Fenselau\"" }
which fa cups had a total of 565 (7)?
CREATE TABLE table_14962287_1 (fa_cup VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT fa_cup FROM table_14962287_1 WHERE total = \"565 (7)\"" }
which years had other a of 8 (1)?
CREATE TABLE table_14962287_1 (years VARCHAR, other_a VARCHAR)
{ "SQL_Query": "SELECT years FROM table_14962287_1 WHERE other_a = \"8 (1)\"" }
What name is associated with League 142?
CREATE TABLE table_14962287_2 (name VARCHAR, league VARCHAR)
{ "SQL_Query": "SELECT name FROM table_14962287_2 WHERE league = 142" }
How many values of Other A correspond to Tommy Johnson Category:Articles with hCards?
CREATE TABLE table_14962287_2 (other_a VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT COUNT(other_a) FROM table_14962287_2 WHERE name = \"Tommy Johnson Category:Articles with hCards\"" }
How many different Leagues are associated with Billy Meredith Category:Articles with hCards?
CREATE TABLE table_14962287_2 (league VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT COUNT(league) FROM table_14962287_2 WHERE name = \"Billy Meredith Category:Articles with hCards\"" }
How many separate values for Years are associated with FA Cup of 5?
CREATE TABLE table_14962287_2 (years VARCHAR, fa_cup VARCHAR)
{ "SQL_Query": "SELECT COUNT(years) FROM table_14962287_2 WHERE fa_cup = 5" }
What years have a total of 139?
CREATE TABLE table_14962287_2 (years VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT years FROM table_14962287_2 WHERE total = \"139\"" }
What was the GDP (in millions USD) of Indonesia in 2009?
CREATE TABLE table_1496582_1 (gdp_millions_of_usd__2009_ VARCHAR, country___territory VARCHAR)
{ "SQL_Query": "SELECT COUNT(gdp_millions_of_usd__2009_) FROM table_1496582_1 WHERE country___territory = \"Indonesia\"" }
What was the GDP (in millions USD) of Hong Kong in 2009?
CREATE TABLE table_1496582_1 (gdp_millions_of_usd__2009_ INTEGER, country___territory VARCHAR)
{ "SQL_Query": "SELECT MAX(gdp_millions_of_usd__2009_) FROM table_1496582_1 WHERE country___territory = \"Hong Kong\"" }
How tall is Braxton Kelley?
CREATE TABLE table_14966667_19 (height VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT height FROM table_14966667_19 WHERE name = \"Braxton Kelley\"" }
what class is Braxton Kelley in?
CREATE TABLE table_14966667_19 (class VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT COUNT(class) FROM table_14966667_19 WHERE name = \"Braxton Kelley\"" }
how many hometowns use the position of fs?
CREATE TABLE table_14966667_19 (hometown VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT COUNT(hometown) FROM table_14966667_19 WHERE position = \"FS\"" }
who is number 98?
CREATE TABLE table_14966667_19 (name VARCHAR, number VARCHAR)
{ "SQL_Query": "SELECT name FROM table_14966667_19 WHERE number = \"98\"" }