answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT COUNT(club) FROM table_27293285_4 WHERE lost = "16" | CREATE TABLE table_27293285_4 (club VARCHAR, lost VARCHAR) | Name the total number of club for lost being 16 |
SELECT drawn FROM table_27293285_4 WHERE lost = "5" AND tries_for = "89" | CREATE TABLE table_27293285_4 (drawn VARCHAR, lost VARCHAR, tries_for VARCHAR) | Name the drawn for lost being 5 and tries for 89 |
SELECT won FROM table_27293285_4 WHERE played = "22" AND lost = "15" AND points_against = "511" | CREATE TABLE table_27293285_4 (won VARCHAR, points_against VARCHAR, played VARCHAR, lost VARCHAR) | Name the won for played being 22 and points against 511 and lost being 15 |
SELECT aorist FROM table_27298240_26 WHERE present = "bude" | CREATE TABLE table_27298240_26 (aorist VARCHAR, present VARCHAR) | What aorist has bude in present tense? |
SELECT aorist FROM table_27298240_26 WHERE imperfect = "bijasmo / bejasmo / besmo" | CREATE TABLE table_27298240_26 (aorist VARCHAR, imperfect VARCHAR) | Which aorist has imperfect form of bijasmo / bejasmo / besmo? |
SELECT pluperfect FROM table_27298240_26 WHERE perfect = "si bio/la; bio/la si" | CREATE TABLE table_27298240_26 (pluperfect VARCHAR, perfect VARCHAR) | What is the pluperfect for the perfect si bio/la; bio/la si? |
SELECT event FROM table_27294107_11 WHERE round_of_32 = "Suárez ( TRI ) W 16–6" | CREATE TABLE table_27294107_11 (event VARCHAR, round_of_32 VARCHAR) | What was the event when suárez ( tri ) w 16–6 was round of 32? |
SELECT semifinals FROM table_27294107_11 WHERE event = "Light flyweight" | CREATE TABLE table_27294107_11 (semifinals VARCHAR, event VARCHAR) | What is the semifinals for the light flyweight event? |
SELECT COUNT(semifinals) FROM table_27294107_11 WHERE athlete = "Ferhat Pehlivan" | CREATE TABLE table_27294107_11 (semifinals VARCHAR, athlete VARCHAR) | How many semifinals did ferhat pehlivan attend? |
SELECT round_of_32 FROM table_27294107_11 WHERE round_of_16 = "Drenovak ( SRB ) W 20–11" | CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, round_of_16 VARCHAR) | What is the round of 32 if the round of 16 is drenovak ( srb ) w 20–11? |
SELECT round_of_32 FROM table_27294107_11 WHERE athlete = "Yakup Şener" | CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, athlete VARCHAR) | When yakup şener is the athlete what is the round of 32? |
SELECT round_of_32 FROM table_27294107_11 WHERE athlete = "Fatih Keleş" | CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, athlete VARCHAR) | What is the round of 32 for fatih keleş? |
SELECT 1 AS st FROM table_27298240_28 WHERE present = "mogu" | CREATE TABLE table_27298240_28 (present VARCHAR) | What is in 1st place when present is mogu? |
SELECT 2 AS nd FROM table_27298240_28 WHERE pronoun = "vi (you pl.)" | CREATE TABLE table_27298240_28 (pronoun VARCHAR) | what is 2nd when the pronoun is vi (you pl.)? |
SELECT r FROM table WHERE total = 1 AND position = "FW" | CREATE TABLE table (r VARCHAR, total VARCHAR, position VARCHAR) | What is the R when the total is 1 and the position is fw? |
SELECT MIN(league_cup) FROM table | CREATE TABLE table (league_cup INTEGER) | What is the lowest league cup? |
SELECT position FROM table WHERE player = Becchio | CREATE TABLE table (position VARCHAR, player VARCHAR, Becchio VARCHAR) | What is the position for the player becchio? |
SELECT COUNT(league_cup) FROM table WHERE r = 4 | CREATE TABLE table (league_cup VARCHAR, r VARCHAR) | How many times was the r 4? |
SELECT parent FROM table_2731431_1 WHERE peak = "Cima Tosa" | CREATE TABLE table_2731431_1 (parent VARCHAR, peak VARCHAR) | What is the parent for peak cima tosa? |
SELECT MIN(elevation__m_) FROM table_2731431_1 WHERE location = "Austria" AND peak = "Wildspitze" | CREATE TABLE table_2731431_1 (elevation__m_ INTEGER, location VARCHAR, peak VARCHAR) | What is the elevation for the peak wildspitze in Austria? |
SELECT MAX(elevation__m_) FROM table_2731431_1 WHERE no = 39 | CREATE TABLE table_2731431_1 (elevation__m_ INTEGER, no VARCHAR) | What is the elevation for number 39? |
SELECT col_location FROM table_2731431_1 WHERE location = "France / Italy" | CREATE TABLE table_2731431_1 (col_location VARCHAR, location VARCHAR) | What is the col location for the location of france / italy? |
SELECT col_location FROM table_2731431_1 WHERE col_height__m_ = 1107 | CREATE TABLE table_2731431_1 (col_location VARCHAR, col_height__m_ VARCHAR) | What is the col location with a col height (m) of 1107? |
SELECT location FROM table_2731431_1 WHERE elevation__m_ = 3798 | CREATE TABLE table_2731431_1 (location VARCHAR, elevation__m_ VARCHAR) | Which location has an elevation of 3798? |
SELECT title FROM table_27303975_3 WHERE catalog_number = "CAL01 / 0091037137319" | CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR) | What is the title when the catalog number is cal01 / 0091037137319? |
SELECT COUNT(studio) FROM table_27303975_3 WHERE title = "AM/PM Callanetics" | CREATE TABLE table_27303975_3 (studio VARCHAR, title VARCHAR) | How many times is the title am/pm callanetics? |
SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546" | CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR) | How many times was the catalog number cal04 / 0091037553546? |
SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546" | CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR) | how many times was the catalog number cal04 / 0091037553546? |
SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL01 / 0091037137319" | CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR) | how many times was the catalog number cal01 / 0091037137319? |
SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = "CAL05 / 0091037137357" | CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR) | how many times was the catalog number cal05 / 0091037137357? |
SELECT directed_by FROM table_27332038_1 WHERE written_by = "Elaine Ko" | CREATE TABLE table_27332038_1 (directed_by VARCHAR, written_by VARCHAR) | who directed the episode that elaine ko wrote? |
SELECT original_air_date FROM table_27332038_1 WHERE production_code = "2ARG01" | CREATE TABLE table_27332038_1 (original_air_date VARCHAR, production_code VARCHAR) | when was the episode with production code "2arg01" originally aired? |
SELECT title FROM table_27332038_1 WHERE production_code = "2ARG09" | CREATE TABLE table_27332038_1 (title VARCHAR, production_code VARCHAR) | what is the title of the episode with production code "2arg09"? |
SELECT original_air_date FROM table_27332038_1 WHERE production_code = "2ARG24" | CREATE TABLE table_27332038_1 (original_air_date VARCHAR, production_code VARCHAR) | when was the episode with production code "2arg24" originally aired? |
SELECT episode FROM table_27319183_7 WHERE share___percentage_ = "41.5" | CREATE TABLE table_27319183_7 (episode VARCHAR, share___percentage_ VARCHAR) | What episode had a share percentage of 41.5%? |
SELECT date FROM table_27319183_7 WHERE weekly_rank = 12 | CREATE TABLE table_27319183_7 (date VARCHAR, weekly_rank VARCHAR) | What date was the show's weekly ranking 12? |
SELECT total_itv_viewers__millions_ FROM table_27319183_7 WHERE official_itv_rating__millions_ = "10.24" | CREATE TABLE table_27319183_7 (total_itv_viewers__millions_ VARCHAR, official_itv_rating__millions_ VARCHAR) | How many total itv viewers were there for the episode with official itv ratings of 10.24 million? |
SELECT total_itv_viewers__millions_ FROM table_27319183_7 WHERE official_itv_hd_rating__millions_ = "1.12" | CREATE TABLE table_27319183_7 (total_itv_viewers__millions_ VARCHAR, official_itv_hd_rating__millions_ VARCHAR) | How many total itv viewers were there for the episode with official itv hd ratings of 1.12 million? |
SELECT official_itv_rating__millions_ FROM table_27319183_7 WHERE total_itv_viewers__millions_ = "8.53" | CREATE TABLE table_27319183_7 (official_itv_rating__millions_ VARCHAR, total_itv_viewers__millions_ VARCHAR) | What were the official itv ratings in millions for the episode with a total of 8.53 million itv viewers |
SELECT official_itv_rating__millions_ FROM table_27319183_7 WHERE episode = "Semi-final 5" | CREATE TABLE table_27319183_7 (official_itv_rating__millions_ VARCHAR, episode VARCHAR) | What were the official itv ratings in millions for semi-final 5? |
SELECT club FROM table_27374004_2 WHERE chairman = "Roger Lambrecht" | CREATE TABLE table_27374004_2 (club VARCHAR, chairman VARCHAR) | What is the club when the chairman is roger lambrecht? |
SELECT team_captain FROM table_27374004_2 WHERE shirt_sponsor = "Quick" | CREATE TABLE table_27374004_2 (team_captain VARCHAR, shirt_sponsor VARCHAR) | What is the team captain when the shirt sponser is quick? |
SELECT chairman FROM table_27374004_2 WHERE current_manager = "Bob Peeters" | CREATE TABLE table_27374004_2 (chairman VARCHAR, current_manager VARCHAR) | Who is the chairman when the current manager is bob peeters? |
SELECT club FROM table_27374004_2 WHERE shirt_sponsor = "e-lotto.be" | CREATE TABLE table_27374004_2 (club VARCHAR, shirt_sponsor VARCHAR) | What is the club when the shirt sponsor is e-lotto.be? |
SELECT team_captain FROM table_27374004_2 WHERE club = "K.F.C. Germinal Beerschot" | CREATE TABLE table_27374004_2 (team_captain VARCHAR, club VARCHAR) | Who is the team captain when the club is k.f.c. germinal beerschot? |
SELECT varsity_name FROM table_27369069_4 WHERE university = "McGill university" | CREATE TABLE table_27369069_4 (varsity_name VARCHAR, university VARCHAR) | What is the varsity name of the university of mcgill university? |
SELECT soccer_stadium FROM table_27369069_4 WHERE varsity_name = "Citadins" | CREATE TABLE table_27369069_4 (soccer_stadium VARCHAR, varsity_name VARCHAR) | What is the soccer stadium with the varsity name is citadins? |
SELECT province FROM table_27369069_4 WHERE soccer_stadium = "terrain #2 of Complexe sportif Claude-Robillard" | CREATE TABLE table_27369069_4 (province VARCHAR, soccer_stadium VARCHAR) | What is the province where the soccer statium is terrain #2 of complexe sportif claude-robillard? |
SELECT province FROM table_27369069_4 WHERE stadium_capacity = 5100 | CREATE TABLE table_27369069_4 (province VARCHAR, stadium_capacity VARCHAR) | What is the province for with the stadium capacity of 5100? |
SELECT university FROM table_27369069_4 WHERE soccer_stadium = "terrain #2 of Complexe sportif Claude-Robillard" | CREATE TABLE table_27369069_4 (university VARCHAR, soccer_stadium VARCHAR) | What is the university where the soccer stadium is terrain #2 of complexe sportif claude-robillard? |
SELECT date_of_appointment FROM table_27374004_4 WHERE replaced_by = "Hugo Broos" | CREATE TABLE table_27374004_4 (date_of_appointment VARCHAR, replaced_by VARCHAR) | When was the date of appointment by Hugo Broos? |
SELECT COUNT(date_of_vacancy) FROM table_27374004_4 WHERE outgoing_manager = "Bart De Roover" | CREATE TABLE table_27374004_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) | How many times did outgoing manager Bart de Roover vacated a position? |
SELECT outgoing_manager FROM table_27374004_4 WHERE manner_of_departure = "Sacked" AND position_in_table = "15th" | CREATE TABLE table_27374004_4 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR) | Who was the outgoing manager of the team in 15th position that was sacked? |
SELECT position_in_table FROM table_27374004_4 WHERE outgoing_manager = "Danny Ost" | CREATE TABLE table_27374004_4 (position_in_table VARCHAR, outgoing_manager VARCHAR) | What was the team's position in table when Danny OST was the outgoing manager? |
SELECT MAX(_number) FROM table_27374740_2 WHERE viewers__m_ = "8.01" | CREATE TABLE table_27374740_2 (_number INTEGER, viewers__m_ VARCHAR) | how many maximum # when viewers (m) is 8.01 |
SELECT COUNT(outgoing_manager) FROM table_27374004_3 WHERE replaced_by = "Bob Peeters" | CREATE TABLE table_27374004_3 (outgoing_manager VARCHAR, replaced_by VARCHAR) | How many outgoing managers were replaced by Bob Peeters? |
SELECT replaced_by FROM table_27374004_3 WHERE outgoing_manager = "Michel Preud'homme" | CREATE TABLE table_27374004_3 (replaced_by VARCHAR, outgoing_manager VARCHAR) | Who replaced Michel Preud'homme? |
SELECT manner_of_departure FROM table_27374004_3 WHERE team = "Cercle Brugge" | CREATE TABLE table_27374004_3 (manner_of_departure VARCHAR, team VARCHAR) | What was the manner of departure for the manager of Cercle Brugge? |
SELECT outgoing_manager FROM table_27374004_3 WHERE team = "Charleroi" | CREATE TABLE table_27374004_3 (outgoing_manager VARCHAR, team VARCHAR) | Who was the outgoing manager of Charleroi? |
SELECT shirt_sponsor FROM table_27383390_2 WHERE head_coach = "Samad Marfavi" | CREATE TABLE table_27383390_2 (shirt_sponsor VARCHAR, head_coach VARCHAR) | What sponsor has the head coach Samad Marfavi? |
SELECT team FROM table_27383390_2 WHERE head_coach = "Ali Daei" | CREATE TABLE table_27383390_2 (team VARCHAR, head_coach VARCHAR) | Which team has Ali Daei as head coach? |
SELECT kit_maker FROM table_27383390_2 WHERE team = "Foolad" | CREATE TABLE table_27383390_2 (kit_maker VARCHAR, team VARCHAR) | What is the kit maker for team foolad? |
SELECT outgoing_head_coach FROM table_27383390_4 WHERE incoming_head_coach = "Abdollah Veysi" | CREATE TABLE table_27383390_4 (outgoing_head_coach VARCHAR, incoming_head_coach VARCHAR) | Who is the outgoing head coach when the incoming head coach is abdollah veysi? |
SELECT date_of_appointment FROM table_27383390_4 WHERE position_in_table = 16 | CREATE TABLE table_27383390_4 (date_of_appointment VARCHAR, position_in_table VARCHAR) | When is the date of appointment when the position in table is 16? |
SELECT COUNT(team) FROM table_27383390_4 WHERE incoming_head_coach = "Abdollah Veysi" | CREATE TABLE table_27383390_4 (team VARCHAR, incoming_head_coach VARCHAR) | How many times is the incoming head coach abdollah veysi? |
SELECT team FROM table_27383390_4 WHERE date_of_vacancy = "8 Dec 2010" | CREATE TABLE table_27383390_4 (team VARCHAR, date_of_vacancy VARCHAR) | What is the team with the date of vacancy 8 dec 2010? |
SELECT manner_of_departure FROM table_27383390_4 WHERE incoming_head_coach = "Mohammad Khakpour" | CREATE TABLE table_27383390_4 (manner_of_departure VARCHAR, incoming_head_coach VARCHAR) | What is the manner of departure when the incoming head coach is mohammad khakpour? |
SELECT original_air_date FROM table_27389024_2 WHERE written_by = "Rama Stagner" | CREATE TABLE table_27389024_2 (original_air_date VARCHAR, written_by VARCHAR) | What is the original air date of the episode that was written by Rama Stagner? |
SELECT MAX(pos) FROM table_27396005_2 WHERE car = 19 | CREATE TABLE table_27396005_2 (pos INTEGER, car VARCHAR) | For the #19 car, what was their finish position? |
SELECT COUNT(constructor) FROM table_27396005_2 WHERE grid = 13 | CREATE TABLE table_27396005_2 (constructor VARCHAR, grid VARCHAR) | How many constructors had a grid of 13? |
SELECT MAX(pos) FROM table_27396005_2 WHERE constructor = "Joe Gibbs Racing" AND driver = "Denny Hamlin" | CREATE TABLE table_27396005_2 (pos INTEGER, constructor VARCHAR, driver VARCHAR) | What was the maximum finish position of the car whose constructor was Joe Gibbs Racing, driven by Denny Hamlin? |
SELECT title FROM table_27397948_2 WHERE no_in_series = 57 | CREATE TABLE table_27397948_2 (title VARCHAR, no_in_series VARCHAR) | List all titles with a 57 series number. |
SELECT MAX(no_in_season) FROM table_27397948_2 WHERE no_in_series = 47 | CREATE TABLE table_27397948_2 (no_in_season INTEGER, no_in_series VARCHAR) | What's the highest season number with a series number of 47? |
SELECT written_by FROM table_27397948_2 WHERE no_in_season = 7 | CREATE TABLE table_27397948_2 (written_by VARCHAR, no_in_season VARCHAR) | Who was the writer for season episode 7? |
SELECT directed_by FROM table_27401228_1 WHERE us_viewers__million_ = "5.86" | CREATE TABLE table_27401228_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) | Name who directed when the viewers is 5.86 |
SELECT location FROM table_27409644_1 WHERE club = "Lootos Põlva" | CREATE TABLE table_27409644_1 (location VARCHAR, club VARCHAR) | Where is lootos põlva from? |
SELECT manager FROM table_27409644_1 WHERE club = "Lootos Põlva" | CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR) | Who is the manager for lootos põlva? |
SELECT location FROM table_27409644_1 WHERE ground = "Lootospark" | CREATE TABLE table_27409644_1 (location VARCHAR, ground VARCHAR) | Where is lootospark from? |
SELECT manager FROM table_27409644_1 WHERE club = "Pärnu" | CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR) | Who is the pärnu manager? |
SELECT location FROM table_27409644_1 WHERE manager = "Richard Barnwell" | CREATE TABLE table_27409644_1 (location VARCHAR, manager VARCHAR) | Where is the team that is managed by richard barnwell from? |
SELECT ground FROM table_27409644_1 WHERE club = "Flora Tallinn" | CREATE TABLE table_27409644_1 (ground VARCHAR, club VARCHAR) | What is the home location for team flora tallinn? |
SELECT us_viewers__million_ FROM table_27403436_1 WHERE written_by = "Shana Goldberg-Meehan & Greg Malins" | CREATE TABLE table_27403436_1 (us_viewers__million_ VARCHAR, written_by VARCHAR) | How many viewers watched the episode written by shana goldberg-meehan & greg malins? |
SELECT no FROM table_27403436_1 WHERE production_code = "2J5809" | CREATE TABLE table_27403436_1 (no VARCHAR, production_code VARCHAR) | which number lists the production code as 2j5809 |
SELECT position FROM table_274117_5 WHERE player = "Bob Lilly" | CREATE TABLE table_274117_5 (position VARCHAR, player VARCHAR) | What position was Bob Lilly? |
SELECT seasons_by_team FROM table_274117_5 WHERE position = "OL" AND number = 11 | CREATE TABLE table_274117_5 (seasons_by_team VARCHAR, position VARCHAR, number VARCHAR) | What are seasons by team for Pro Bowl appearances of the player who was an OL and had 11 appearances? |
SELECT position FROM table_274117_5 WHERE year_of_induction_into_pro_football_hall_of_fame = "1980" | CREATE TABLE table_274117_5 (position VARCHAR, year_of_induction_into_pro_football_hall_of_fame VARCHAR) | What position was the player who was inducted into the Pro Football Hall of Fame in 1980? |
SELECT year_of_induction_into_pro_football_hall_of_fame FROM table_274117_5 WHERE player = "Will Shields" | CREATE TABLE table_274117_5 (year_of_induction_into_pro_football_hall_of_fame VARCHAR, player VARCHAR) | When was Will Shields inducted into the Pro Football Hall of Fame? |
SELECT MIN(number) FROM table_274117_5 | CREATE TABLE table_274117_5 (number INTEGER) | What is the fewest amount of Pro Bowl appearances any of the players had? |
SELECT live_births_per_year FROM table_27434_2 WHERE life_expectancy_total = "65.1" | CREATE TABLE table_27434_2 (live_births_per_year VARCHAR, life_expectancy_total VARCHAR) | How many live births per year do people with a life expectancy of 65.1 have? |
SELECT period FROM table_27434_2 WHERE life_expectancy_total = "62.4" | CREATE TABLE table_27434_2 (period VARCHAR, life_expectancy_total VARCHAR) | What period was the life expectancy at 62.4? |
SELECT COUNT(year) FROM table_27435931_1 WHERE continent = "Australia/Oceania" | CREATE TABLE table_27435931_1 (year VARCHAR, continent VARCHAR) | In what year is australia/oceania listed? |
SELECT elevation_m FROM table_27435931_1 WHERE year = "September 2009" | CREATE TABLE table_27435931_1 (elevation_m VARCHAR, year VARCHAR) | what was the elevation in september 2009? |
SELECT continent FROM table_27435931_1 WHERE country = "Russia" | CREATE TABLE table_27435931_1 (continent VARCHAR, country VARCHAR) | what is the continent in which the country russia is listed? |
SELECT MIN(elevation_ft) FROM table_27435931_1 WHERE year = "April 2006" | CREATE TABLE table_27435931_1 (elevation_ft INTEGER, year VARCHAR) | what was the lowest elevation in april 2006? |
SELECT COUNT(elevation_ft) FROM table_27435931_1 WHERE country = "Tanzania" | CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, country VARCHAR) | what is elevation of tanzania? |
SELECT elevation_ft FROM table_27435931_1 WHERE continent = "South America" | CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, continent VARCHAR) | what is the elevation of south america? |
SELECT no_in_season FROM table_27437601_2 WHERE directed_by = "Brad Tanenbaum" AND no_in_series > 241.0 | CREATE TABLE table_27437601_2 (no_in_season VARCHAR, directed_by VARCHAR, no_in_series VARCHAR) | List the season above 241.0 that was handled by brad tanenbaum. |
SELECT original_air_date FROM table_27437601_2 WHERE no_in_season = 12 | CREATE TABLE table_27437601_2 (original_air_date VARCHAR, no_in_season VARCHAR) | List the 1st air date for season 12. |
SELECT COUNT(no_in_series) FROM table_27437601_2 WHERE no_in_season = 12 | CREATE TABLE table_27437601_2 (no_in_series VARCHAR, no_in_season VARCHAR) | List the series number for season 12. |
SELECT COUNT(year) FROM table_27441210_13 WHERE country = "Belgium" | CREATE TABLE table_27441210_13 (year VARCHAR, country VARCHAR) | How many years was the country Belgium? |
Subsets and Splits