Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
39,300
<question>: name the podiums for start of 22 <context>: CREATE TABLE table_2725949_6 (podiums VARCHAR, starts VARCHAR)
SELECT podiums FROM table_2725949_6 WHERE starts = 22
39,301
<question>: Name the number of poles for fastest laps being 6 <context>: CREATE TABLE table_2725949_6 (poles VARCHAR, fastest_laps VARCHAR)
SELECT COUNT(poles) FROM table_2725949_6 WHERE fastest_laps = 6
39,302
<question>: Name the least podiums for 2009 <context>: CREATE TABLE table_2725949_6 (podiums INTEGER, season VARCHAR)
SELECT MIN(podiums) FROM table_2725949_6 WHERE season = 2009
39,303
<question>: Name the starts for 2009 <context>: CREATE TABLE table_2725949_6 (starts VARCHAR, season VARCHAR)
SELECT starts FROM table_2725949_6 WHERE season = 2009
39,304
<question>: Name the most starts for 6 wins <context>: CREATE TABLE table_2725949_6 (starts INTEGER, wins VARCHAR)
SELECT MAX(starts) FROM table_2725949_6 WHERE wins = 6
39,305
<question>: How many matches were wickets 16? <context>: CREATE TABLE table_27268238_5 (matches VARCHAR, wickets VARCHAR)
SELECT COUNT(matches) FROM table_27268238_5 WHERE wickets = 16
39,306
<question>: What is the lowest wickets? <context>: CREATE TABLE table_27268238_5 (wickets INTEGER)
SELECT MIN(wickets) FROM table_27268238_5
39,307
<question>: What is the 4wi when the economy is 7.82? <context>: CREATE TABLE table_27268238_5 (economy VARCHAR)
SELECT 4 AS wi FROM table_27268238_5 WHERE economy = "7.82"
39,308
<question>: Who is the player when the bbi is 5/27? <context>: CREATE TABLE table_27268238_5 (player VARCHAR, bbi VARCHAR)
SELECT player FROM table_27268238_5 WHERE bbi = "5/27"
39,309
<question>: What is the team when the economy is 5.73? <context>: CREATE TABLE table_27268238_5 (team VARCHAR, economy VARCHAR)
SELECT team FROM table_27268238_5 WHERE economy = "5.73"
39,310
<question>: When Denizli was the province, what was the total number of valid votes? <context>: CREATE TABLE table_27274222_2 (valid_votes VARCHAR, province VARCHAR)
SELECT COUNT(valid_votes) FROM table_27274222_2 WHERE province = "Denizli"
39,311
<question>: What province had a turnout of 54.09%? <context>: CREATE TABLE table_27274222_2 (province VARCHAR, turnout___percentage_ VARCHAR)
SELECT province FROM table_27274222_2 WHERE turnout___percentage_ = "54.09"
39,312
<question>: What is the model number for the order part numbered tmrm75dam22gg? <context>: CREATE TABLE table_27277284_28 (model_number VARCHAR, order_part_number VARCHAR)
SELECT model_number FROM table_27277284_28 WHERE order_part_number = "TMRM75DAM22GG"
39,313
<question>: What is the oder part number for the model with 10x mult. 1? <context>: CREATE TABLE table_27277284_28 (order_part_number VARCHAR, mult_1 VARCHAR)
SELECT order_part_number FROM table_27277284_28 WHERE mult_1 = "10x"
39,314
<question>: How much ht does the model with 10x mult. 1 have? <context>: CREATE TABLE table_27277284_28 (ht VARCHAR, mult_1 VARCHAR)
SELECT ht FROM table_27277284_28 WHERE mult_1 = "10x"
39,315
<question>: What's the ht for the model released on June 4, 2008? <context>: CREATE TABLE table_27277284_28 (ht VARCHAR, release_date VARCHAR)
SELECT ht FROM table_27277284_28 WHERE release_date = "June 4, 2008"
39,316
<question>: How many pole position achieved 0 points from Mexico? <context>: CREATE TABLE table_27279050_1 (poles VARCHAR, points VARCHAR, nation VARCHAR)
SELECT COUNT(poles) FROM table_27279050_1 WHERE points = "0" AND nation = "Mexico"
39,317
<question>: Name the vcore for multi 11x <context>: CREATE TABLE table_27277284_8 (v_core VARCHAR, mult_1 VARCHAR)
SELECT v_core FROM table_27277284_8 WHERE mult_1 = "11x"
39,318
<question>: Name the number of v core for model number mobile athlon 64 3000+ <context>: 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+"
39,319
<question>: Name the total number of points for for played <context>: CREATE TABLE table_27293285_4 (points_for VARCHAR)
SELECT COUNT(points_for) FROM table_27293285_4 WHERE "played" = "played"
39,320
<question>: Name the total number of points for 46 tries for <context>: CREATE TABLE table_27293285_4 (points VARCHAR, tries_for VARCHAR)
SELECT COUNT(points) FROM table_27293285_4 WHERE tries_for = "46"
39,321
<question>: Name the total number of club for lost being 16 <context>: CREATE TABLE table_27293285_4 (club VARCHAR, lost VARCHAR)
SELECT COUNT(club) FROM table_27293285_4 WHERE lost = "16"
39,322
<question>: Name the drawn for lost being 5 and tries for 89 <context>: 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"
39,323
<question>: Name the won for played being 22 and points against 511 and lost being 15 <context>: 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"
39,324
<question>: What aorist has bude in present tense? <context>: CREATE TABLE table_27298240_26 (aorist VARCHAR, present VARCHAR)
SELECT aorist FROM table_27298240_26 WHERE present = "bude"
39,325
<question>: Which aorist has imperfect form of bijasmo / bejasmo / besmo? <context>: CREATE TABLE table_27298240_26 (aorist VARCHAR, imperfect VARCHAR)
SELECT aorist FROM table_27298240_26 WHERE imperfect = "bijasmo / bejasmo / besmo"
39,326
<question>: What is the pluperfect for the perfect si bio/la; bio/la si? <context>: CREATE TABLE table_27298240_26 (pluperfect VARCHAR, perfect VARCHAR)
SELECT pluperfect FROM table_27298240_26 WHERE perfect = "si bio/la; bio/la si"
39,327
<question>: What was the event when suárez ( tri ) w 16–6 was round of 32? <context>: 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"
39,328
<question>: What is the semifinals for the light flyweight event? <context>: CREATE TABLE table_27294107_11 (semifinals VARCHAR, event VARCHAR)
SELECT semifinals FROM table_27294107_11 WHERE event = "Light flyweight"
39,329
<question>: How many semifinals did ferhat pehlivan attend? <context>: CREATE TABLE table_27294107_11 (semifinals VARCHAR, athlete VARCHAR)
SELECT COUNT(semifinals) FROM table_27294107_11 WHERE athlete = "Ferhat Pehlivan"
39,330
<question>: What is the round of 32 if the round of 16 is drenovak ( srb ) w 20–11? <context>: 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"
39,331
<question>: When yakup şener is the athlete what is the round of 32? <context>: CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, athlete VARCHAR)
SELECT round_of_32 FROM table_27294107_11 WHERE athlete = "Yakup Şener"
39,332
<question>: What is the round of 32 for fatih keleş? <context>: CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, athlete VARCHAR)
SELECT round_of_32 FROM table_27294107_11 WHERE athlete = "Fatih Keleş"
39,333
<question>: What is in 1st place when present is mogu? <context>: CREATE TABLE table_27298240_28 (present VARCHAR)
SELECT 1 AS st FROM table_27298240_28 WHERE present = "mogu"
39,334
<question>: what is 2nd when the pronoun is vi (you pl.)? <context>: CREATE TABLE table_27298240_28 (pronoun VARCHAR)
SELECT 2 AS nd FROM table_27298240_28 WHERE pronoun = "vi (you pl.)"
39,335
<question>: What is the R when the total is 1 and the position is fw? <context>: CREATE TABLE table (r VARCHAR, total VARCHAR, position VARCHAR)
SELECT r FROM table WHERE total = 1 AND position = "FW"
39,336
<question>: What is the lowest league cup? <context>: CREATE TABLE table (league_cup INTEGER)
SELECT MIN(league_cup) FROM table
39,337
<question>: What is the position for the player becchio? <context>: CREATE TABLE table (position VARCHAR, player VARCHAR, Becchio VARCHAR)
SELECT position FROM table WHERE player = Becchio
39,338
<question>: How many times was the r 4? <context>: CREATE TABLE table (league_cup VARCHAR, r VARCHAR)
SELECT COUNT(league_cup) FROM table WHERE r = 4
39,339
<question>: What is the parent for peak cima tosa? <context>: CREATE TABLE table_2731431_1 (parent VARCHAR, peak VARCHAR)
SELECT parent FROM table_2731431_1 WHERE peak = "Cima Tosa"
39,340
<question>: What is the elevation for the peak wildspitze in Austria? <context>: 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"
39,341
<question>: What is the elevation for number 39? <context>: CREATE TABLE table_2731431_1 (elevation__m_ INTEGER, no VARCHAR)
SELECT MAX(elevation__m_) FROM table_2731431_1 WHERE no = 39
39,342
<question>: What is the col location for the location of france / italy? <context>: CREATE TABLE table_2731431_1 (col_location VARCHAR, location VARCHAR)
SELECT col_location FROM table_2731431_1 WHERE location = "France / Italy"
39,343
<question>: What is the col location with a col height (m) of 1107? <context>: CREATE TABLE table_2731431_1 (col_location VARCHAR, col_height__m_ VARCHAR)
SELECT col_location FROM table_2731431_1 WHERE col_height__m_ = 1107
39,344
<question>: Which location has an elevation of 3798? <context>: CREATE TABLE table_2731431_1 (location VARCHAR, elevation__m_ VARCHAR)
SELECT location FROM table_2731431_1 WHERE elevation__m_ = 3798
39,345
<question>: What is the title when the catalog number is cal01 / 0091037137319? <context>: CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR)
SELECT title FROM table_27303975_3 WHERE catalog_number = "CAL01 / 0091037137319"
39,346
<question>: How many times is the title am/pm callanetics? <context>: CREATE TABLE table_27303975_3 (studio VARCHAR, title VARCHAR)
SELECT COUNT(studio) FROM table_27303975_3 WHERE title = "AM/PM Callanetics"
39,347
<question>: How many times was the catalog number cal04 / 0091037553546? <context>: CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR)
SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546"
39,348
<question>: how many times was the catalog number cal04 / 0091037553546? <context>: CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR)
SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546"
39,349
<question>: how many times was the catalog number cal01 / 0091037137319? <context>: CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR)
SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL01 / 0091037137319"
39,350
<question>: how many times was the catalog number cal05 / 0091037137357? <context>: CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR)
SELECT COUNT(title) FROM table_27303975_3 WHERE catalog_number = "CAL05 / 0091037137357"
39,351
<question>: who directed the episode that elaine ko wrote? <context>: CREATE TABLE table_27332038_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_27332038_1 WHERE written_by = "Elaine Ko"
39,352
<question>: when was the episode with production code "2arg01" originally aired? <context>: CREATE TABLE table_27332038_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_27332038_1 WHERE production_code = "2ARG01"
39,353
<question>: what is the title of the episode with production code "2arg09"? <context>: CREATE TABLE table_27332038_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_27332038_1 WHERE production_code = "2ARG09"
39,354
<question>: when was the episode with production code "2arg24" originally aired? <context>: CREATE TABLE table_27332038_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_27332038_1 WHERE production_code = "2ARG24"
39,355
<question>: What episode had a share percentage of 41.5%? <context>: CREATE TABLE table_27319183_7 (episode VARCHAR, share___percentage_ VARCHAR)
SELECT episode FROM table_27319183_7 WHERE share___percentage_ = "41.5"
39,356
<question>: What date was the show's weekly ranking 12? <context>: CREATE TABLE table_27319183_7 (date VARCHAR, weekly_rank VARCHAR)
SELECT date FROM table_27319183_7 WHERE weekly_rank = 12
39,357
<question>: How many total itv viewers were there for the episode with official itv ratings of 10.24 million? <context>: 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"
39,358
<question>: How many total itv viewers were there for the episode with official itv hd ratings of 1.12 million? <context>: 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"
39,359
<question>: What were the official itv ratings in millions for the episode with a total of 8.53 million itv viewers <context>: 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"
39,360
<question>: What were the official itv ratings in millions for semi-final 5? <context>: 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"
39,361
<question>: What is the club when the chairman is roger lambrecht? <context>: CREATE TABLE table_27374004_2 (club VARCHAR, chairman VARCHAR)
SELECT club FROM table_27374004_2 WHERE chairman = "Roger Lambrecht"
39,362
<question>: What is the team captain when the shirt sponser is quick? <context>: CREATE TABLE table_27374004_2 (team_captain VARCHAR, shirt_sponsor VARCHAR)
SELECT team_captain FROM table_27374004_2 WHERE shirt_sponsor = "Quick"
39,363
<question>: Who is the chairman when the current manager is bob peeters? <context>: CREATE TABLE table_27374004_2 (chairman VARCHAR, current_manager VARCHAR)
SELECT chairman FROM table_27374004_2 WHERE current_manager = "Bob Peeters"
39,364
<question>: What is the club when the shirt sponsor is e-lotto.be? <context>: CREATE TABLE table_27374004_2 (club VARCHAR, shirt_sponsor VARCHAR)
SELECT club FROM table_27374004_2 WHERE shirt_sponsor = "e-lotto.be"
39,365
<question>: Who is the team captain when the club is k.f.c. germinal beerschot? <context>: CREATE TABLE table_27374004_2 (team_captain VARCHAR, club VARCHAR)
SELECT team_captain FROM table_27374004_2 WHERE club = "K.F.C. Germinal Beerschot"
39,366
<question>: What is the varsity name of the university of mcgill university? <context>: CREATE TABLE table_27369069_4 (varsity_name VARCHAR, university VARCHAR)
SELECT varsity_name FROM table_27369069_4 WHERE university = "McGill university"
39,367
<question>: What is the soccer stadium with the varsity name is citadins? <context>: CREATE TABLE table_27369069_4 (soccer_stadium VARCHAR, varsity_name VARCHAR)
SELECT soccer_stadium FROM table_27369069_4 WHERE varsity_name = "Citadins"
39,368
<question>: What is the province where the soccer statium is terrain #2 of complexe sportif claude-robillard? <context>: 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"
39,369
<question>: What is the province for with the stadium capacity of 5100? <context>: CREATE TABLE table_27369069_4 (province VARCHAR, stadium_capacity VARCHAR)
SELECT province FROM table_27369069_4 WHERE stadium_capacity = 5100
39,370
<question>: What is the university where the soccer stadium is terrain #2 of complexe sportif claude-robillard? <context>: 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"
39,371
<question>: When was the date of appointment by Hugo Broos? <context>: 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"
39,372
<question>: How many times did outgoing manager Bart de Roover vacated a position? <context>: 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"
39,373
<question>: Who was the outgoing manager of the team in 15th position that was sacked? <context>: 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"
39,374
<question>: What was the team's position in table when Danny OST was the outgoing manager? <context>: 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"
39,375
<question>: how many maximum # when viewers (m) is 8.01 <context>: CREATE TABLE table_27374740_2 (_number INTEGER, viewers__m_ VARCHAR)
SELECT MAX(_number) FROM table_27374740_2 WHERE viewers__m_ = "8.01"
39,376
<question>: How many outgoing managers were replaced by Bob Peeters? <context>: CREATE TABLE table_27374004_3 (outgoing_manager VARCHAR, replaced_by VARCHAR)
SELECT COUNT(outgoing_manager) FROM table_27374004_3 WHERE replaced_by = "Bob Peeters"
39,377
<question>: Who replaced Michel Preud'homme? <context>: CREATE TABLE table_27374004_3 (replaced_by VARCHAR, outgoing_manager VARCHAR)
SELECT replaced_by FROM table_27374004_3 WHERE outgoing_manager = "Michel Preud'homme"
39,378
<question>: What was the manner of departure for the manager of Cercle Brugge? <context>: CREATE TABLE table_27374004_3 (manner_of_departure VARCHAR, team VARCHAR)
SELECT manner_of_departure FROM table_27374004_3 WHERE team = "Cercle Brugge"
39,379
<question>: Who was the outgoing manager of Charleroi? <context>: CREATE TABLE table_27374004_3 (outgoing_manager VARCHAR, team VARCHAR)
SELECT outgoing_manager FROM table_27374004_3 WHERE team = "Charleroi"
39,380
<question>: What sponsor has the head coach Samad Marfavi? <context>: CREATE TABLE table_27383390_2 (shirt_sponsor VARCHAR, head_coach VARCHAR)
SELECT shirt_sponsor FROM table_27383390_2 WHERE head_coach = "Samad Marfavi"
39,381
<question>: Which team has Ali Daei as head coach? <context>: CREATE TABLE table_27383390_2 (team VARCHAR, head_coach VARCHAR)
SELECT team FROM table_27383390_2 WHERE head_coach = "Ali Daei"
39,382
<question>: What is the kit maker for team foolad? <context>: CREATE TABLE table_27383390_2 (kit_maker VARCHAR, team VARCHAR)
SELECT kit_maker FROM table_27383390_2 WHERE team = "Foolad"
39,383
<question>: Who is the outgoing head coach when the incoming head coach is abdollah veysi? <context>: 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"
39,384
<question>: When is the date of appointment when the position in table is 16? <context>: 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
39,385
<question>: How many times is the incoming head coach abdollah veysi? <context>: CREATE TABLE table_27383390_4 (team VARCHAR, incoming_head_coach VARCHAR)
SELECT COUNT(team) FROM table_27383390_4 WHERE incoming_head_coach = "Abdollah Veysi"
39,386
<question>: What is the team with the date of vacancy 8 dec 2010? <context>: CREATE TABLE table_27383390_4 (team VARCHAR, date_of_vacancy VARCHAR)
SELECT team FROM table_27383390_4 WHERE date_of_vacancy = "8 Dec 2010"
39,387
<question>: What is the manner of departure when the incoming head coach is mohammad khakpour? <context>: 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"
39,388
<question>: What is the original air date of the episode that was written by Rama Stagner? <context>: 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"
39,389
<question>: For the #19 car, what was their finish position? <context>: CREATE TABLE table_27396005_2 (pos INTEGER, car VARCHAR)
SELECT MAX(pos) FROM table_27396005_2 WHERE car = 19
39,390
<question>: How many constructors had a grid of 13? <context>: CREATE TABLE table_27396005_2 (constructor VARCHAR, grid VARCHAR)
SELECT COUNT(constructor) FROM table_27396005_2 WHERE grid = 13
39,391
<question>: What was the maximum finish position of the car whose constructor was Joe Gibbs Racing, driven by Denny Hamlin? <context>: 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"
39,392
<question>: List all titles with a 57 series number. <context>: CREATE TABLE table_27397948_2 (title VARCHAR, no_in_series VARCHAR)
SELECT title FROM table_27397948_2 WHERE no_in_series = 57
39,393
<question>: What's the highest season number with a series number of 47? <context>: 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
39,394
<question>: Who was the writer for season episode 7? <context>: CREATE TABLE table_27397948_2 (written_by VARCHAR, no_in_season VARCHAR)
SELECT written_by FROM table_27397948_2 WHERE no_in_season = 7
39,395
<question>: Name who directed when the viewers is 5.86 <context>: 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"
39,396
<question>: Where is lootos põlva from? <context>: CREATE TABLE table_27409644_1 (location VARCHAR, club VARCHAR)
SELECT location FROM table_27409644_1 WHERE club = "Lootos Põlva"
39,397
<question>: Who is the manager for lootos põlva? <context>: CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR)
SELECT manager FROM table_27409644_1 WHERE club = "Lootos Põlva"
39,398
<question>: Where is lootospark from? <context>: CREATE TABLE table_27409644_1 (location VARCHAR, ground VARCHAR)
SELECT location FROM table_27409644_1 WHERE ground = "Lootospark"
39,399
<question>: Who is the pärnu manager? <context>: CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR)
SELECT manager FROM table_27409644_1 WHERE club = "Pärnu"