Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
58,700
<question>: The EVA that started on 8 July 12:38 went for how long? <context>: CREATE TABLE table_name_83 (duration VARCHAR, start_date_time VARCHAR) <answer>: SELECT duration FROM table_name_83 WHERE start_date_time = "8 july 12:38"
58,701
<question>: The EVA that started 8 July 12:38 was from what spacecraft? <context>: CREATE TABLE table_name_96 (spacecraft VARCHAR, start_date_time VARCHAR) <answer>: SELECT spacecraft FROM table_name_96 WHERE start_date_time = "8 july 12:38"
58,702
<question>: How many assists were in the k-league competition, which has more than 20 total Gs, the pohang steelers team, and chunnam dragons as the opponent? <context>: CREATE TABLE table_name_90 (assists VARCHAR, opponent VARCHAR, team VARCHAR, competition VARCHAR, total_gs VARCHAR) <answer>: SELECT assists FROM table_name_90 WHERE competition = "k-league" AND total_gs > 20 AND team = "pohang steelers" AND opponent = "chunnam dragons"
58,703
<question>: What is the average number of goals of park sung-ho at the k-league competition, which has the pohang steelers team and less than 46 total Gs? <context>: CREATE TABLE table_name_65 (goals INTEGER, total_gs VARCHAR, name VARCHAR, competition VARCHAR, team VARCHAR) <answer>: SELECT AVG(goals) FROM table_name_65 WHERE competition = "k-league" AND team = "pohang steelers" AND name = "park sung-ho" AND total_gs < 46
58,704
<question>: What is the date of the k-league cup, which has less than 28 goals, at the jeonju venue? <context>: CREATE TABLE table_name_93 (date VARCHAR, competition VARCHAR, venue VARCHAR, goals VARCHAR) <answer>: SELECT date FROM table_name_93 WHERE venue = "jeonju" AND goals < 28 AND competition = "k-league cup"
58,705
<question>: What is the sum of the total As of team bucheon sk, who had the chunnam dragons as their opponent at the bucheon venue? <context>: CREATE TABLE table_name_81 (total_as INTEGER, venue VARCHAR, team VARCHAR, opponent VARCHAR) <answer>: SELECT SUM(total_as) FROM table_name_81 WHERE team = "bucheon sk" AND opponent = "chunnam dragons" AND venue = "bucheon"
58,706
<question>: What is the sum of the assists kang jae-soon had in the k-league competition in ulsan? <context>: CREATE TABLE table_name_6 (assists INTEGER, name VARCHAR, venue VARCHAR, competition VARCHAR) <answer>: SELECT SUM(assists) FROM table_name_6 WHERE venue = "ulsan" AND competition = "k-league" AND name = "kang jae-soon"
58,707
<question>: What is the sum of the goals on 2007-06-16? <context>: CREATE TABLE table_name_16 (goals INTEGER, date VARCHAR) <answer>: SELECT SUM(goals) FROM table_name_16 WHERE date = "2007-06-16"
58,708
<question>: What was Bill Glasson's score to par after 2 rounds? <context>: CREATE TABLE table_name_76 (to_par VARCHAR, player VARCHAR) <answer>: SELECT to_par FROM table_name_76 WHERE player = "bill glasson"
58,709
<question>: What was Phil Mickelson's score to par? <context>: CREATE TABLE table_name_20 (to_par VARCHAR, player VARCHAR) <answer>: SELECT to_par FROM table_name_20 WHERE player = "phil mickelson"
58,710
<question>: What place was Bill Glasson in? <context>: CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR) <answer>: SELECT place FROM table_name_49 WHERE player = "bill glasson"
58,711
<question>: What is the average pick with 85 overall in a round lower than 3? <context>: CREATE TABLE table_name_36 (pick INTEGER, overall VARCHAR, round VARCHAR) <answer>: SELECT AVG(pick) FROM table_name_36 WHERE overall = 85 AND round < 3
58,712
<question>: What was the 2009 results that has q1 for 2010, and A as the result for 2011? <context>: CREATE TABLE table_name_71 (Id VARCHAR) <answer>: SELECT 2009 FROM table_name_71 WHERE 2010 = "q1" AND 2011 = "a"
58,713
<question>: What were the 2009 results that has 0 in 2010? <context>: CREATE TABLE table_name_52 (Id VARCHAR) <answer>: SELECT 2009 FROM table_name_52 WHERE 2010 = "0"
58,714
<question>: With a 2011 of 0 what was the 2006 result? <context>: CREATE TABLE table_name_83 (Id VARCHAR) <answer>: SELECT 2006 FROM table_name_83 WHERE 2011 = "0"
58,715
<question>: What is the result for 2004 when A is the result for 2005, and the result of q1 when 2009? <context>: CREATE TABLE table_name_32 (Id VARCHAR) <answer>: SELECT 2004 FROM table_name_32 WHERE 2005 = "a" AND 2009 = "q1"
58,716
<question>: With a 2008 result of 153 what is the result for 2007? <context>: CREATE TABLE table_name_23 (Id VARCHAR) <answer>: SELECT 2007 FROM table_name_23 WHERE 2008 = "153"
58,717
<question>: What are the results in 2008 when 2009 is 0, and the ATP Tournaments Won is the tournament? <context>: CREATE TABLE table_name_36 (tournament VARCHAR) <answer>: SELECT 2008 FROM table_name_36 WHERE 2009 = "0" AND tournament = "atp tournaments won"
58,718
<question>: Which team was in 1951? <context>: CREATE TABLE table_name_40 (team VARCHAR, year VARCHAR) <answer>: SELECT team FROM table_name_40 WHERE year = 1951
58,719
<question>: What is the date of the match with arnaud di pasquale as the opponent in the final? <context>: CREATE TABLE table_name_69 (date VARCHAR, opponent_in_the_final VARCHAR) <answer>: SELECT date FROM table_name_69 WHERE opponent_in_the_final = "arnaud di pasquale"
58,720
<question>: What is the date of the match with a winner outcome and jim courier as the opponent in the final? <context>: CREATE TABLE table_name_27 (date VARCHAR, outcome VARCHAR, opponent_in_the_final VARCHAR) <answer>: SELECT date FROM table_name_27 WHERE outcome = "winner" AND opponent_in_the_final = "jim courier"
58,721
<question>: What is the surface of the palermo, italy championship? <context>: CREATE TABLE table_name_61 (surface VARCHAR, championship VARCHAR) <answer>: SELECT surface FROM table_name_61 WHERE championship = "palermo, italy"
58,722
<question>: In what Round was OL Player Richard Zulys picked? <context>: CREATE TABLE table_name_92 (round INTEGER, position VARCHAR, player VARCHAR) <answer>: SELECT SUM(round) FROM table_name_92 WHERE position = "ol" AND player = "richard zulys"
58,723
<question>: What is the Player from McGill? <context>: CREATE TABLE table_name_30 (player VARCHAR, school_club_team VARCHAR) <answer>: SELECT player FROM table_name_30 WHERE school_club_team = "mcgill"
58,724
<question>: Which College had an Overall pick of 171? <context>: CREATE TABLE table_name_53 (college VARCHAR, overall VARCHAR) <answer>: SELECT college FROM table_name_53 WHERE overall = 171
58,725
<question>: Who had the overall pick of 72? <context>: CREATE TABLE table_name_36 (name VARCHAR, overall VARCHAR) <answer>: SELECT name FROM table_name_36 WHERE overall = 72
58,726
<question>: What primary conference does the team nicknamed Phoenix belongs to? <context>: CREATE TABLE table_name_39 (primary_conference VARCHAR, team_nickname VARCHAR) <answer>: SELECT primary_conference FROM table_name_39 WHERE team_nickname = "phoenix"
58,727
<question>: Where is the location for the home rink Triangle sports plex/Greensboro ice house? <context>: CREATE TABLE table_name_36 (location VARCHAR, home_rink VARCHAR) <answer>: SELECT location FROM table_name_36 WHERE home_rink = "triangle sports plex/greensboro ice house"
58,728
<question>: What pick was a player that previously played for the Minnesota Lynx? <context>: CREATE TABLE table_name_60 (pick INTEGER, former_wnba_team VARCHAR) <answer>: SELECT SUM(pick) FROM table_name_60 WHERE former_wnba_team = "minnesota lynx"
58,729
<question>: Which player was picked after 23? <context>: CREATE TABLE table_name_89 (player VARCHAR, pick INTEGER) <answer>: SELECT player FROM table_name_89 WHERE pick > 23
58,730
<question>: What is the nationality of the player who went to college at Mississippi? <context>: CREATE TABLE table_name_74 (nationality VARCHAR, college_country_team VARCHAR) <answer>: SELECT nationality FROM table_name_74 WHERE college_country_team = "mississippi"
58,731
<question>: Who is the player who played for the Miami Sol and went to school at North Carolina State? <context>: CREATE TABLE table_name_62 (player VARCHAR, new_wnba_team VARCHAR, college_country_team VARCHAR) <answer>: SELECT player FROM table_name_62 WHERE new_wnba_team = "miami sol" AND college_country_team = "north carolina state"
58,732
<question>: WHAT IS THE AVG AST FOR GAMES LARGER THAN 101, RANK 5, TOTAL ASSISTS SMALLER THAN 331? <context>: CREATE TABLE table_name_74 (ast_avg INTEGER, total_assists VARCHAR, games VARCHAR, rank VARCHAR) <answer>: SELECT AVG(ast_avg) FROM table_name_74 WHERE games > 101 AND rank = 5 AND total_assists < 331
58,733
<question>: WHAT IS THE SUM OF AST AVG WITH RANK 5 AND GAMES BIGGER THAN 108? <context>: CREATE TABLE table_name_20 (ast_avg INTEGER, rank VARCHAR, games VARCHAR) <answer>: SELECT SUM(ast_avg) FROM table_name_20 WHERE rank = 5 AND games > 108
58,734
<question>: Which Round has a Name of john goodyear? <context>: CREATE TABLE table_name_55 (round VARCHAR, name VARCHAR) <answer>: SELECT round FROM table_name_55 WHERE name = "john goodyear"
58,735
<question>: Which Round has a College of appalachian state, and an Overall smaller than 156? <context>: CREATE TABLE table_name_64 (round VARCHAR, college VARCHAR, overall VARCHAR) <answer>: SELECT COUNT(round) FROM table_name_64 WHERE college = "appalachian state" AND overall < 156
58,736
<question>: Which Pick has a Round larger than 17, and a Name of gene stewart? <context>: CREATE TABLE table_name_46 (pick VARCHAR, round VARCHAR, name VARCHAR) <answer>: SELECT COUNT(pick) FROM table_name_46 WHERE round > 17 AND name = "gene stewart"
58,737
<question>: What was the result when the opponent was Rory Markham? <context>: CREATE TABLE table_name_96 (res VARCHAR, opponent VARCHAR) <answer>: SELECT res FROM table_name_96 WHERE opponent = "rory markham"
58,738
<question>: Which Branding has a frequency of 1080khz? <context>: CREATE TABLE table_name_27 (branding VARCHAR, frequency VARCHAR) <answer>: SELECT branding FROM table_name_27 WHERE frequency = "1080khz"
58,739
<question>: Which frequency is located in Dagupan? <context>: CREATE TABLE table_name_23 (frequency VARCHAR, location VARCHAR) <answer>: SELECT frequency FROM table_name_23 WHERE location = "dagupan"
58,740
<question>: What frequency does branding dzec radyo agila 1062 have? <context>: CREATE TABLE table_name_33 (frequency VARCHAR, branding VARCHAR) <answer>: SELECT frequency FROM table_name_33 WHERE branding = "dzec radyo agila 1062"
58,741
<question>: Which frequency has 40kw power? <context>: CREATE TABLE table_name_5 (frequency VARCHAR, power__kw_ VARCHAR) <answer>: SELECT frequency FROM table_name_5 WHERE power__kw_ = "40kw"
58,742
<question>: Which frequency is located in Davao? <context>: CREATE TABLE table_name_35 (frequency VARCHAR, location VARCHAR) <answer>: SELECT frequency FROM table_name_35 WHERE location = "davao"
58,743
<question>: what is the peak population (year) for scranton? <context>: CREATE TABLE table_name_34 (peak_population__year_ VARCHAR, city VARCHAR) <answer>: SELECT peak_population__year_ FROM table_name_34 WHERE city = "scranton"
58,744
<question>: what is the numeric decline from peak population when the perfect decline from peak population is -16.76% <context>: CREATE TABLE table_name_99 (numeric_decline_from_peak_population VARCHAR, percent_decline_from_peak_population VARCHAR) <answer>: SELECT numeric_decline_from_peak_population FROM table_name_99 WHERE percent_decline_from_peak_population = "-16.76%"
58,745
<question>: what is the state when the peak population (year) is 134995 (1950)? <context>: CREATE TABLE table_name_33 (state VARCHAR, peak_population__year_ VARCHAR) <answer>: SELECT state FROM table_name_33 WHERE peak_population__year_ = "134995 (1950)"
58,746
<question>: what is the percent decline from peak population when the peak population (year) is 178320 (1960)? <context>: CREATE TABLE table_name_98 (percent_decline_from_peak_population VARCHAR, peak_population__year_ VARCHAR) <answer>: SELECT percent_decline_from_peak_population FROM table_name_98 WHERE peak_population__year_ = "178320 (1960)"
58,747
<question>: WHAT IS THE RANK OF UNIVERSAL, AND DIRECTOR JOHN HUGHES? <context>: CREATE TABLE table_name_7 (rank VARCHAR, studio VARCHAR, director VARCHAR) <answer>: SELECT rank FROM table_name_7 WHERE studio = "universal" AND director = "john hughes"
58,748
<question>: WHAT IS THE TITLE THAT HAS A RANK BIGGER THAN 10, FOR DIRECTOR WALTER HILL? <context>: CREATE TABLE table_name_98 (title VARCHAR, rank VARCHAR, director VARCHAR) <answer>: SELECT title FROM table_name_98 WHERE rank > 10 AND director = "walter hill"
58,749
<question>: WHAT IS THE STUDIO WITH THE TITLE MASK? <context>: CREATE TABLE table_name_41 (studio VARCHAR, title VARCHAR) <answer>: SELECT studio FROM table_name_41 WHERE title = "mask"
58,750
<question>: WHAT IS THE RANK WITH A GROSS OF $96,773,200? <context>: CREATE TABLE table_name_59 (rank VARCHAR, gross VARCHAR) <answer>: SELECT COUNT(rank) FROM table_name_59 WHERE gross = "$96,773,200"
58,751
<question>: How many times was the player drawn that had less than 12 losses and a goal difference of +20? <context>: CREATE TABLE table_name_44 (drawn VARCHAR, lost VARCHAR, goal_difference VARCHAR) <answer>: SELECT drawn FROM table_name_44 WHERE lost < 12 AND goal_difference = "+20"
58,752
<question>: What is the sum of the positions for the player who had less than 25 losses, a goal difference of +20, 10 draws, and played less than 42? <context>: CREATE TABLE table_name_36 (position INTEGER, played VARCHAR, goal_difference VARCHAR, drawn VARCHAR, lost VARCHAR) <answer>: SELECT SUM(position) FROM table_name_36 WHERE drawn = 10 AND lost < 25 AND goal_difference = "+20" AND played < 42
58,753
<question>: What is the highest number played when there were less than 13 losses and a goal difference of +46? <context>: CREATE TABLE table_name_89 (played INTEGER, lost VARCHAR, goal_difference VARCHAR) <answer>: SELECT MAX(played) FROM table_name_89 WHERE lost < 13 AND goal_difference = "+46"
58,754
<question>: What is listed under points 1 when the position was greater than 4, there were 54 goals for and more than 11 losses? <context>: CREATE TABLE table_name_75 (points_1 VARCHAR, lost VARCHAR, position VARCHAR, goals_for VARCHAR) <answer>: SELECT points_1 FROM table_name_75 WHERE position > 4 AND goals_for = 54 AND lost > 11
58,755
<question>: Who was the worship leader that had a lead supporting vocal Marcus Temu? <context>: CREATE TABLE table_name_33 (worship_leader VARCHAR, lead_supporting_vocal VARCHAR) <answer>: SELECT worship_leader FROM table_name_33 WHERE lead_supporting_vocal = "marcus temu"
58,756
<question>: Who was the lead supporting vocalist on the song that was 4:54 long? <context>: CREATE TABLE table_name_32 (lead_supporting_vocal VARCHAR, time VARCHAR) <answer>: SELECT lead_supporting_vocal FROM table_name_32 WHERE time = "4:54"
58,757
<question>: Who was the Worship Leader for the song that was 7:05 long? <context>: CREATE TABLE table_name_17 (worship_leader VARCHAR, time VARCHAR) <answer>: SELECT worship_leader FROM table_name_17 WHERE time = "7:05"
58,758
<question>: What is the song name that featured Marcus Temu as the lead supporting vocalist? <context>: CREATE TABLE table_name_12 (song VARCHAR, lead_supporting_vocal VARCHAR) <answer>: SELECT song FROM table_name_12 WHERE lead_supporting_vocal = "marcus temu"
58,759
<question>: What's the lowest diameter when the longitude is 71.1w? <context>: CREATE TABLE table_name_71 (diameter INTEGER, longitude VARCHAR) <answer>: SELECT MIN(diameter) FROM table_name_71 WHERE longitude = "71.1w"
58,760
<question>: What is dardanus sulcus' lowest diameter? <context>: CREATE TABLE table_name_7 (diameter INTEGER, name VARCHAR) <answer>: SELECT MIN(diameter) FROM table_name_7 WHERE name = "dardanus sulcus"
58,761
<question>: How many years is ur sulcus listed with a diameter less than 1,145.0? <context>: CREATE TABLE table_name_68 (year_named VARCHAR, name VARCHAR, diameter VARCHAR) <answer>: SELECT COUNT(year_named) FROM table_name_68 WHERE name = "ur sulcus" AND diameter < 1 OFFSET 145.0
58,762
<question>: When the attendance was 3188 what was the score? <context>: CREATE TABLE table_name_78 (score VARCHAR, attendance VARCHAR) <answer>: SELECT score FROM table_name_78 WHERE attendance = 3188
58,763
<question>: What is the maximum number of people in attendance on 16 August 2008 when the home team was Deportes Savio? <context>: CREATE TABLE table_name_69 (attendance INTEGER, date VARCHAR, home VARCHAR) <answer>: SELECT MAX(attendance) FROM table_name_69 WHERE date = "16 august 2008" AND home = "deportes savio"
58,764
<question>: What team was the away team when the Deportes Savio was the home team? <context>: CREATE TABLE table_name_49 (away VARCHAR, home VARCHAR) <answer>: SELECT away FROM table_name_49 WHERE home = "deportes savio"
58,765
<question>: What was the away team when the score was 3:1? <context>: CREATE TABLE table_name_93 (away VARCHAR, score VARCHAR) <answer>: SELECT away FROM table_name_93 WHERE score = "3:1"
58,766
<question>: When Platense was the away team on 16 August 2008 how many people attended the game? <context>: CREATE TABLE table_name_29 (attendance VARCHAR, date VARCHAR, away VARCHAR) <answer>: SELECT attendance FROM table_name_29 WHERE date = "16 august 2008" AND away = "platense"
58,767
<question>: What was the score when 2441 people were in attendance? <context>: CREATE TABLE table_name_17 (score VARCHAR, attendance VARCHAR) <answer>: SELECT score FROM table_name_17 WHERE attendance = 2441
58,768
<question>: Which driver had 35+3 points? <context>: CREATE TABLE table_name_77 (driver VARCHAR, points VARCHAR) <answer>: SELECT driver FROM table_name_77 WHERE points = "35+3"
58,769
<question>: What was the time/retired for the driver with 14 points? <context>: CREATE TABLE table_name_78 (time_retired VARCHAR, points VARCHAR) <answer>: SELECT time_retired FROM table_name_78 WHERE points = "14"
58,770
<question>: What is the sum of goals when the league cup goals are 4 and the FA cup goals are 0? <context>: CREATE TABLE table_name_79 (total VARCHAR, league_cup_goals VARCHAR, fa_cup_goals VARCHAR) <answer>: SELECT total FROM table_name_79 WHERE league_cup_goals = "4" AND fa_cup_goals = "0"
58,771
<question>: What is the amount of FA cups goals that were made when the total goals is greater than 16, and the league cup goals is 1 for the Norwich City club? <context>: CREATE TABLE table_name_78 (fa_cup_goals VARCHAR, club VARCHAR, total VARCHAR, league_cup_goals VARCHAR) <answer>: SELECT fa_cup_goals FROM table_name_78 WHERE total > 16 AND league_cup_goals = "1" AND club = "norwich city"
58,772
<question>: What is the number of league goals when Bill Dearden was the scorer and there was 0 league cup goals? <context>: CREATE TABLE table_name_66 (league_goals VARCHAR, league_cup_goals VARCHAR, scorer VARCHAR) <answer>: SELECT league_goals FROM table_name_66 WHERE league_cup_goals = "0" AND scorer = "bill dearden"
58,773
<question>: What is the name of the player with a transfer window in summer, an undisclosed transfer fee, and is moving from brussels? <context>: CREATE TABLE table_name_15 (name VARCHAR, moving_from VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR) <answer>: SELECT name FROM table_name_15 WHERE transfer_window = "summer" AND transfer_fee = "undisclosed" AND moving_from = "brussels"
58,774
<question>: What is the type of bulykin, which has a summer transfer window? <context>: CREATE TABLE table_name_79 (type VARCHAR, transfer_window VARCHAR, name VARCHAR) <answer>: SELECT type FROM table_name_79 WHERE transfer_window = "summer" AND name = "bulykin"
58,775
<question>: What is the country of cordier? <context>: CREATE TABLE table_name_70 (country VARCHAR, name VARCHAR) <answer>: SELECT country FROM table_name_70 WHERE name = "cordier"
58,776
<question>: What is the country of the player moving from belgrano with a summer transfer window? <context>: CREATE TABLE table_name_69 (country VARCHAR, transfer_window VARCHAR, moving_from VARCHAR) <answer>: SELECT country FROM table_name_69 WHERE transfer_window = "summer" AND moving_from = "belgrano"
58,777
<question>: What is the transfer window of the player moving from barueri? <context>: CREATE TABLE table_name_40 (transfer_window VARCHAR, moving_from VARCHAR) <answer>: SELECT transfer_window FROM table_name_40 WHERE moving_from = "barueri"
58,778
<question>: What is the type of the player moving from belgrano? <context>: CREATE TABLE table_name_11 (type VARCHAR, moving_from VARCHAR) <answer>: SELECT type FROM table_name_11 WHERE moving_from = "belgrano"
58,779
<question>: Average round for 22 pick that is overall smaller than 229? <context>: CREATE TABLE table_name_94 (round INTEGER, pick VARCHAR, overall VARCHAR) <answer>: SELECT AVG(round) FROM table_name_94 WHERE pick = 22 AND overall < 229
58,780
<question>: What is the normal 2002 that has a Country of Peru, and 2007 bigger than 1,200? <context>: CREATE TABLE table_name_88 (country VARCHAR) <answer>: SELECT AVG(2002) FROM table_name_88 WHERE country = "peru" AND 2007 > 1 OFFSET 200
58,781
<question>: What is the least 2009 that has 2005 littler than 640, and 2011 of 425, and 2003 littler than 500? <context>: CREATE TABLE table_name_81 (Id VARCHAR) <answer>: SELECT MIN(2009) FROM table_name_81 WHERE 2005 < 640 AND 2011 = 425 AND 2003 < 500
58,782
<question>: How many Bronze medals did the Nation with 0 Silver receive? <context>: CREATE TABLE table_name_37 (bronze INTEGER, silver INTEGER) <answer>: SELECT MAX(bronze) FROM table_name_37 WHERE silver < 0
58,783
<question>: How many Gold medals did the Nation with less than 8 Total medals including 1 Bronze and 0 Silver receive? <context>: CREATE TABLE table_name_88 (gold INTEGER, silver VARCHAR, total VARCHAR, bronze VARCHAR) <answer>: SELECT MIN(gold) FROM table_name_88 WHERE total < 8 AND bronze < 1 AND silver < 1
58,784
<question>: How many Total medals did the Nation the got 0 Bronze medals receive? <context>: CREATE TABLE table_name_47 (total INTEGER, bronze INTEGER) <answer>: SELECT AVG(total) FROM table_name_47 WHERE bronze < 0
58,785
<question>: What Nation had a more than 1 Total medal including less than 3 Silver, less than 4 Gold and a Rank of 4? <context>: CREATE TABLE table_name_46 (nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR) <answer>: SELECT nation FROM table_name_46 WHERE silver < 3 AND total > 1 AND gold < "4" AND rank = "4"
58,786
<question>: How many Silver medals did the Nation ranking 8 with more than 1 Total medal but less than 1 Gold receive? <context>: CREATE TABLE table_name_21 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR) <answer>: SELECT SUM(silver) FROM table_name_21 WHERE gold < 1 AND rank = "8" AND total > 1
58,787
<question>: What is the start date with Luke Jacobz hosting and Dannii Minogue as a winning mentor? <context>: CREATE TABLE table_name_16 (start VARCHAR, main_host VARCHAR, winning_mentor VARCHAR) <answer>: SELECT start FROM table_name_16 WHERE main_host = "luke jacobz" AND winning_mentor = "dannii minogue"
58,788
<question>: Who was in third place when Guy Sebastian was the winning mentor and Andrew Wishart was the runner-up? <context>: CREATE TABLE table_name_59 (third_place VARCHAR, winning_mentor VARCHAR, runner_up VARCHAR) <answer>: SELECT third_place FROM table_name_59 WHERE winning_mentor = "guy sebastian" AND runner_up = "andrew wishart"
58,789
<question>: In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants? <context>: CREATE TABLE table_name_64 (election INTEGER, mayor VARCHAR, inhabitants VARCHAR) <answer>: SELECT SUM(election) FROM table_name_64 WHERE mayor = "adalberto mosaner" AND inhabitants < 16 OFFSET 170
58,790
<question>: In what Election year were there less than 16,170 Inhabitants? <context>: CREATE TABLE table_name_14 (election VARCHAR, inhabitants INTEGER) <answer>: SELECT COUNT(election) FROM table_name_14 WHERE inhabitants < 16 OFFSET 170
58,791
<question>: What is the Mayor of Riva del Garda in 2010? <context>: CREATE TABLE table_name_37 (mayor VARCHAR, election VARCHAR, municipality VARCHAR) <answer>: SELECT mayor FROM table_name_37 WHERE election = 2010 AND municipality = "riva del garda"
58,792
<question>: How many Inhabitants were there after 2009 in the Municipality with a Party of union for trentino? <context>: CREATE TABLE table_name_7 (inhabitants INTEGER, party VARCHAR, election VARCHAR) <answer>: SELECT AVG(inhabitants) FROM table_name_7 WHERE party = "union for trentino" AND election > 2009
58,793
<question>: What is the lowest enrolled school that was founded in 1992 and joined a conference before 1998? <context>: CREATE TABLE table_name_19 (enrollment INTEGER, founded VARCHAR, joined_conference VARCHAR) <answer>: SELECT MIN(enrollment) FROM table_name_19 WHERE founded = "1992" AND joined_conference < 1998
58,794
<question>: Which foot ball team played soccer at wooster, and Gold in Ashland? <context>: CREATE TABLE table_name_2 (football VARCHAR, soccer VARCHAR, golf VARCHAR) <answer>: SELECT football FROM table_name_2 WHERE soccer = "wooster" AND golf = "ashland"
58,795
<question>: What is the total for the team with fewer than 2 bronze, ranked less than 4 and fewer than 1 silver? <context>: CREATE TABLE table_name_98 (total VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR) <answer>: SELECT COUNT(total) FROM table_name_98 WHERE bronze < 2 AND rank < 4 AND silver < 1
58,796
<question>: How many silver for the team with more than 2 bronze and more than 7 gold? <context>: CREATE TABLE table_name_53 (silver VARCHAR, bronze VARCHAR, gold VARCHAR) <answer>: SELECT COUNT(silver) FROM table_name_53 WHERE bronze > 2 AND gold > 7
58,797
<question>: What is the total for the team with 0 bronze and 3 silver? <context>: CREATE TABLE table_name_41 (total INTEGER, bronze VARCHAR, silver VARCHAR) <answer>: SELECT SUM(total) FROM table_name_41 WHERE bronze = 0 AND silver = 3
58,798
<question>: What is the total number of Rounds held in Nevada, United States in which the time was 1:55? <context>: CREATE TABLE table_name_5 (round VARCHAR, location VARCHAR, time VARCHAR) <answer>: SELECT COUNT(round) FROM table_name_5 WHERE location = "nevada, united states" AND time = "1:55"
58,799
<question>: What was the time when his opponent was Rudy Martin? <context>: CREATE TABLE table_name_5 (time VARCHAR, opponent VARCHAR) <answer>: SELECT time FROM table_name_5 WHERE opponent = "rudy martin"