question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
during which period did albert baning play? | CREATE TABLE table_24565004_3 (period VARCHAR, name VARCHAR) | SELECT period FROM table_24565004_3 WHERE name = "Albert Baning" |
What is the number of goals if the name is Xavier Gravelaine? | CREATE TABLE table_24565004_8 (goals¹ VARCHAR, name VARCHAR) | SELECT goals¹ FROM table_24565004_8 WHERE name = "Xavier Gravelaine" |
If the name is Patrick Grappin, what is the nationality? | CREATE TABLE table_24565004_8 (nationality² VARCHAR, name VARCHAR) | SELECT nationality² FROM table_24565004_8 WHERE name = "Patrick Grappin" |
What is the period total number if the name is Geraldão? | CREATE TABLE table_24565004_8 (period VARCHAR, name VARCHAR) | SELECT COUNT(period) FROM table_24565004_8 WHERE name = "Geraldão" |
What is the nationality if the appearance is 29? | CREATE TABLE table_24565004_8 (nationality² VARCHAR, appearances¹ VARCHAR) | SELECT nationality² FROM table_24565004_8 WHERE appearances¹ = 29 |
Name the concacaf for 2010 season | CREATE TABLE table_245694_4 (concacaf VARCHAR, season VARCHAR) | SELECT concacaf FROM table_245694_4 WHERE season = 2010 |
Name the least season for round of 32 | CREATE TABLE table_245694_4 (season INTEGER, us_open_cup VARCHAR) | SELECT MIN(season) FROM table_245694_4 WHERE us_open_cup = "Round of 32" |
Name the number of playoffs for semifinals | CREATE TABLE table_245694_4 (playoffs VARCHAR, concacaf VARCHAR) | SELECT COUNT(playoffs) FROM table_245694_4 WHERE concacaf = "Semifinals" |
Name the number of season for 18th position | CREATE TABLE table_24596664_1 (season VARCHAR, position VARCHAR) | SELECT COUNT(season) FROM table_24596664_1 WHERE position = "18th" |
Name the least wins | CREATE TABLE table_24596664_1 (wins INTEGER) | SELECT MIN(wins) FROM table_24596664_1 |
Name the total number of language of films for méga-plex taschereau imax | CREATE TABLE table_2461720_1 (language_of_films VARCHAR, theatre_name VARCHAR) | SELECT COUNT(language_of_films) FROM table_2461720_1 WHERE theatre_name = "Méga-Plex Taschereau IMAX" |
Name the theatre name for french | CREATE TABLE table_2461720_1 (theatre_name VARCHAR, language_of_films VARCHAR) | SELECT theatre_name FROM table_2461720_1 WHERE language_of_films = "French" |
Name the location for democratic méga-plex taschereau imax | CREATE TABLE table_2461720_1 (location VARCHAR, theatre_name VARCHAR) | SELECT location FROM table_2461720_1 WHERE theatre_name = "Méga-Plex Taschereau IMAX" |
What episode number has 2j5352 as a production code? | CREATE TABLE table_24625467_1 (no VARCHAR, production_code VARCHAR) | SELECT no FROM table_24625467_1 WHERE production_code = "2J5352" |
What date did the episode with a production code of 2j5356 originally air? | CREATE TABLE table_24625467_1 (original_air_date VARCHAR, production_code VARCHAR) | SELECT original_air_date FROM table_24625467_1 WHERE production_code = "2J5356" |
When 2012 is the year what is the winning boat? | CREATE TABLE table_24673710_1 (winning_boat VARCHAR, year VARCHAR) | SELECT winning_boat FROM table_24673710_1 WHERE year = 2012 |
When 64 is the entries what is the winning boat? | CREATE TABLE table_24673710_1 (winning_boat VARCHAR, entries VARCHAR) | SELECT winning_boat FROM table_24673710_1 WHERE entries = 64 |
When 61 is the entries what is the winning boat? | CREATE TABLE table_24673710_1 (winning_boat VARCHAR, entries VARCHAR) | SELECT winning_boat FROM table_24673710_1 WHERE entries = 61 |
What is the name of the episode that aired originally on October 18, 1991? | CREATE TABLE table_2468961_2 (title VARCHAR, original_air_date VARCHAR) | SELECT title FROM table_2468961_2 WHERE original_air_date = "October 18, 1991" |
What is the name of the episode written by Ross Brown? | CREATE TABLE table_2468961_2 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_2468961_2 WHERE written_by = "Ross Brown" |
What episode number in the series originally aired on February 28, 1992? | CREATE TABLE table_2468961_2 (no_in_series INTEGER, original_air_date VARCHAR) | SELECT MIN(no_in_series) FROM table_2468961_2 WHERE original_air_date = "February 28, 1992" |
What date did the episode with a production code of 447004 originally air? | CREATE TABLE table_2468961_2 (original_air_date VARCHAR, production_code VARCHAR) | SELECT original_air_date FROM table_2468961_2 WHERE production_code = 447004 |
How many episodes were written by Ross brown? | CREATE TABLE table_2468961_2 (no_in_series VARCHAR, written_by VARCHAR) | SELECT COUNT(no_in_series) FROM table_2468961_2 WHERE written_by = "Ross Brown" |
What number in the series was episode 2 in the season? | CREATE TABLE table_2468961_3 (no_in_series INTEGER, no_in_season VARCHAR) | SELECT MAX(no_in_series) FROM table_2468961_3 WHERE no_in_season = 2 |
What was the title of the episode written by Bob Rosenfarb and directed by Richard Correll? | CREATE TABLE table_2468961_3 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR) | SELECT title FROM table_2468961_3 WHERE written_by = "Bob Rosenfarb" AND directed_by = "Richard Correll" |
What university was founded in 1898? | CREATE TABLE table_24697604_1 (university VARCHAR, year_founded VARCHAR) | SELECT university FROM table_24697604_1 WHERE year_founded = 1898 |
What is the maximum average associated with a total of 221902? | CREATE TABLE table_2472711_32 (average INTEGER, total VARCHAR) | SELECT MAX(average) FROM table_2472711_32 WHERE total = 221902 |
How many values of hosted have a highest value of 42659? | CREATE TABLE table_2472711_32 (hosted VARCHAR, highest VARCHAR) | SELECT COUNT(hosted) FROM table_2472711_32 WHERE highest = 42659 |
How many values of up/down have a total value of exactly 301470? | CREATE TABLE table_2472711_32 (up_down VARCHAR, total VARCHAR) | SELECT COUNT(up_down) FROM table_2472711_32 WHERE total = 301470 |
What is the up/down associated with the Subiaco Oval? | CREATE TABLE table_2472711_32 (up_down VARCHAR, venue VARCHAR) | SELECT up_down FROM table_2472711_32 WHERE venue = "Subiaco Oval" |
What team was ranked in 7th? | CREATE TABLE table_24765815_1 (team VARCHAR, rank VARCHAR) | SELECT team FROM table_24765815_1 WHERE rank = "7th" |
Which player had an opponent of Blackburn Rovers? | CREATE TABLE table_24765815_1 (player VARCHAR, opponent VARCHAR) | SELECT player FROM table_24765815_1 WHERE opponent = "Blackburn Rovers" |
What was the score for the 1st ranked team? | CREATE TABLE table_24765815_1 (score VARCHAR, rank VARCHAR) | SELECT score FROM table_24765815_1 WHERE rank = "1st" |
What was the name of the player that had a vote percentage of 7.85%? | CREATE TABLE table_24765815_1 (player VARCHAR, vote_percentage VARCHAR) | SELECT player FROM table_24765815_1 WHERE vote_percentage = "7.85%" |
What is the original airdate of the episode where the challenge was three overstuffed sandwiches? | CREATE TABLE table_24798489_1 (original_airdate VARCHAR, challenge VARCHAR) | SELECT original_airdate FROM table_24798489_1 WHERE challenge = "Three overstuffed sandwiches" |
Who was the challenge winner in the episode that originally aired on January 28, 2009? | CREATE TABLE table_24798489_1 (challenge_winner VARCHAR, original_airdate VARCHAR) | SELECT challenge_winner FROM table_24798489_1 WHERE original_airdate = "January 28, 2009" |
How many episodes had New York, New York as the location? | CREATE TABLE table_24798489_1 (episode_number VARCHAR, location VARCHAR) | SELECT COUNT(episode_number) FROM table_24798489_1 WHERE location = "New York, New York" |
What were the shots below par when the winning score was 67-64-63-71-66=331? | CREATE TABLE table_247955_2 (to_par VARCHAR, winning_score VARCHAR) | SELECT to_par FROM table_247955_2 WHERE winning_score = 67 - 64 - 63 - 71 - 66 = 331 |
What were the shots below par when the winning score was 69-66-69-64=268? | CREATE TABLE table_247955_2 (to_par VARCHAR, winning_score VARCHAR) | SELECT to_par FROM table_247955_2 WHERE winning_score = 69 - 66 - 69 - 64 = 268 |
What is the total number of to par when runner-up was Jonathan Kaye? | CREATE TABLE table_247955_2 (to_par VARCHAR, runner_s__up VARCHAR) | SELECT COUNT(to_par) FROM table_247955_2 WHERE runner_s__up = "Jonathan Kaye" |
What was the margin of victory when runner-up was K. J. Choi? | CREATE TABLE table_247955_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT margin_of_victory FROM table_247955_2 WHERE runner_s__up = "K. J. Choi" |
What was the date for no. 7? | CREATE TABLE table_247955_2 (date VARCHAR, no VARCHAR) | SELECT date FROM table_247955_2 WHERE no = 7 |
Which team had 342 total points? | CREATE TABLE table_24784769_1 (team VARCHAR, total_points VARCHAR) | SELECT team FROM table_24784769_1 WHERE total_points = 342 |
How many points did the team who had 325 total points have in round 3? | CREATE TABLE table_24784769_1 (round3 VARCHAR, total_points VARCHAR) | SELECT round3 FROM table_24784769_1 WHERE total_points = 325 |
What is the most amount of points any team had in round 4? | CREATE TABLE table_24784769_1 (round4 INTEGER) | SELECT MAX(round4) FROM table_24784769_1 |
How many points did the team who had 132 total points have in round 1? | CREATE TABLE table_24784769_1 (round1 INTEGER, total_points VARCHAR) | SELECT MAX(round1) FROM table_24784769_1 WHERE total_points = 132 |
Who did Rhein Fire play Against where 30701 people attended? | CREATE TABLE table_24786958_2 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_24786958_2 WHERE attendance = 30701 |
What week had kickoff time at 6:00 p.m.? | CREATE TABLE table_24786958_2 (week INTEGER, kickoff VARCHAR) | SELECT MIN(week) FROM table_24786958_2 WHERE kickoff = "6:00 p.m." |
Where was the game played that was on Sunday, May 27? | CREATE TABLE table_24786958_2 (game_site VARCHAR, date VARCHAR) | SELECT game_site FROM table_24786958_2 WHERE date = "Sunday, May 27" |
How many people attended the game at Jahn-sportpark? | CREATE TABLE table_24786958_2 (attendance INTEGER, game_site VARCHAR) | SELECT MIN(attendance) FROM table_24786958_2 WHERE game_site = "Jahn-Sportpark" |
How many final scores were there on the game at Amsterdam arena? | CREATE TABLE table_24786958_2 (final_score VARCHAR, game_site VARCHAR) | SELECT COUNT(final_score) FROM table_24786958_2 WHERE game_site = "Amsterdam ArenA" |
What was the group in the British Champion Stakes? | CREATE TABLE table_24850630_4 (group VARCHAR, race VARCHAR) | SELECT group FROM table_24850630_4 WHERE race = "British Champion Stakes" |
What was the weight of the jockey at Sandown Park? | CREATE TABLE table_24850630_4 (weight VARCHAR, venue VARCHAR) | SELECT weight FROM table_24850630_4 WHERE venue = "Sandown Park" |
What is the distance of the Mooresbridge Stakes race? | CREATE TABLE table_24850630_4 (distance VARCHAR, race VARCHAR) | SELECT distance FROM table_24850630_4 WHERE race = "Mooresbridge Stakes" |
who was the winner /2nd for the British Champion Stakes race? | CREATE TABLE table_24850630_4 (winner_2nd VARCHAR, race VARCHAR) | SELECT winner_2nd FROM table_24850630_4 WHERE race = "British Champion Stakes" |
The MacKinnon Stakes races took place on how many venues? | CREATE TABLE table_24850630_3 (venue VARCHAR, race VARCHAR) | SELECT COUNT(venue) FROM table_24850630_3 WHERE race = "Mackinnon Stakes" |
What is the largest average for the episode with 1.97 million Hong Kong viewers? | CREATE TABLE table_24856090_1 (average INTEGER, hk_viewers VARCHAR) | SELECT MAX(average) FROM table_24856090_1 WHERE hk_viewers = "1.97 million" |
What is the English title of the episode with 1.92 million Hong Kong viewers? | CREATE TABLE table_24856090_1 (english_title VARCHAR, hk_viewers VARCHAR) | SELECT english_title FROM table_24856090_1 WHERE hk_viewers = "1.92 million" |
What is the premiere number for the episode titled "The Mysteries of Love" in English? | CREATE TABLE table_24856090_1 (premiere INTEGER, english_title VARCHAR) | SELECT MAX(premiere) FROM table_24856090_1 WHERE english_title = "The Mysteries of Love" |
What is the Chinese name of the episode with 1.97 million Hong Kong viewers? | CREATE TABLE table_24856090_1 (chinese_title VARCHAR, hk_viewers VARCHAR) | SELECT chinese_title FROM table_24856090_1 WHERE hk_viewers = "1.97 million" |
Who was the home team when the away team was fulham? | CREATE TABLE table_24887326_7 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_24887326_7 WHERE away_team = "Fulham" |
What was the attendance of the game where Stoke city was the away team? | CREATE TABLE table_24887326_7 (attendance INTEGER, away_team VARCHAR) | SELECT MIN(attendance) FROM table_24887326_7 WHERE away_team = "Stoke City" |
When the away team is Millwall, what is the total possible amount of tie numbers? | CREATE TABLE table_24887326_7 (tie_no VARCHAR, away_team VARCHAR) | SELECT COUNT(tie_no) FROM table_24887326_7 WHERE away_team = "Millwall" |
What is the date of the game played with Birmingham City as the away team? | CREATE TABLE table_24887326_7 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_24887326_7 WHERE away_team = "Birmingham City" |
What was the airdate of episode number 18? | CREATE TABLE table_24910742_1 (original_air_date VARCHAR, no_in_season VARCHAR) | SELECT original_air_date FROM table_24910742_1 WHERE no_in_season = 18 |
What was the title of the episode having exactly 9.64 million US viewers? | CREATE TABLE table_24910742_1 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_24910742_1 WHERE us_viewers__millions_ = "9.64" |
For which jockey was the weight in kg 53.5? | CREATE TABLE table_24915874_1 (jockey VARCHAR, weight__kg_ VARCHAR) | SELECT jockey FROM table_24915874_1 WHERE weight__kg_ = "53.5" |
Who was the trainer when the jockey was Luke Nolen? | CREATE TABLE table_24915874_1 (trainer VARCHAR, jockey VARCHAR) | SELECT trainer FROM table_24915874_1 WHERE jockey = "Luke Nolen" |
What was the placing when the jockey was Damien Oliver? | CREATE TABLE table_24915874_1 (placing VARCHAR, jockey VARCHAR) | SELECT placing FROM table_24915874_1 WHERE jockey = "Damien Oliver" |
What was the placing when the weight in kg was 58.0? | CREATE TABLE table_24915874_1 (placing VARCHAR, weight__kg_ VARCHAR) | SELECT placing FROM table_24915874_1 WHERE weight__kg_ = "58.0" |
Who was the horse when the jockey was Peter Wells? | CREATE TABLE table_24915874_1 (horse VARCHAR, jockey VARCHAR) | SELECT horse FROM table_24915874_1 WHERE jockey = "Peter Wells" |
What was the weight in kg when the horse was Alcopop? | CREATE TABLE table_24915874_1 (weight__kg_ VARCHAR, horse VARCHAR) | SELECT weight__kg_ FROM table_24915874_1 WHERE horse = "Alcopop" |
How many weeks are teams playing agains the Barcelona dragons? | CREATE TABLE table_24918268_2 (week VARCHAR, opponent VARCHAR) | SELECT COUNT(week) FROM table_24918268_2 WHERE opponent = "Barcelona Dragons" |
What was the score for the game that kicked off at 6:00 p.m.? | CREATE TABLE table_24918268_2 (final_score VARCHAR, kickoff VARCHAR) | SELECT final_score FROM table_24918268_2 WHERE kickoff = "6:00 p.m." |
Who are the opponents for games on Sunday, June 9? | CREATE TABLE table_24918268_2 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_24918268_2 WHERE date = "Sunday, June 9" |
Name the fat for protein being 4 and calories 80 | CREATE TABLE table_2493389_1 (fat__g_ VARCHAR, protein__g_ VARCHAR, calories__1_tbsp__ VARCHAR) | SELECT fat__g_ FROM table_2493389_1 WHERE protein__g_ = "4" AND calories__1_tbsp__ = 80 |
Name the number of butters for 3 protein | CREATE TABLE table_2493389_1 (butter VARCHAR, protein__g_ VARCHAR) | SELECT COUNT(butter) FROM table_2493389_1 WHERE protein__g_ = "3" |
Name the calcium for fat being 6.5 | CREATE TABLE table_2493389_1 (calcium__mg_ VARCHAR, fat__g_ VARCHAR) | SELECT calcium__mg_ FROM table_2493389_1 WHERE fat__g_ = "6.5" |
How many counties have a place name of Macedonia? | CREATE TABLE table_249512_2 (a_ VARCHAR, county_ies__ VARCHAR, place_name VARCHAR) | SELECT COUNT(county_ies__)[a_] FROM table_249512_2 WHERE place_name = "Macedonia" |
What is the number of land areas that have a place name of Ballplay? | CREATE TABLE table_249512_2 (land_area__2010_ VARCHAR, place_name VARCHAR) | SELECT COUNT(land_area__2010_) FROM table_249512_2 WHERE place_name = "Ballplay" |
What is the minimum 2010 population of Edgewater? | CREATE TABLE table_249512_2 (population__2010_ INTEGER, place_name VARCHAR) | SELECT MIN(population__2010_) FROM table_249512_2 WHERE place_name = "Edgewater" |
What is the lowest 09-10 i/o best? | CREATE TABLE table_24990183_5 (Id VARCHAR) | SELECT MIN(09 AS _10_i_o_best) FROM table_24990183_5 |
Which country is akiko suzuki from? | CREATE TABLE table_24990183_5 (country VARCHAR, name VARCHAR) | SELECT country FROM table_24990183_5 WHERE name = "Akiko Suzuki" |
What was the 08-09 i/o best of the player with 1386 points? | CREATE TABLE table_24990183_5 (ws_points VARCHAR) | SELECT 08 AS _09_i_o_best FROM table_24990183_5 WHERE ws_points = 1386 |
What was the 09-10 oi best of the player with 949 points? | CREATE TABLE table_24990183_5 (ws_points VARCHAR) | SELECT COUNT(09 AS _10_oi_best) FROM table_24990183_5 WHERE ws_points = 949 |
Who was the player from georgia? | CREATE TABLE table_24990183_5 (name VARCHAR, country VARCHAR) | SELECT name FROM table_24990183_5 WHERE country = "Georgia" |
When tracy reid is the player what is the highest amount of minutes? | CREATE TABLE table_25016555_5 (minutes INTEGER, player VARCHAR) | SELECT MAX(minutes) FROM table_25016555_5 WHERE player = "Tracy Reid" |
What is the lowest overall amount of assists? | CREATE TABLE table_25016555_5 (assists INTEGER) | SELECT MIN(assists) FROM table_25016555_5 |
When sandy brondello is the player what is the lowest amount of minutes? | CREATE TABLE table_25016555_5 (minutes INTEGER, player VARCHAR) | SELECT MIN(minutes) FROM table_25016555_5 WHERE player = "Sandy Brondello" |
When 21 is the number of assists how many sets of blocks are there? | CREATE TABLE table_25016555_5 (blocks VARCHAR, assists VARCHAR) | SELECT COUNT(blocks) FROM table_25016555_5 WHERE assists = 21 |
When 2010 is the first elected and Florida 7 is the district who are the candidates? | CREATE TABLE table_25030512_12 (candidates VARCHAR, district VARCHAR, first_elected VARCHAR) | SELECT candidates FROM table_25030512_12 WHERE district = "Florida 7" AND first_elected = "2010" |
When bill young redistricted from the 10th district is the incumbent what is the party? | CREATE TABLE table_25030512_12 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_25030512_12 WHERE incumbent = "Bill Young Redistricted from the 10th district" |
When dennis ross (r) unopposed is the candidate what is the party? | CREATE TABLE table_25030512_12 (party VARCHAR, candidates VARCHAR) | SELECT party FROM table_25030512_12 WHERE candidates = "Dennis Ross (R) unopposed" |
When none (new seat) is the first elected who are the candidates? | CREATE TABLE table_25030512_12 (candidates VARCHAR, first_elected VARCHAR) | SELECT candidates FROM table_25030512_12 WHERE first_elected = "None (New seat)" |
How many millions of people watched the episode with a production code of icec483x? | CREATE TABLE table_2501754_4 (viewing_figures_millions VARCHAR, prod_code VARCHAR) | SELECT viewing_figures_millions FROM table_2501754_4 WHERE prod_code = "ICEC483X" |
What is the lowest episode number? | CREATE TABLE table_2501754_4 (episode__number INTEGER) | SELECT MIN(episode__number) FROM table_2501754_4 |
What is the lowest episode number with 6.19 million viewers and a production code of icec487y? | CREATE TABLE table_2501754_4 (episode__number INTEGER, viewing_figures_millions VARCHAR, prod_code VARCHAR) | SELECT MIN(episode__number) FROM table_2501754_4 WHERE viewing_figures_millions = "6.19" AND prod_code = "ICEC487Y" |
List the production code for the episode had 5.55 million viewers? | CREATE TABLE table_2501754_3 (prod_code VARCHAR, viewing_figures_millions VARCHAR) | SELECT prod_code FROM table_2501754_3 WHERE viewing_figures_millions = "5.55" |
List the 1st air date for the episode with a iceb786e production code. | CREATE TABLE table_2501754_3 (original_airdate VARCHAR, prod_code VARCHAR) | SELECT original_airdate FROM table_2501754_3 WHERE prod_code = "ICEB786E" |
Name the party for 1998 first elected | CREATE TABLE table_25030512_24 (party VARCHAR, first_elected VARCHAR) | SELECT party FROM table_25030512_24 WHERE first_elected = "1998" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.