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