Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
55,900
<question>: How many years had the best actress in a Revival category? <context>: CREATE TABLE table_name_9 (year VARCHAR, category VARCHAR) <answer>: SELECT COUNT(year) FROM table_name_9 WHERE category = "best actress in a revival"
55,901
<question>: What categories had a Nominated work of yerma before 1992? <context>: CREATE TABLE table_name_99 (category VARCHAR, year VARCHAR, nominated_work VARCHAR) <answer>: SELECT category FROM table_name_99 WHERE year < 1992 AND nominated_work = "yerma"
55,902
<question>: How many times is the shot volume (cm3) less than 172.76? <context>: CREATE TABLE table_name_37 (shot_diameter__cm_ VARCHAR, shot_volume__cm_3__ INTEGER) <answer>: SELECT COUNT(shot_diameter__cm_) FROM table_name_37 WHERE shot_volume__cm_3__ < 172.76
55,903
<question>: what is the average shot volume (cm 3) when the shot diameter (cm) is less than 6.04? <context>: CREATE TABLE table_name_73 (shot_volume__cm_3__ INTEGER, shot_diameter__cm_ INTEGER) <answer>: SELECT AVG(shot_volume__cm_3__) FROM table_name_73 WHERE shot_diameter__cm_ < 6.04
55,904
<question>: What role was nominated at the Sydney Film Festival? <context>: CREATE TABLE table_name_56 (role VARCHAR, festival_organization VARCHAR) <answer>: SELECT role FROM table_name_56 WHERE festival_organization = "sydney film festival"
55,905
<question>: In what category was an award won in 2007? <context>: CREATE TABLE table_name_92 (award_category VARCHAR, nominated_won VARCHAR, year VARCHAR) <answer>: SELECT award_category FROM table_name_92 WHERE nominated_won = "won" AND year = 2007
55,906
<question>: What is the first year that there was a Satellite Award? <context>: CREATE TABLE table_name_90 (year INTEGER, festival_organization VARCHAR) <answer>: SELECT MIN(year) FROM table_name_90 WHERE festival_organization = "satellite award"
55,907
<question>: What role was at the Sydney Film Festival in 2008? <context>: CREATE TABLE table_name_4 (role VARCHAR, year VARCHAR, festival_organization VARCHAR) <answer>: SELECT role FROM table_name_4 WHERE year = 2008 AND festival_organization = "sydney film festival"
55,908
<question>: What was nominated for the Jury Award? <context>: CREATE TABLE table_name_57 (nominated_won VARCHAR, award_category VARCHAR) <answer>: SELECT nominated_won FROM table_name_57 WHERE award_category = "jury award"
55,909
<question>: what is the released when the series is sorted 6y/ai? <context>: CREATE TABLE table_name_68 (released VARCHAR, series_sorted VARCHAR) <answer>: SELECT released FROM table_name_68 WHERE series_sorted = "6y/ai"
55,910
<question>: who is the featuring when the doctor is the 6th and the series sorted is 6y/ak? <context>: CREATE TABLE table_name_30 (featuring VARCHAR, doctor VARCHAR, series_sorted VARCHAR) <answer>: SELECT featuring FROM table_name_30 WHERE doctor = "6th" AND series_sorted = "6y/ak"
55,911
<question>: what is the series sorted when the released is may 2012? <context>: CREATE TABLE table_name_73 (series_sorted VARCHAR, released VARCHAR) <answer>: SELECT series_sorted FROM table_name_73 WHERE released = "may 2012"
55,912
<question>: who is the featuring when the series sorted is 6eb/b? <context>: CREATE TABLE table_name_38 (featuring VARCHAR, series_sorted VARCHAR) <answer>: SELECT featuring FROM table_name_38 WHERE series_sorted = "6eb/b"
55,913
<question>: Which Country has a Year(s) won of 1977? <context>: CREATE TABLE table_name_60 (country VARCHAR, year_s__won VARCHAR) <answer>: SELECT country FROM table_name_60 WHERE year_s__won = "1977"
55,914
<question>: Which To par is the lowest one that has a Year(s) won of 1962, 1967, 1972, 1980, and a Total larger than 149? <context>: CREATE TABLE table_name_90 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR) <answer>: SELECT MIN(to_par) FROM table_name_90 WHERE year_s__won = "1962, 1967, 1972, 1980" AND total > 149
55,915
<question>: Which Country has a Total of 148? <context>: CREATE TABLE table_name_74 (country VARCHAR, total VARCHAR) <answer>: SELECT country FROM table_name_74 WHERE total = 148
55,916
<question>: Which Year(s) won has a Total of 147? <context>: CREATE TABLE table_name_57 (year_s__won VARCHAR, total VARCHAR) <answer>: SELECT year_s__won FROM table_name_57 WHERE total = 147
55,917
<question>: Which To par is the highest one that has a Total smaller than 148? <context>: CREATE TABLE table_name_89 (to_par INTEGER, total INTEGER) <answer>: SELECT MAX(to_par) FROM table_name_89 WHERE total < 148
55,918
<question>: Who is the candidate in the 2008 (2) election? <context>: CREATE TABLE table_name_20 (candidate VARCHAR, election VARCHAR) <answer>: SELECT candidate FROM table_name_20 WHERE election = "2008 (2)"
55,919
<question>: What is the share of votes in the 2008 (1) election? <context>: CREATE TABLE table_name_99 (share_of_votes VARCHAR, election VARCHAR) <answer>: SELECT share_of_votes FROM table_name_99 WHERE election = "2008 (1)"
55,920
<question>: What is the share of votes in the 2000 (2nd) election? <context>: CREATE TABLE table_name_20 (share_of_votes VARCHAR, election VARCHAR) <answer>: SELECT share_of_votes FROM table_name_20 WHERE election = "2000 (2nd)"
55,921
<question>: What is the election with an outcome of ndc opposition and 2,728,241 votes? <context>: CREATE TABLE table_name_63 (election VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR) <answer>: SELECT election FROM table_name_63 WHERE outcome_of_election = "ndc opposition" AND number_of_votes = "2,728,241"
55,922
<question>: What is the outcome of the election with 43.3% share of votes? <context>: CREATE TABLE table_name_26 (outcome_of_election VARCHAR, share_of_votes VARCHAR) <answer>: SELECT outcome_of_election FROM table_name_26 WHERE share_of_votes = "43.3%"
55,923
<question>: Who is the candidate in the 2012 election? <context>: CREATE TABLE table_name_50 (candidate VARCHAR, election VARCHAR) <answer>: SELECT candidate FROM table_name_50 WHERE election = "2012"
55,924
<question>: What is Mark O'Meara's Score? <context>: CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_44 WHERE player = "mark o'meara"
55,925
<question>: What is Curtis Strange's Score? <context>: CREATE TABLE table_name_11 (score VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_11 WHERE player = "curtis strange"
55,926
<question>: What is the Tracks of the release in Catalog BA 222304 with a Length of 2:57? <context>: CREATE TABLE table_name_20 (tracks VARCHAR, catalog VARCHAR, length VARCHAR) <answer>: SELECT tracks FROM table_name_20 WHERE catalog = "ba 222304" AND length = "2:57"
55,927
<question>: What is the highest Match No., when Date is 2008-03-21, and when Time is 16:00? <context>: CREATE TABLE table_name_92 (match_no INTEGER, date VARCHAR, time VARCHAR) <answer>: SELECT MAX(match_no) FROM table_name_92 WHERE date = "2008-03-21" AND time = "16:00"
55,928
<question>: What was the venue for runs 325/6? <context>: CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR) <answer>: SELECT venue FROM table_name_12 WHERE runs = "325/6"
55,929
<question>: What season were the runs 310/9? <context>: CREATE TABLE table_name_25 (season VARCHAR, runs VARCHAR) <answer>: SELECT season FROM table_name_25 WHERE runs = "310/9"
55,930
<question>: What were the runs for the opponent from the West Indies? <context>: CREATE TABLE table_name_64 (runs VARCHAR, opponent VARCHAR) <answer>: SELECT runs FROM table_name_64 WHERE opponent = "west indies"
55,931
<question>: Which Money ($) has a Score of 70-66-73-69=278? <context>: CREATE TABLE table_name_95 (money___ INTEGER, score VARCHAR) <answer>: SELECT AVG(money___) AS $__ FROM table_name_95 WHERE score = 70 - 66 - 73 - 69 = 278
55,932
<question>: How many rounds did the match last with Sam Sotello as the opponent? <context>: CREATE TABLE table_name_78 (round INTEGER, opponent VARCHAR) <answer>: SELECT AVG(round) FROM table_name_78 WHERE opponent = "sam sotello"
55,933
<question>: What is the record for the loss in UFC 62? <context>: CREATE TABLE table_name_26 (record VARCHAR, res VARCHAR, event VARCHAR) <answer>: SELECT record FROM table_name_26 WHERE res = "loss" AND event = "ufc 62"
55,934
<question>: What is the part 4 with *heguldun *febungun in part 3? <context>: CREATE TABLE table_name_6 (part_4 VARCHAR, part_3 VARCHAR) <answer>: SELECT part_4 FROM table_name_6 WHERE part_3 = "*heguldun *febungun"
55,935
<question>: What is the part 3 with *hegait in part 2? <context>: CREATE TABLE table_name_31 (part_3 VARCHAR, part_2 VARCHAR) <answer>: SELECT part_3 FROM table_name_31 WHERE part_2 = "*hegait"
55,936
<question>: What is the part 4 with *hlaupaną *stautaną in part 1? <context>: CREATE TABLE table_name_6 (part_4 VARCHAR, part_1 VARCHAR) <answer>: SELECT part_4 FROM table_name_6 WHERE part_1 = "*hlaupaną *stautaną"
55,937
<question>: What is the verb meaning of *haldaną *fanhaną in part 1? <context>: CREATE TABLE table_name_26 (verb_meaning VARCHAR, part_1 VARCHAR) <answer>: SELECT verb_meaning FROM table_name_26 WHERE part_1 = "*haldaną *fanhaną"
55,938
<question>: Who is sezen aksu's producer? <context>: CREATE TABLE table_name_43 (producer_s_ VARCHAR, songwriter_s_ VARCHAR) <answer>: SELECT producer_s_ FROM table_name_43 WHERE songwriter_s_ = "sezen aksu"
55,939
<question>: Which Title has a Songwriter(s) of hadise açıkgöz, stefaan fernande, elio deepcore? <context>: CREATE TABLE table_name_72 (title VARCHAR, songwriter_s_ VARCHAR) <answer>: SELECT title FROM table_name_72 WHERE songwriter_s_ = "hadise açıkgöz, stefaan fernande, elio deepcore"
55,940
<question>: Which Title has a Length of 3:32, and a Producer(s) of hadise açıkgöz, yves jongen? <context>: CREATE TABLE table_name_91 (title VARCHAR, length VARCHAR, producer_s_ VARCHAR) <answer>: SELECT title FROM table_name_91 WHERE length = "3:32" AND producer_s_ = "hadise açıkgöz, yves jongen"
55,941
<question>: Which Producer(s) has a Track smaller than 8, and a Songwriter(s) of hadise açıkgöz, yves jongen, and a Length of 3:08? <context>: CREATE TABLE table_name_46 (producer_s_ VARCHAR, length VARCHAR, track VARCHAR, songwriter_s_ VARCHAR) <answer>: SELECT producer_s_ FROM table_name_46 WHERE track < 8 AND songwriter_s_ = "hadise açıkgöz, yves jongen" AND length = "3:08"
55,942
<question>: What is track 6's title? <context>: CREATE TABLE table_name_62 (title VARCHAR, track VARCHAR) <answer>: SELECT title FROM table_name_62 WHERE track = 6
55,943
<question>: What company makes the Nokia 700? <context>: CREATE TABLE table_name_31 (company_name VARCHAR, hardware_model VARCHAR) <answer>: SELECT company_name FROM table_name_31 WHERE hardware_model = "nokia 700"
55,944
<question>: What is the accreditation level for the approved (awarded 05.12.12) date? <context>: CREATE TABLE table_name_72 (accreditation_level VARCHAR, date VARCHAR) <answer>: SELECT accreditation_level FROM table_name_72 WHERE date = "approved (awarded 05.12.12)"
55,945
<question>: When did Samsung Electronics Co LTD make the GT-i9100? <context>: CREATE TABLE table_name_99 (date VARCHAR, company_name VARCHAR, hardware_model VARCHAR) <answer>: SELECT date FROM table_name_99 WHERE company_name = "samsung electronics co ltd" AND hardware_model = "gt-i9100"
55,946
<question>: When the Nokia corporation had an accreditation level of joyn, what was the accreditation type? <context>: CREATE TABLE table_name_5 (accreditation_type VARCHAR, accreditation_level VARCHAR, company_name VARCHAR) <answer>: SELECT accreditation_type FROM table_name_5 WHERE accreditation_level = "joyn" AND company_name = "nokia corporation"
55,947
<question>: What is Round, when Record is "4-1"? <context>: CREATE TABLE table_name_53 (round VARCHAR, record VARCHAR) <answer>: SELECT round FROM table_name_53 WHERE record = "4-1"
55,948
<question>: What is Opponent, when Location is "Tokyo , Japan", when Method is "Decision (unanimous)", and when Record is "4-1"? <context>: CREATE TABLE table_name_43 (opponent VARCHAR, record VARCHAR, location VARCHAR, method VARCHAR) <answer>: SELECT opponent FROM table_name_43 WHERE location = "tokyo , japan" AND method = "decision (unanimous)" AND record = "4-1"
55,949
<question>: What is Method, when Opponent is "Thiago Alves"? <context>: CREATE TABLE table_name_19 (method VARCHAR, opponent VARCHAR) <answer>: SELECT method FROM table_name_19 WHERE opponent = "thiago alves"
55,950
<question>: What is Event, when Round is "1", when Location is "Osaka , Japan", and when Method is "TKO (corner stoppage)"? <context>: CREATE TABLE table_name_64 (event VARCHAR, method VARCHAR, round VARCHAR, location VARCHAR) <answer>: SELECT event FROM table_name_64 WHERE round = "1" AND location = "osaka , japan" AND method = "tko (corner stoppage)"
55,951
<question>: What is Record, when Event is "UFC 64"? <context>: CREATE TABLE table_name_78 (record VARCHAR, event VARCHAR) <answer>: SELECT record FROM table_name_78 WHERE event = "ufc 64"
55,952
<question>: What is the Record for a game smaller than 24, Lundqvist was the decision, November less than 8, and opponent Was New York Islanders? <context>: CREATE TABLE table_name_57 (record VARCHAR, opponent VARCHAR, november VARCHAR, game VARCHAR, decision VARCHAR) <answer>: SELECT record FROM table_name_57 WHERE game < 24 AND decision = "lundqvist" AND november < 8 AND opponent = "new york islanders"
55,953
<question>: What is the smallest game number with a record of 16-7-2? <context>: CREATE TABLE table_name_44 (game INTEGER, record VARCHAR) <answer>: SELECT MIN(game) FROM table_name_44 WHERE record = "16-7-2"
55,954
<question>: What is the Score of the game with a decision of Lundqvist, the November less than 28, and opponent was Boston Bruins? <context>: CREATE TABLE table_name_31 (score VARCHAR, opponent VARCHAR, decision VARCHAR, november VARCHAR) <answer>: SELECT score FROM table_name_31 WHERE decision = "lundqvist" AND november < 28 AND opponent = "boston bruins"
55,955
<question>: Where was the 2013 Eaff East Asian Cup Qualifier played? <context>: CREATE TABLE table_name_78 (venue VARCHAR, competition VARCHAR) <answer>: SELECT venue FROM table_name_78 WHERE competition = "2013 eaff east asian cup qualifier"
55,956
<question>: What is the highest amount of points with a goal average larger than 4, less than 12 draws, and a goal of 63? <context>: CREATE TABLE table_name_63 (points INTEGER, goals_for VARCHAR, goal_average VARCHAR, draws VARCHAR) <answer>: SELECT MAX(points) FROM table_name_63 WHERE goal_average > 4 AND draws < 12 AND goals_for = 63
55,957
<question>: What is the lowest goal for a goal against 37 and less than 15 victories? <context>: CREATE TABLE table_name_43 (goals_for INTEGER, goals_against VARCHAR, victories VARCHAR) <answer>: SELECT MIN(goals_for) FROM table_name_43 WHERE goals_against = 37 AND victories < 15
55,958
<question>: How many goals on average are there for rank 3? <context>: CREATE TABLE table_name_52 (goals_for INTEGER, rank VARCHAR) <answer>: SELECT AVG(goals_for) FROM table_name_52 WHERE rank = 3
55,959
<question>: What is the average goals against when there are more than 42 played? <context>: CREATE TABLE table_name_55 (goals_against INTEGER, played INTEGER) <answer>: SELECT AVG(goals_against) FROM table_name_55 WHERE played > 42
55,960
<question>: What is the goal difference for the team from Chorley? <context>: CREATE TABLE table_name_99 (goal_difference VARCHAR, team VARCHAR) <answer>: SELECT goal_difference FROM table_name_99 WHERE team = "chorley"
55,961
<question>: What is T8 Place Player Scott Hoch's Score? <context>: CREATE TABLE table_name_26 (score VARCHAR, place VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_26 WHERE place = "t8" AND player = "scott hoch"
55,962
<question>: What is the Place of the Player with a Score of 67-76-74-67=284? <context>: CREATE TABLE table_name_37 (place VARCHAR, score VARCHAR) <answer>: SELECT place FROM table_name_37 WHERE score = 67 - 76 - 74 - 67 = 284
55,963
<question>: What is the Money of the Player with a Score of 69-71-69-72=281? <context>: CREATE TABLE table_name_70 (money___$__ VARCHAR, score VARCHAR) <answer>: SELECT money___$__ FROM table_name_70 WHERE score = 69 - 71 - 69 - 72 = 281
55,964
<question>: What is the highest Rank, when U-17 Goals is "7", and when Player is "Cesc Fàbregas"? <context>: CREATE TABLE table_name_82 (rank INTEGER, u_17_goals VARCHAR, player VARCHAR) <answer>: SELECT MAX(rank) FROM table_name_82 WHERE u_17_goals = 7 AND player = "cesc fàbregas"
55,965
<question>: What is the highest Rank, when U-17 Goals is "9"? <context>: CREATE TABLE table_name_49 (rank INTEGER, u_17_goals VARCHAR) <answer>: SELECT MAX(rank) FROM table_name_49 WHERE u_17_goals = 9
55,966
<question>: What Competition has a Result of Draw? <context>: CREATE TABLE table_name_50 (competition VARCHAR, result VARCHAR) <answer>: SELECT competition FROM table_name_50 WHERE result = "draw"
55,967
<question>: What is the Date of the Competition with a Score of 1–2? <context>: CREATE TABLE table_name_85 (date VARCHAR, score VARCHAR) <answer>: SELECT date FROM table_name_85 WHERE score = "1–2"
55,968
<question>: What New Delhi Competition has a Result of Loss? <context>: CREATE TABLE table_name_33 (competition VARCHAR, venue VARCHAR, result VARCHAR) <answer>: SELECT competition FROM table_name_33 WHERE venue = "new delhi" AND result = "loss"
55,969
<question>: How many rounds in the event when record is 1-5? <context>: CREATE TABLE table_name_7 (round VARCHAR, record VARCHAR) <answer>: SELECT COUNT(round) FROM table_name_7 WHERE record = "1-5"
55,970
<question>: Who is the opponent when there is a win in round greater than 1 and the record is 42-27-10? <context>: CREATE TABLE table_name_23 (opponent VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR) <answer>: SELECT opponent FROM table_name_23 WHERE res = "win" AND round > 1 AND record = "42-27-10"
55,971
<question>: Who is team E when Jason Manning is Team F? <context>: CREATE TABLE table_name_89 (team_e VARCHAR, team_f VARCHAR) <answer>: SELECT team_e FROM table_name_89 WHERE team_f = "jason manning"
55,972
<question>: Who is Team A when wilma hofschneider-david is team C? <context>: CREATE TABLE table_name_35 (team_a VARCHAR, team_c VARCHAR) <answer>: SELECT team_a FROM table_name_35 WHERE team_c = "wilma hofschneider-david"
55,973
<question>: Who is team f when Aida Gagaring is team A? <context>: CREATE TABLE table_name_16 (team_f VARCHAR, team_a VARCHAR) <answer>: SELECT team_f FROM table_name_16 WHERE team_a = "aida gagaring"
55,974
<question>: Who is Team D when Carmen Ada is team C? <context>: CREATE TABLE table_name_61 (team_d VARCHAR, team_c VARCHAR) <answer>: SELECT team_d FROM table_name_61 WHERE team_c = "carmen ada"
55,975
<question>: Who is team e when Aaron Solloway is team D? <context>: CREATE TABLE table_name_94 (team_e VARCHAR, team_d VARCHAR) <answer>: SELECT team_e FROM table_name_94 WHERE team_d = "aaron solloway"
55,976
<question>: Who is team c when dhez javier is team e? <context>: CREATE TABLE table_name_44 (team_c VARCHAR, team_e VARCHAR) <answer>: SELECT team_c FROM table_name_44 WHERE team_e = "dhez javier"
55,977
<question>: What was the country of the player at +5? <context>: CREATE TABLE table_name_68 (country VARCHAR, to_par VARCHAR) <answer>: SELECT country FROM table_name_68 WHERE to_par = "+5"
55,978
<question>: Which player finished at +4? <context>: CREATE TABLE table_name_31 (player VARCHAR, to_par VARCHAR) <answer>: SELECT player FROM table_name_31 WHERE to_par = "+4"
55,979
<question>: What was Bert Yancey's finishing score to par? <context>: CREATE TABLE table_name_21 (to_par VARCHAR, player VARCHAR) <answer>: SELECT to_par FROM table_name_21 WHERE player = "bert yancey"
55,980
<question>: Who was the bachelorette of the season where ian mckee was the winner? <context>: CREATE TABLE table_name_20 (bachelorette VARCHAR, winner VARCHAR) <answer>: SELECT bachelorette FROM table_name_20 WHERE winner = "ian mckee"
55,981
<question>: What is the earliest season with an advertising account manager profile? <context>: CREATE TABLE table_name_38 (season INTEGER, profile VARCHAR) <answer>: SELECT MIN(season) FROM table_name_38 WHERE profile = "advertising account manager"
55,982
<question>: Who is the bachelorette of the season that premiered on May 24, 2010? <context>: CREATE TABLE table_name_37 (bachelorette VARCHAR, premiered VARCHAR) <answer>: SELECT bachelorette FROM table_name_37 WHERE premiered = "may 24, 2010"
55,983
<question>: Who is the bachelorette after season 8? <context>: CREATE TABLE table_name_25 (bachelorette VARCHAR, season INTEGER) <answer>: SELECT bachelorette FROM table_name_25 WHERE season > 8
55,984
<question>: When the conference is west coast and the number of bids are at 2, what's the percentage of games won? <context>: CREATE TABLE table_name_51 (win__percentage VARCHAR, _number_of_bids VARCHAR, conference VARCHAR) <answer>: SELECT win__percentage FROM table_name_51 WHERE _number_of_bids = 2 AND conference = "west coast"
55,985
<question>: If a team had a percentage of games won recorded as .429, what Championship Game was played? <context>: CREATE TABLE table_name_82 (championship_game VARCHAR, win__percentage VARCHAR) <answer>: SELECT championship_game FROM table_name_82 WHERE win__percentage = ".429"
55,986
<question>: What was the attendance for the game in Week 3? <context>: CREATE TABLE table_name_94 (attendance VARCHAR, week VARCHAR) <answer>: SELECT attendance FROM table_name_94 WHERE week = 3
55,987
<question>: On what date was the opponent the Green Bay Packers? <context>: CREATE TABLE table_name_43 (date VARCHAR, opponent VARCHAR) <answer>: SELECT date FROM table_name_43 WHERE opponent = "green bay packers"
55,988
<question>: When did Ismail Qemali Bej's term start? <context>: CREATE TABLE table_name_61 (term_start VARCHAR, name VARCHAR) <answer>: SELECT term_start FROM table_name_61 WHERE name = "ismail qemali bej"
55,989
<question>: When did Fejzi Bej Alizoti's term end? <context>: CREATE TABLE table_name_5 (term_end VARCHAR, name VARCHAR) <answer>: SELECT term_end FROM table_name_5 WHERE name = "fejzi bej alizoti"
55,990
<question>: When did the term end for the person who started their term on 28 November 1912? <context>: CREATE TABLE table_name_89 (term_end VARCHAR, term_start VARCHAR) <answer>: SELECT term_end FROM table_name_89 WHERE term_start = "28 november 1912"
55,991
<question>: When did Fejzi Bej Alizoti's term start? <context>: CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR) <answer>: SELECT term_start FROM table_name_38 WHERE name = "fejzi bej alizoti"
55,992
<question>: What is the sum of Points 1, when Team is "Gainsborough Trinity", and when Played is greater than 46? <context>: CREATE TABLE table_name_55 (points_1 INTEGER, team VARCHAR, played VARCHAR) <answer>: SELECT SUM(points_1) FROM table_name_55 WHERE team = "gainsborough trinity" AND played > 46
55,993
<question>: What is the total number of Points 1, when Lost is less than 20, and when Goals For is greater than 92? <context>: CREATE TABLE table_name_10 (points_1 VARCHAR, lost VARCHAR, goals_for VARCHAR) <answer>: SELECT COUNT(points_1) FROM table_name_10 WHERE lost < 20 AND goals_for > 92
55,994
<question>: What is the total number of Position, when Played is less than 46? <context>: CREATE TABLE table_name_51 (position VARCHAR, played INTEGER) <answer>: SELECT COUNT(position) FROM table_name_51 WHERE played < 46
55,995
<question>: Which Location has a Frequency of 102.5 fm? <context>: CREATE TABLE table_name_4 (location VARCHAR, frequency VARCHAR) <answer>: SELECT location FROM table_name_4 WHERE frequency = "102.5 fm"
55,996
<question>: Which Call sign has a Frequency of 102.5 fm? <context>: CREATE TABLE table_name_26 (call_sign VARCHAR, frequency VARCHAR) <answer>: SELECT call_sign FROM table_name_26 WHERE frequency = "102.5 fm"
55,997
<question>: Which Owner has a Name / Format of 105.3 kool fm - hot adult contemporary? <context>: CREATE TABLE table_name_18 (owner VARCHAR, name___format VARCHAR) <answer>: SELECT owner FROM table_name_18 WHERE name___format = "105.3 kool fm - hot adult contemporary"
55,998
<question>: Which Location has a Call sign of cjtw-fm? <context>: CREATE TABLE table_name_90 (location VARCHAR, call_sign VARCHAR) <answer>: SELECT location FROM table_name_90 WHERE call_sign = "cjtw-fm"
55,999
<question>: Which Frequency has an Owner of rogers communications rogers radio, and a Call sign of cikz-fm? <context>: CREATE TABLE table_name_77 (frequency VARCHAR, owner VARCHAR, call_sign VARCHAR) <answer>: SELECT frequency FROM table_name_77 WHERE owner = "rogers communications rogers radio" AND call_sign = "cikz-fm"