question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
name the podiums for start of 22
CREATE TABLE table_2725949_6 (podiums VARCHAR, starts VARCHAR)
SELECT podiums FROM table_2725949_6 WHERE starts = 22
### Context: CREATE TABLE table_2725949_6 (podiums VARCHAR, starts VARCHAR) ### Question: name the podiums for start of 22 ### Answer: SELECT podiums FROM table_2725949_6 WHERE starts = 22
Name the number of poles for fastest laps being 6
CREATE TABLE table_2725949_6 (poles VARCHAR, fastest_laps VARCHAR)
SELECT COUNT(poles) FROM table_2725949_6 WHERE fastest_laps = 6
### Context: CREATE TABLE table_2725949_6 (poles VARCHAR, fastest_laps VARCHAR) ### Question: Name the number of poles for fastest laps being 6 ### Answer: SELECT COUNT(poles) FROM table_2725949_6 WHERE fastest_laps = 6
Name the least podiums for 2009
CREATE TABLE table_2725949_6 (podiums INTEGER, season VARCHAR)
SELECT MIN(podiums) FROM table_2725949_6 WHERE season = 2009
### Context: CREATE TABLE table_2725949_6 (podiums INTEGER, season VARCHAR) ### Question: Name the least podiums for 2009 ### Answer: SELECT MIN(podiums) FROM table_2725949_6 WHERE season = 2009
Name the starts for 2009
CREATE TABLE table_2725949_6 (starts VARCHAR, season VARCHAR)
SELECT starts FROM table_2725949_6 WHERE season = 2009
### Context: CREATE TABLE table_2725949_6 (starts VARCHAR, season VARCHAR) ### Question: Name the starts for 2009 ### Answer: SELECT starts FROM table_2725949_6 WHERE season = 2009
Name the most starts for 6 wins
CREATE TABLE table_2725949_6 (starts INTEGER, wins VARCHAR)
SELECT MAX(starts) FROM table_2725949_6 WHERE wins = 6
### Context: CREATE TABLE table_2725949_6 (starts INTEGER, wins VARCHAR) ### Question: Name the most starts for 6 wins ### Answer: SELECT MAX(starts) FROM table_2725949_6 WHERE wins = 6
How many matches were wickets 16?
CREATE TABLE table_27268238_5 (matches VARCHAR, wickets VARCHAR)
SELECT COUNT(matches) FROM table_27268238_5 WHERE wickets = 16
### Context: CREATE TABLE table_27268238_5 (matches VARCHAR, wickets VARCHAR) ### Question: How many matches were wickets 16? ### Answer: SELECT COUNT(matches) FROM table_27268238_5 WHERE wickets = 16
What is the lowest wickets?
CREATE TABLE table_27268238_5 (wickets INTEGER)
SELECT MIN(wickets) FROM table_27268238_5
### Context: CREATE TABLE table_27268238_5 (wickets INTEGER) ### Question: What is the lowest wickets? ### Answer: SELECT MIN(wickets) FROM table_27268238_5
What is the 4wi when the economy is 7.82?
CREATE TABLE table_27268238_5 (economy VARCHAR)
SELECT 4 AS wi FROM table_27268238_5 WHERE economy = "7.82"
### Context: CREATE TABLE table_27268238_5 (economy VARCHAR) ### Question: What is the 4wi when the economy is 7.82? ### Answer: SELECT 4 AS wi FROM table_27268238_5 WHERE economy = "7.82"
Who is the player when the bbi is 5/27?
CREATE TABLE table_27268238_5 (player VARCHAR, bbi VARCHAR)
SELECT player FROM table_27268238_5 WHERE bbi = "5/27"
### Context: CREATE TABLE table_27268238_5 (player VARCHAR, bbi VARCHAR) ### Question: Who is the player when the bbi is 5/27? ### Answer: SELECT player FROM table_27268238_5 WHERE bbi = "5/27"
What is the team when the economy is 5.73?
CREATE TABLE table_27268238_5 (team VARCHAR, economy VARCHAR)
SELECT team FROM table_27268238_5 WHERE economy = "5.73"
### Context: CREATE TABLE table_27268238_5 (team VARCHAR, economy VARCHAR) ### Question: What is the team when the economy is 5.73? ### Answer: SELECT team FROM table_27268238_5 WHERE economy = "5.73"
When Denizli was the province, what was the total number of valid votes?
CREATE TABLE table_27274222_2 (valid_votes VARCHAR, province VARCHAR)
SELECT COUNT(valid_votes) FROM table_27274222_2 WHERE province = "Denizli"
### Context: CREATE TABLE table_27274222_2 (valid_votes VARCHAR, province VARCHAR) ### Question: When Denizli was the province, what was the total number of valid votes? ### Answer: SELECT COUNT(valid_votes) FROM table_27274222_2 WHERE province = "Denizli"
What province had a turnout of 54.09%?
CREATE TABLE table_27274222_2 (province VARCHAR, turnout___percentage_ VARCHAR)
SELECT province FROM table_27274222_2 WHERE turnout___percentage_ = "54.09"
### Context: CREATE TABLE table_27274222_2 (province VARCHAR, turnout___percentage_ VARCHAR) ### Question: What province had a turnout of 54.09%? ### Answer: SELECT province FROM table_27274222_2 WHERE turnout___percentage_ = "54.09"
What is the model number for the order part numbered tmrm75dam22gg?
CREATE TABLE table_27277284_28 (model_number VARCHAR, order_part_number VARCHAR)
SELECT model_number FROM table_27277284_28 WHERE order_part_number = "TMRM75DAM22GG"
### Context: CREATE TABLE table_27277284_28 (model_number VARCHAR, order_part_number VARCHAR) ### Question: What is the model number for the order part numbered tmrm75dam22gg? ### Answer: SELECT model_number FROM table_27277284_28 WHERE order_part_number = "TMRM75DAM22GG"
What is the oder part number for the model with 10x mult. 1?
CREATE TABLE table_27277284_28 (order_part_number VARCHAR, mult_1 VARCHAR)
SELECT order_part_number FROM table_27277284_28 WHERE mult_1 = "10x"
### Context: CREATE TABLE table_27277284_28 (order_part_number VARCHAR, mult_1 VARCHAR) ### Question: What is the oder part number for the model with 10x mult. 1? ### Answer: SELECT order_part_number FROM table_27277284_28 WHERE mult_1 = "10x"
How much ht does the model with 10x mult. 1 have?
CREATE TABLE table_27277284_28 (ht VARCHAR, mult_1 VARCHAR)
SELECT ht FROM table_27277284_28 WHERE mult_1 = "10x"
### Context: CREATE TABLE table_27277284_28 (ht VARCHAR, mult_1 VARCHAR) ### Question: How much ht does the model with 10x mult. 1 have? ### Answer: SELECT ht FROM table_27277284_28 WHERE mult_1 = "10x"
What's the ht for the model released on June 4, 2008?
CREATE TABLE table_27277284_28 (ht VARCHAR, release_date VARCHAR)
SELECT ht FROM table_27277284_28 WHERE release_date = "June 4, 2008"
### Context: CREATE TABLE table_27277284_28 (ht VARCHAR, release_date VARCHAR) ### Question: What's the ht for the model released on June 4, 2008? ### Answer: SELECT ht FROM table_27277284_28 WHERE release_date = "June 4, 2008"
How many pole position achieved 0 points from Mexico?
CREATE TABLE table_27279050_1 (poles VARCHAR, points VARCHAR, nation VARCHAR)
SELECT COUNT(poles) FROM table_27279050_1 WHERE points = "0" AND nation = "Mexico"
### Context: CREATE TABLE table_27279050_1 (poles VARCHAR, points VARCHAR, nation VARCHAR) ### Question: How many pole position achieved 0 points from Mexico? ### Answer: SELECT COUNT(poles) FROM table_27279050_1 WHERE points = "0" AND nation = "Mexico"
Name the vcore for multi 11x
CREATE TABLE table_27277284_8 (v_core VARCHAR, mult_1 VARCHAR)
SELECT v_core FROM table_27277284_8 WHERE mult_1 = "11x"
### Context: CREATE TABLE table_27277284_8 (v_core VARCHAR, mult_1 VARCHAR) ### Question: Name the vcore for multi 11x ### Answer: SELECT v_core FROM table_27277284_8 WHERE mult_1 = "11x"
Name the number of v core for model number mobile athlon 64 3000+
CREATE TABLE table_27277284_8 (v_core VARCHAR, model_number VARCHAR)
SELECT COUNT(v_core) FROM table_27277284_8 WHERE model_number = "Mobile Athlon 64 3000+"
### Context: CREATE TABLE table_27277284_8 (v_core VARCHAR, model_number VARCHAR) ### Question: Name the number of v core for model number mobile athlon 64 3000+ ### Answer: SELECT COUNT(v_core) FROM table_27277284_8 WHERE model_number = "Mobile Athlon 64 3000+"
Name the total number of points for for played
CREATE TABLE table_27293285_4 (points_for VARCHAR)
SELECT COUNT(points_for) FROM table_27293285_4 WHERE "played" = "played"
### Context: CREATE TABLE table_27293285_4 (points_for VARCHAR) ### Question: Name the total number of points for for played ### Answer: SELECT COUNT(points_for) FROM table_27293285_4 WHERE "played" = "played"
Name the total number of points for 46 tries for
CREATE TABLE table_27293285_4 (points VARCHAR, tries_for VARCHAR)
SELECT COUNT(points) FROM table_27293285_4 WHERE tries_for = "46"
### Context: CREATE TABLE table_27293285_4 (points VARCHAR, tries_for VARCHAR) ### Question: Name the total number of points for 46 tries for ### Answer: SELECT COUNT(points) FROM table_27293285_4 WHERE tries_for = "46"
Name the total number of club for lost being 16
CREATE TABLE table_27293285_4 (club VARCHAR, lost VARCHAR)
SELECT COUNT(club) FROM table_27293285_4 WHERE lost = "16"
### Context: CREATE TABLE table_27293285_4 (club VARCHAR, lost VARCHAR) ### Question: Name the total number of club for lost being 16 ### Answer: SELECT COUNT(club) FROM table_27293285_4 WHERE lost = "16"
Name the drawn for lost being 5 and tries for 89
CREATE TABLE table_27293285_4 (drawn VARCHAR, lost VARCHAR, tries_for VARCHAR)
SELECT drawn FROM table_27293285_4 WHERE lost = "5" AND tries_for = "89"
### Context: CREATE TABLE table_27293285_4 (drawn VARCHAR, lost VARCHAR, tries_for VARCHAR) ### Question: Name the drawn for lost being 5 and tries for 89 ### Answer: SELECT drawn FROM table_27293285_4 WHERE lost = "5" AND tries_for = "89"
Name the won for played being 22 and points against 511 and lost being 15
CREATE TABLE table_27293285_4 (won VARCHAR, points_against VARCHAR, played VARCHAR, lost VARCHAR)
SELECT won FROM table_27293285_4 WHERE played = "22" AND lost = "15" AND points_against = "511"
### Context: CREATE TABLE table_27293285_4 (won VARCHAR, points_against VARCHAR, played VARCHAR, lost VARCHAR) ### Question: Name the won for played being 22 and points against 511 and lost being 15 ### Answer: SELECT won FROM table_27293285_4 WHERE played = "22" AND lost = "15" AND points_against = "511"
What aorist has bude in present tense?
CREATE TABLE table_27298240_26 (aorist VARCHAR, present VARCHAR)
SELECT aorist FROM table_27298240_26 WHERE present = "bude"
### Context: CREATE TABLE table_27298240_26 (aorist VARCHAR, present VARCHAR) ### Question: What aorist has bude in present tense? ### Answer: SELECT aorist FROM table_27298240_26 WHERE present = "bude"
Which aorist has imperfect form of bijasmo / bejasmo / besmo?
CREATE TABLE table_27298240_26 (aorist VARCHAR, imperfect VARCHAR)
SELECT aorist FROM table_27298240_26 WHERE imperfect = "bijasmo / bejasmo / besmo"
### Context: CREATE TABLE table_27298240_26 (aorist VARCHAR, imperfect VARCHAR) ### Question: Which aorist has imperfect form of bijasmo / bejasmo / besmo? ### Answer: SELECT aorist FROM table_27298240_26 WHERE imperfect = "bijasmo / bejasmo / besmo"
What is the pluperfect for the perfect si bio/la; bio/la si?
CREATE TABLE table_27298240_26 (pluperfect VARCHAR, perfect VARCHAR)
SELECT pluperfect FROM table_27298240_26 WHERE perfect = "si bio/la; bio/la si"
### Context: CREATE TABLE table_27298240_26 (pluperfect VARCHAR, perfect VARCHAR) ### Question: What is the pluperfect for the perfect si bio/la; bio/la si? ### Answer: SELECT pluperfect FROM table_27298240_26 WHERE perfect = "si bio/la; bio/la si"
What was the event when suárez ( tri ) w 16–6 was round of 32?
CREATE TABLE table_27294107_11 (event VARCHAR, round_of_32 VARCHAR)
SELECT event FROM table_27294107_11 WHERE round_of_32 = "Suárez ( TRI ) W 16–6"
### Context: CREATE TABLE table_27294107_11 (event VARCHAR, round_of_32 VARCHAR) ### Question: What was the event when suárez ( tri ) w 16–6 was round of 32? ### Answer: SELECT event FROM table_27294107_11 WHERE round_of_32 = "Suárez ( TRI ) W 16–6"
What is the semifinals for the light flyweight event?
CREATE TABLE table_27294107_11 (semifinals VARCHAR, event VARCHAR)
SELECT semifinals FROM table_27294107_11 WHERE event = "Light flyweight"
### Context: CREATE TABLE table_27294107_11 (semifinals VARCHAR, event VARCHAR) ### Question: What is the semifinals for the light flyweight event? ### Answer: SELECT semifinals FROM table_27294107_11 WHERE event = "Light flyweight"
How many semifinals did ferhat pehlivan attend?
CREATE TABLE table_27294107_11 (semifinals VARCHAR, athlete VARCHAR)
SELECT COUNT(semifinals) FROM table_27294107_11 WHERE athlete = "Ferhat Pehlivan"
### Context: CREATE TABLE table_27294107_11 (semifinals VARCHAR, athlete VARCHAR) ### Question: How many semifinals did ferhat pehlivan attend? ### Answer: SELECT COUNT(semifinals) FROM table_27294107_11 WHERE athlete = "Ferhat Pehlivan"
What is the round of 32 if the round of 16 is drenovak ( srb ) w 20–11?
CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, round_of_16 VARCHAR)
SELECT round_of_32 FROM table_27294107_11 WHERE round_of_16 = "Drenovak ( SRB ) W 20–11"
### Context: CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, round_of_16 VARCHAR) ### Question: What is the round of 32 if the round of 16 is drenovak ( srb ) w 20–11? ### Answer: SELECT round_of_32 FROM table_27294107_11 WHERE round_of_16 = "Drenovak ( SRB ) W 20–11"
When yakup şener is the athlete what is the round of 32?
CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, athlete VARCHAR)
SELECT round_of_32 FROM table_27294107_11 WHERE athlete = "Yakup Şener"
### Context: CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, athlete VARCHAR) ### Question: When yakup şener is the athlete what is the round of 32? ### Answer: SELECT round_of_32 FROM table_27294107_11 WHERE athlete = "Yakup Şener"
What is the round of 32 for fatih keleş?
CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, athlete VARCHAR)
SELECT round_of_32 FROM table_27294107_11 WHERE athlete = "Fatih Keleş"
### Context: CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, athlete VARCHAR) ### Question: What is the round of 32 for fatih keleş? ### Answer: SELECT round_of_32 FROM table_27294107_11 WHERE athlete = "Fatih Keleş"
What is in 1st place when present is mogu?
CREATE TABLE table_27298240_28 (present VARCHAR)
SELECT 1 AS st FROM table_27298240_28 WHERE present = "mogu"
### Context: CREATE TABLE table_27298240_28 (present VARCHAR) ### Question: What is in 1st place when present is mogu? ### Answer: SELECT 1 AS st FROM table_27298240_28 WHERE present = "mogu"
what is 2nd when the pronoun is vi (you pl.)?
CREATE TABLE table_27298240_28 (pronoun VARCHAR)
SELECT 2 AS nd FROM table_27298240_28 WHERE pronoun = "vi (you pl.)"
### Context: CREATE TABLE table_27298240_28 (pronoun VARCHAR) ### Question: what is 2nd when the pronoun is vi (you pl.)? ### Answer: SELECT 2 AS nd FROM table_27298240_28 WHERE pronoun = "vi (you pl.)"
What is the R when the total is 1 and the position is fw?
CREATE TABLE table (r VARCHAR, total VARCHAR, position VARCHAR)
SELECT r FROM table WHERE total = 1 AND position = "FW"
### Context: CREATE TABLE table (r VARCHAR, total VARCHAR, position VARCHAR) ### Question: What is the R when the total is 1 and the position is fw? ### Answer: SELECT r FROM table WHERE total = 1 AND position = "FW"
What is the lowest league cup?
CREATE TABLE table (league_cup INTEGER)
SELECT MIN(league_cup) FROM table
### Context: CREATE TABLE table (league_cup INTEGER) ### Question: What is the lowest league cup? ### Answer: SELECT MIN(league_cup) FROM table
What is the position for the player becchio?
CREATE TABLE table (position VARCHAR, player VARCHAR, Becchio VARCHAR)
SELECT position FROM table WHERE player = Becchio
### Context: CREATE TABLE table (position VARCHAR, player VARCHAR, Becchio VARCHAR) ### Question: What is the position for the player becchio? ### Answer: SELECT position FROM table WHERE player = Becchio
How many times was the r 4?
CREATE TABLE table (league_cup VARCHAR, r VARCHAR)
SELECT COUNT(league_cup) FROM table WHERE r = 4
### Context: CREATE TABLE table (league_cup VARCHAR, r VARCHAR) ### Question: How many times was the r 4? ### Answer: SELECT COUNT(league_cup) FROM table WHERE r = 4
What is the parent for peak cima tosa?
CREATE TABLE table_2731431_1 (parent VARCHAR, peak VARCHAR)
SELECT parent FROM table_2731431_1 WHERE peak = "Cima Tosa"
### Context: CREATE TABLE table_2731431_1 (parent VARCHAR, peak VARCHAR) ### Question: What is the parent for peak cima tosa? ### Answer: SELECT parent FROM table_2731431_1 WHERE peak = "Cima Tosa"
What is the elevation for the peak wildspitze in Austria?
CREATE TABLE table_2731431_1 (elevation__m_ INTEGER, location VARCHAR, peak VARCHAR)
SELECT MIN(elevation__m_) FROM table_2731431_1 WHERE location = "Austria" AND peak = "Wildspitze"
### Context: CREATE TABLE table_2731431_1 (elevation__m_ INTEGER, location VARCHAR, peak VARCHAR) ### Question: What is the elevation for the peak wildspitze in Austria? ### Answer: SELECT MIN(elevation__m_) FROM table_2731431_1 WHERE location = "Austria" AND peak = "Wildspitze"
What is the elevation for number 39?
CREATE TABLE table_2731431_1 (elevation__m_ INTEGER, no VARCHAR)
SELECT MAX(elevation__m_) FROM table_2731431_1 WHERE no = 39
### Context: CREATE TABLE table_2731431_1 (elevation__m_ INTEGER, no VARCHAR) ### Question: What is the elevation for number 39? ### Answer: SELECT MAX(elevation__m_) FROM table_2731431_1 WHERE no = 39
What is the col location for the location of france / italy?
CREATE TABLE table_2731431_1 (col_location VARCHAR, location VARCHAR)
SELECT col_location FROM table_2731431_1 WHERE location = "France / Italy"
### Context: CREATE TABLE table_2731431_1 (col_location VARCHAR, location VARCHAR) ### Question: What is the col location for the location of france / italy? ### Answer: SELECT col_location FROM table_2731431_1 WHERE location = "France / Italy"
What is the col location with a col height (m) of 1107?
CREATE TABLE table_2731431_1 (col_location VARCHAR, col_height__m_ VARCHAR)
SELECT col_location FROM table_2731431_1 WHERE col_height__m_ = 1107
### Context: CREATE TABLE table_2731431_1 (col_location VARCHAR, col_height__m_ VARCHAR) ### Question: What is the col location with a col height (m) of 1107? ### Answer: SELECT col_location FROM table_2731431_1 WHERE col_height__m_ = 1107
Which location has an elevation of 3798?
CREATE TABLE table_2731431_1 (location VARCHAR, elevation__m_ VARCHAR)
SELECT location FROM table_2731431_1 WHERE elevation__m_ = 3798
### Context: CREATE TABLE table_2731431_1 (location VARCHAR, elevation__m_ VARCHAR) ### Question: Which location has an elevation of 3798? ### Answer: SELECT location FROM table_2731431_1 WHERE elevation__m_ = 3798
What is the title when the catalog number is cal01 / 0091037137319?
CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR)
SELECT title FROM table_27303975_3 WHERE catalog_number = "CAL01 / 0091037137319"
### Context: CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR) ### Question: What is the title when the catalog number is cal01 / 0091037137319? ### Answer: SELECT title FROM table_27303975_3 WHERE catalog_number = "CAL01 / 0091037137319"
How many times is the title am/pm callanetics?
CREATE TABLE table_27303975_3 (studio VARCHAR, title VARCHAR)
SELECT COUNT(studio) FROM table_27303975_3 WHERE title = "AM/PM Callanetics"
### Context: CREATE TABLE table_27303975_3 (studio VARCHAR, title VARCHAR) ### Question: How many times is the title am/pm callanetics? ### Answer: SELECT COUNT(studio) FROM table_27303975_3 WHERE title = "AM/PM Callanetics"
How many times was the catalog number cal04 / 0091037553546?
CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR)
SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546"
### Context: CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR) ### Question: How many times was the catalog number cal04 / 0091037553546? ### Answer: SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546"
how many times was the catalog number cal04 / 0091037553546?
CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR)
SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546"
### Context: CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR) ### Question: how many times was the catalog number cal04 / 0091037553546? ### Answer: SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546"
how many times was the catalog number cal01 / 0091037137319?
CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR)
SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL01 / 0091037137319"
### Context: CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR) ### Question: how many times was the catalog number cal01 / 0091037137319? ### Answer: SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL01 / 0091037137319"
how many times was the catalog number cal05 / 0091037137357?
CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR)
SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = "CAL05 / 0091037137357"
### Context: CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR) ### Question: how many times was the catalog number cal05 / 0091037137357? ### Answer: SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = "CAL05 / 0091037137357"
who directed the episode that elaine ko wrote?
CREATE TABLE table_27332038_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_27332038_1 WHERE written_by = "Elaine Ko"
### Context: CREATE TABLE table_27332038_1 (directed_by VARCHAR, written_by VARCHAR) ### Question: who directed the episode that elaine ko wrote? ### Answer: SELECT directed_by FROM table_27332038_1 WHERE written_by = "Elaine Ko"
when was the episode with production code "2arg01" originally aired?
CREATE TABLE table_27332038_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_27332038_1 WHERE production_code = "2ARG01"
### Context: CREATE TABLE table_27332038_1 (original_air_date VARCHAR, production_code VARCHAR) ### Question: when was the episode with production code "2arg01" originally aired? ### Answer: SELECT original_air_date FROM table_27332038_1 WHERE production_code = "2ARG01"
what is the title of the episode with production code "2arg09"?
CREATE TABLE table_27332038_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_27332038_1 WHERE production_code = "2ARG09"
### Context: CREATE TABLE table_27332038_1 (title VARCHAR, production_code VARCHAR) ### Question: what is the title of the episode with production code "2arg09"? ### Answer: SELECT title FROM table_27332038_1 WHERE production_code = "2ARG09"
when was the episode with production code "2arg24" originally aired?
CREATE TABLE table_27332038_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_27332038_1 WHERE production_code = "2ARG24"
### Context: CREATE TABLE table_27332038_1 (original_air_date VARCHAR, production_code VARCHAR) ### Question: when was the episode with production code "2arg24" originally aired? ### Answer: SELECT original_air_date FROM table_27332038_1 WHERE production_code = "2ARG24"
What episode had a share percentage of 41.5%?
CREATE TABLE table_27319183_7 (episode VARCHAR, share___percentage_ VARCHAR)
SELECT episode FROM table_27319183_7 WHERE share___percentage_ = "41.5"
### Context: CREATE TABLE table_27319183_7 (episode VARCHAR, share___percentage_ VARCHAR) ### Question: What episode had a share percentage of 41.5%? ### Answer: SELECT episode FROM table_27319183_7 WHERE share___percentage_ = "41.5"
What date was the show's weekly ranking 12?
CREATE TABLE table_27319183_7 (date VARCHAR, weekly_rank VARCHAR)
SELECT date FROM table_27319183_7 WHERE weekly_rank = 12
### Context: CREATE TABLE table_27319183_7 (date VARCHAR, weekly_rank VARCHAR) ### Question: What date was the show's weekly ranking 12? ### Answer: SELECT date FROM table_27319183_7 WHERE weekly_rank = 12
How many total itv viewers were there for the episode with official itv ratings of 10.24 million?
CREATE TABLE table_27319183_7 (total_itv_viewers__millions_ VARCHAR, official_itv_rating__millions_ VARCHAR)
SELECT total_itv_viewers__millions_ FROM table_27319183_7 WHERE official_itv_rating__millions_ = "10.24"
### Context: CREATE TABLE table_27319183_7 (total_itv_viewers__millions_ VARCHAR, official_itv_rating__millions_ VARCHAR) ### Question: How many total itv viewers were there for the episode with official itv ratings of 10.24 million? ### Answer: SELECT total_itv_viewers__millions_ FROM table_27319183_7 WHERE official_itv_rating__millions_ = "10.24"
How many total itv viewers were there for the episode with official itv hd ratings of 1.12 million?
CREATE TABLE table_27319183_7 (total_itv_viewers__millions_ VARCHAR, official_itv_hd_rating__millions_ VARCHAR)
SELECT total_itv_viewers__millions_ FROM table_27319183_7 WHERE official_itv_hd_rating__millions_ = "1.12"
### Context: CREATE TABLE table_27319183_7 (total_itv_viewers__millions_ VARCHAR, official_itv_hd_rating__millions_ VARCHAR) ### Question: How many total itv viewers were there for the episode with official itv hd ratings of 1.12 million? ### Answer: SELECT total_itv_viewers__millions_ FROM table_27319183_7 WHERE official_itv_hd_rating__millions_ = "1.12"
What were the official itv ratings in millions for the episode with a total of 8.53 million itv viewers
CREATE TABLE table_27319183_7 (official_itv_rating__millions_ VARCHAR, total_itv_viewers__millions_ VARCHAR)
SELECT official_itv_rating__millions_ FROM table_27319183_7 WHERE total_itv_viewers__millions_ = "8.53"
### Context: CREATE TABLE table_27319183_7 (official_itv_rating__millions_ VARCHAR, total_itv_viewers__millions_ VARCHAR) ### Question: What were the official itv ratings in millions for the episode with a total of 8.53 million itv viewers ### Answer: SELECT official_itv_rating__millions_ FROM table_27319183_7 WHERE total_itv_viewers__millions_ = "8.53"
What were the official itv ratings in millions for semi-final 5?
CREATE TABLE table_27319183_7 (official_itv_rating__millions_ VARCHAR, episode VARCHAR)
SELECT official_itv_rating__millions_ FROM table_27319183_7 WHERE episode = "Semi-final 5"
### Context: CREATE TABLE table_27319183_7 (official_itv_rating__millions_ VARCHAR, episode VARCHAR) ### Question: What were the official itv ratings in millions for semi-final 5? ### Answer: SELECT official_itv_rating__millions_ FROM table_27319183_7 WHERE episode = "Semi-final 5"
What is the club when the chairman is roger lambrecht?
CREATE TABLE table_27374004_2 (club VARCHAR, chairman VARCHAR)
SELECT club FROM table_27374004_2 WHERE chairman = "Roger Lambrecht"
### Context: CREATE TABLE table_27374004_2 (club VARCHAR, chairman VARCHAR) ### Question: What is the club when the chairman is roger lambrecht? ### Answer: SELECT club FROM table_27374004_2 WHERE chairman = "Roger Lambrecht"
What is the team captain when the shirt sponser is quick?
CREATE TABLE table_27374004_2 (team_captain VARCHAR, shirt_sponsor VARCHAR)
SELECT team_captain FROM table_27374004_2 WHERE shirt_sponsor = "Quick"
### Context: CREATE TABLE table_27374004_2 (team_captain VARCHAR, shirt_sponsor VARCHAR) ### Question: What is the team captain when the shirt sponser is quick? ### Answer: SELECT team_captain FROM table_27374004_2 WHERE shirt_sponsor = "Quick"
Who is the chairman when the current manager is bob peeters?
CREATE TABLE table_27374004_2 (chairman VARCHAR, current_manager VARCHAR)
SELECT chairman FROM table_27374004_2 WHERE current_manager = "Bob Peeters"
### Context: CREATE TABLE table_27374004_2 (chairman VARCHAR, current_manager VARCHAR) ### Question: Who is the chairman when the current manager is bob peeters? ### Answer: SELECT chairman FROM table_27374004_2 WHERE current_manager = "Bob Peeters"
What is the club when the shirt sponsor is e-lotto.be?
CREATE TABLE table_27374004_2 (club VARCHAR, shirt_sponsor VARCHAR)
SELECT club FROM table_27374004_2 WHERE shirt_sponsor = "e-lotto.be"
### Context: CREATE TABLE table_27374004_2 (club VARCHAR, shirt_sponsor VARCHAR) ### Question: What is the club when the shirt sponsor is e-lotto.be? ### Answer: SELECT club FROM table_27374004_2 WHERE shirt_sponsor = "e-lotto.be"
Who is the team captain when the club is k.f.c. germinal beerschot?
CREATE TABLE table_27374004_2 (team_captain VARCHAR, club VARCHAR)
SELECT team_captain FROM table_27374004_2 WHERE club = "K.F.C. Germinal Beerschot"
### Context: CREATE TABLE table_27374004_2 (team_captain VARCHAR, club VARCHAR) ### Question: Who is the team captain when the club is k.f.c. germinal beerschot? ### Answer: SELECT team_captain FROM table_27374004_2 WHERE club = "K.F.C. Germinal Beerschot"
What is the varsity name of the university of mcgill university?
CREATE TABLE table_27369069_4 (varsity_name VARCHAR, university VARCHAR)
SELECT varsity_name FROM table_27369069_4 WHERE university = "McGill university"
### Context: CREATE TABLE table_27369069_4 (varsity_name VARCHAR, university VARCHAR) ### Question: What is the varsity name of the university of mcgill university? ### Answer: SELECT varsity_name FROM table_27369069_4 WHERE university = "McGill university"
What is the soccer stadium with the varsity name is citadins?
CREATE TABLE table_27369069_4 (soccer_stadium VARCHAR, varsity_name VARCHAR)
SELECT soccer_stadium FROM table_27369069_4 WHERE varsity_name = "Citadins"
### Context: CREATE TABLE table_27369069_4 (soccer_stadium VARCHAR, varsity_name VARCHAR) ### Question: What is the soccer stadium with the varsity name is citadins? ### Answer: SELECT soccer_stadium FROM table_27369069_4 WHERE varsity_name = "Citadins"
What is the province where the soccer statium is terrain #2 of complexe sportif claude-robillard?
CREATE TABLE table_27369069_4 (province VARCHAR, soccer_stadium VARCHAR)
SELECT province FROM table_27369069_4 WHERE soccer_stadium = "terrain #2 of Complexe sportif Claude-Robillard"
### Context: CREATE TABLE table_27369069_4 (province VARCHAR, soccer_stadium VARCHAR) ### Question: What is the province where the soccer statium is terrain #2 of complexe sportif claude-robillard? ### Answer: SELECT province FROM table_27369069_4 WHERE soccer_stadium = "terrain #2 of Complexe sportif Claude-Robillard"
What is the province for with the stadium capacity of 5100?
CREATE TABLE table_27369069_4 (province VARCHAR, stadium_capacity VARCHAR)
SELECT province FROM table_27369069_4 WHERE stadium_capacity = 5100
### Context: CREATE TABLE table_27369069_4 (province VARCHAR, stadium_capacity VARCHAR) ### Question: What is the province for with the stadium capacity of 5100? ### Answer: SELECT province FROM table_27369069_4 WHERE stadium_capacity = 5100
What is the university where the soccer stadium is terrain #2 of complexe sportif claude-robillard?
CREATE TABLE table_27369069_4 (university VARCHAR, soccer_stadium VARCHAR)
SELECT university FROM table_27369069_4 WHERE soccer_stadium = "terrain #2 of Complexe sportif Claude-Robillard"
### Context: CREATE TABLE table_27369069_4 (university VARCHAR, soccer_stadium VARCHAR) ### Question: What is the university where the soccer stadium is terrain #2 of complexe sportif claude-robillard? ### Answer: SELECT university FROM table_27369069_4 WHERE soccer_stadium = "terrain #2 of Complexe sportif Claude-Robillard"
When was the date of appointment by Hugo Broos?
CREATE TABLE table_27374004_4 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT date_of_appointment FROM table_27374004_4 WHERE replaced_by = "Hugo Broos"
### Context: CREATE TABLE table_27374004_4 (date_of_appointment VARCHAR, replaced_by VARCHAR) ### Question: When was the date of appointment by Hugo Broos? ### Answer: SELECT date_of_appointment FROM table_27374004_4 WHERE replaced_by = "Hugo Broos"
How many times did outgoing manager Bart de Roover vacated a position?
CREATE TABLE table_27374004_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)
SELECT COUNT(date_of_vacancy) FROM table_27374004_4 WHERE outgoing_manager = "Bart De Roover"
### Context: CREATE TABLE table_27374004_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) ### Question: How many times did outgoing manager Bart de Roover vacated a position? ### Answer: SELECT COUNT(date_of_vacancy) FROM table_27374004_4 WHERE outgoing_manager = "Bart De Roover"
Who was the outgoing manager of the team in 15th position that was sacked?
CREATE TABLE table_27374004_4 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)
SELECT outgoing_manager FROM table_27374004_4 WHERE manner_of_departure = "Sacked" AND position_in_table = "15th"
### Context: CREATE TABLE table_27374004_4 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR) ### Question: Who was the outgoing manager of the team in 15th position that was sacked? ### Answer: SELECT outgoing_manager FROM table_27374004_4 WHERE manner_of_departure = "Sacked" AND position_in_table = "15th"
What was the team's position in table when Danny OST was the outgoing manager?
CREATE TABLE table_27374004_4 (position_in_table VARCHAR, outgoing_manager VARCHAR)
SELECT position_in_table FROM table_27374004_4 WHERE outgoing_manager = "Danny Ost"
### Context: CREATE TABLE table_27374004_4 (position_in_table VARCHAR, outgoing_manager VARCHAR) ### Question: What was the team's position in table when Danny OST was the outgoing manager? ### Answer: SELECT position_in_table FROM table_27374004_4 WHERE outgoing_manager = "Danny Ost"
how many maximum # when viewers (m) is 8.01
CREATE TABLE table_27374740_2 (_number INTEGER, viewers__m_ VARCHAR)
SELECT MAX(_number) FROM table_27374740_2 WHERE viewers__m_ = "8.01"
### Context: CREATE TABLE table_27374740_2 (_number INTEGER, viewers__m_ VARCHAR) ### Question: how many maximum # when viewers (m) is 8.01 ### Answer: SELECT MAX(_number) FROM table_27374740_2 WHERE viewers__m_ = "8.01"
How many outgoing managers were replaced by Bob Peeters?
CREATE TABLE table_27374004_3 (outgoing_manager VARCHAR, replaced_by VARCHAR)
SELECT COUNT(outgoing_manager) FROM table_27374004_3 WHERE replaced_by = "Bob Peeters"
### Context: CREATE TABLE table_27374004_3 (outgoing_manager VARCHAR, replaced_by VARCHAR) ### Question: How many outgoing managers were replaced by Bob Peeters? ### Answer: SELECT COUNT(outgoing_manager) FROM table_27374004_3 WHERE replaced_by = "Bob Peeters"
Who replaced Michel Preud'homme?
CREATE TABLE table_27374004_3 (replaced_by VARCHAR, outgoing_manager VARCHAR)
SELECT replaced_by FROM table_27374004_3 WHERE outgoing_manager = "Michel Preud'homme"
### Context: CREATE TABLE table_27374004_3 (replaced_by VARCHAR, outgoing_manager VARCHAR) ### Question: Who replaced Michel Preud'homme? ### Answer: SELECT replaced_by FROM table_27374004_3 WHERE outgoing_manager = "Michel Preud'homme"
What was the manner of departure for the manager of Cercle Brugge?
CREATE TABLE table_27374004_3 (manner_of_departure VARCHAR, team VARCHAR)
SELECT manner_of_departure FROM table_27374004_3 WHERE team = "Cercle Brugge"
### Context: CREATE TABLE table_27374004_3 (manner_of_departure VARCHAR, team VARCHAR) ### Question: What was the manner of departure for the manager of Cercle Brugge? ### Answer: SELECT manner_of_departure FROM table_27374004_3 WHERE team = "Cercle Brugge"
Who was the outgoing manager of Charleroi?
CREATE TABLE table_27374004_3 (outgoing_manager VARCHAR, team VARCHAR)
SELECT outgoing_manager FROM table_27374004_3 WHERE team = "Charleroi"
### Context: CREATE TABLE table_27374004_3 (outgoing_manager VARCHAR, team VARCHAR) ### Question: Who was the outgoing manager of Charleroi? ### Answer: SELECT outgoing_manager FROM table_27374004_3 WHERE team = "Charleroi"
What sponsor has the head coach Samad Marfavi?
CREATE TABLE table_27383390_2 (shirt_sponsor VARCHAR, head_coach VARCHAR)
SELECT shirt_sponsor FROM table_27383390_2 WHERE head_coach = "Samad Marfavi"
### Context: CREATE TABLE table_27383390_2 (shirt_sponsor VARCHAR, head_coach VARCHAR) ### Question: What sponsor has the head coach Samad Marfavi? ### Answer: SELECT shirt_sponsor FROM table_27383390_2 WHERE head_coach = "Samad Marfavi"
Which team has Ali Daei as head coach?
CREATE TABLE table_27383390_2 (team VARCHAR, head_coach VARCHAR)
SELECT team FROM table_27383390_2 WHERE head_coach = "Ali Daei"
### Context: CREATE TABLE table_27383390_2 (team VARCHAR, head_coach VARCHAR) ### Question: Which team has Ali Daei as head coach? ### Answer: SELECT team FROM table_27383390_2 WHERE head_coach = "Ali Daei"
What is the kit maker for team foolad?
CREATE TABLE table_27383390_2 (kit_maker VARCHAR, team VARCHAR)
SELECT kit_maker FROM table_27383390_2 WHERE team = "Foolad"
### Context: CREATE TABLE table_27383390_2 (kit_maker VARCHAR, team VARCHAR) ### Question: What is the kit maker for team foolad? ### Answer: SELECT kit_maker FROM table_27383390_2 WHERE team = "Foolad"
Who is the outgoing head coach when the incoming head coach is abdollah veysi?
CREATE TABLE table_27383390_4 (outgoing_head_coach VARCHAR, incoming_head_coach VARCHAR)
SELECT outgoing_head_coach FROM table_27383390_4 WHERE incoming_head_coach = "Abdollah Veysi"
### Context: CREATE TABLE table_27383390_4 (outgoing_head_coach VARCHAR, incoming_head_coach VARCHAR) ### Question: Who is the outgoing head coach when the incoming head coach is abdollah veysi? ### Answer: SELECT outgoing_head_coach FROM table_27383390_4 WHERE incoming_head_coach = "Abdollah Veysi"
When is the date of appointment when the position in table is 16?
CREATE TABLE table_27383390_4 (date_of_appointment VARCHAR, position_in_table VARCHAR)
SELECT date_of_appointment FROM table_27383390_4 WHERE position_in_table = 16
### Context: CREATE TABLE table_27383390_4 (date_of_appointment VARCHAR, position_in_table VARCHAR) ### Question: When is the date of appointment when the position in table is 16? ### Answer: SELECT date_of_appointment FROM table_27383390_4 WHERE position_in_table = 16
How many times is the incoming head coach abdollah veysi?
CREATE TABLE table_27383390_4 (team VARCHAR, incoming_head_coach VARCHAR)
SELECT COUNT(team) FROM table_27383390_4 WHERE incoming_head_coach = "Abdollah Veysi"
### Context: CREATE TABLE table_27383390_4 (team VARCHAR, incoming_head_coach VARCHAR) ### Question: How many times is the incoming head coach abdollah veysi? ### Answer: SELECT COUNT(team) FROM table_27383390_4 WHERE incoming_head_coach = "Abdollah Veysi"
What is the team with the date of vacancy 8 dec 2010?
CREATE TABLE table_27383390_4 (team VARCHAR, date_of_vacancy VARCHAR)
SELECT team FROM table_27383390_4 WHERE date_of_vacancy = "8 Dec 2010"
### Context: CREATE TABLE table_27383390_4 (team VARCHAR, date_of_vacancy VARCHAR) ### Question: What is the team with the date of vacancy 8 dec 2010? ### Answer: SELECT team FROM table_27383390_4 WHERE date_of_vacancy = "8 Dec 2010"
What is the manner of departure when the incoming head coach is mohammad khakpour?
CREATE TABLE table_27383390_4 (manner_of_departure VARCHAR, incoming_head_coach VARCHAR)
SELECT manner_of_departure FROM table_27383390_4 WHERE incoming_head_coach = "Mohammad Khakpour"
### Context: CREATE TABLE table_27383390_4 (manner_of_departure VARCHAR, incoming_head_coach VARCHAR) ### Question: What is the manner of departure when the incoming head coach is mohammad khakpour? ### Answer: SELECT manner_of_departure FROM table_27383390_4 WHERE incoming_head_coach = "Mohammad Khakpour"
What is the original air date of the episode that was written by Rama Stagner?
CREATE TABLE table_27389024_2 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_27389024_2 WHERE written_by = "Rama Stagner"
### Context: CREATE TABLE table_27389024_2 (original_air_date VARCHAR, written_by VARCHAR) ### Question: What is the original air date of the episode that was written by Rama Stagner? ### Answer: SELECT original_air_date FROM table_27389024_2 WHERE written_by = "Rama Stagner"
For the #19 car, what was their finish position?
CREATE TABLE table_27396005_2 (pos INTEGER, car VARCHAR)
SELECT MAX(pos) FROM table_27396005_2 WHERE car = 19
### Context: CREATE TABLE table_27396005_2 (pos INTEGER, car VARCHAR) ### Question: For the #19 car, what was their finish position? ### Answer: SELECT MAX(pos) FROM table_27396005_2 WHERE car = 19
How many constructors had a grid of 13?
CREATE TABLE table_27396005_2 (constructor VARCHAR, grid VARCHAR)
SELECT COUNT(constructor) FROM table_27396005_2 WHERE grid = 13
### Context: CREATE TABLE table_27396005_2 (constructor VARCHAR, grid VARCHAR) ### Question: How many constructors had a grid of 13? ### Answer: SELECT COUNT(constructor) FROM table_27396005_2 WHERE grid = 13
What was the maximum finish position of the car whose constructor was Joe Gibbs Racing, driven by Denny Hamlin?
CREATE TABLE table_27396005_2 (pos INTEGER, constructor VARCHAR, driver VARCHAR)
SELECT MAX(pos) FROM table_27396005_2 WHERE constructor = "Joe Gibbs Racing" AND driver = "Denny Hamlin"
### Context: CREATE TABLE table_27396005_2 (pos INTEGER, constructor VARCHAR, driver VARCHAR) ### Question: What was the maximum finish position of the car whose constructor was Joe Gibbs Racing, driven by Denny Hamlin? ### Answer: SELECT MAX(pos) FROM table_27396005_2 WHERE constructor = "Joe Gibbs Racing" AND driver = "Denny Hamlin"
List all titles with a 57 series number.
CREATE TABLE table_27397948_2 (title VARCHAR, no_in_series VARCHAR)
SELECT title FROM table_27397948_2 WHERE no_in_series = 57
### Context: CREATE TABLE table_27397948_2 (title VARCHAR, no_in_series VARCHAR) ### Question: List all titles with a 57 series number. ### Answer: SELECT title FROM table_27397948_2 WHERE no_in_series = 57
What's the highest season number with a series number of 47?
CREATE TABLE table_27397948_2 (no_in_season INTEGER, no_in_series VARCHAR)
SELECT MAX(no_in_season) FROM table_27397948_2 WHERE no_in_series = 47
### Context: CREATE TABLE table_27397948_2 (no_in_season INTEGER, no_in_series VARCHAR) ### Question: What's the highest season number with a series number of 47? ### Answer: SELECT MAX(no_in_season) FROM table_27397948_2 WHERE no_in_series = 47
Who was the writer for season episode 7?
CREATE TABLE table_27397948_2 (written_by VARCHAR, no_in_season VARCHAR)
SELECT written_by FROM table_27397948_2 WHERE no_in_season = 7
### Context: CREATE TABLE table_27397948_2 (written_by VARCHAR, no_in_season VARCHAR) ### Question: Who was the writer for season episode 7? ### Answer: SELECT written_by FROM table_27397948_2 WHERE no_in_season = 7
Name who directed when the viewers is 5.86
CREATE TABLE table_27401228_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_27401228_1 WHERE us_viewers__million_ = "5.86"
### Context: CREATE TABLE table_27401228_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Name who directed when the viewers is 5.86 ### Answer: SELECT directed_by FROM table_27401228_1 WHERE us_viewers__million_ = "5.86"
Where is lootos põlva from?
CREATE TABLE table_27409644_1 (location VARCHAR, club VARCHAR)
SELECT location FROM table_27409644_1 WHERE club = "Lootos Põlva"
### Context: CREATE TABLE table_27409644_1 (location VARCHAR, club VARCHAR) ### Question: Where is lootos põlva from? ### Answer: SELECT location FROM table_27409644_1 WHERE club = "Lootos Põlva"
Who is the manager for lootos põlva?
CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR)
SELECT manager FROM table_27409644_1 WHERE club = "Lootos Põlva"
### Context: CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR) ### Question: Who is the manager for lootos põlva? ### Answer: SELECT manager FROM table_27409644_1 WHERE club = "Lootos Põlva"
Where is lootospark from?
CREATE TABLE table_27409644_1 (location VARCHAR, ground VARCHAR)
SELECT location FROM table_27409644_1 WHERE ground = "Lootospark"
### Context: CREATE TABLE table_27409644_1 (location VARCHAR, ground VARCHAR) ### Question: Where is lootospark from? ### Answer: SELECT location FROM table_27409644_1 WHERE ground = "Lootospark"
Who is the pärnu manager?
CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR)
SELECT manager FROM table_27409644_1 WHERE club = "Pärnu"
### Context: CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR) ### Question: Who is the pärnu manager? ### Answer: SELECT manager FROM table_27409644_1 WHERE club = "Pärnu"