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