Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
49,700
<question>: In which tournament was Ian Baker-Finch the runner-up? <context>: CREATE TABLE table_name_27 (tournament VARCHAR, runner_s__up VARCHAR)
SELECT tournament FROM table_name_27 WHERE runner_s__up = "ian baker-finch"
49,701
<question>: What tournament was played on Feb 3, 1991? <context>: CREATE TABLE table_name_5 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_5 WHERE date = "feb 3, 1991"
49,702
<question>: In the Phoenix Open, what was the winning score? <context>: CREATE TABLE table_name_28 (winning_score VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_name_28 WHERE tournament = "phoenix open"
49,703
<question>: In the tournament where Stuart Appleby was the runner-up, what was the margin of victory? <context>: CREATE TABLE table_name_41 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_name_41 WHERE runner_s__up = "stuart appleby"
49,704
<question>: What is the lowest number played with more than 30 points? <context>: CREATE TABLE table_name_21 (played INTEGER, points INTEGER)
SELECT MIN(played) FROM table_name_21 WHERE points > 30
49,705
<question>: What is the highest number lost with more than 29 points and an against less than 19? <context>: CREATE TABLE table_name_58 (lost INTEGER, points VARCHAR, against VARCHAR)
SELECT MAX(lost) FROM table_name_58 WHERE points > 29 AND against < 19
49,706
<question>: What is the total number played with a difference of 22 and less than 34 against? <context>: CREATE TABLE table_name_76 (played VARCHAR, difference VARCHAR, against VARCHAR)
SELECT COUNT(played) FROM table_name_76 WHERE difference = "22" AND against < 34
49,707
<question>: What is the western title of the pinyin new chāojí mǎlìōu xiōngdì? <context>: CREATE TABLE table_name_92 (western_title VARCHAR, pinyin VARCHAR)
SELECT western_title FROM table_name_92 WHERE pinyin = "new chāojí mǎlìōu xiōngdì"
49,708
<question>: What is the genre of the Chinese title 摸摸瓦力欧制造, which has a single-player game mode? <context>: CREATE TABLE table_name_17 (genre VARCHAR, game_modes VARCHAR, chinese_title VARCHAR)
SELECT genre FROM table_name_17 WHERE game_modes = "single-player" AND chinese_title = "摸摸瓦力欧制造"
49,709
<question>: What is the pinyin for the Chinese title 直感一笔? <context>: CREATE TABLE table_name_78 (pinyin VARCHAR, chinese_title VARCHAR)
SELECT pinyin FROM table_name_78 WHERE chinese_title = "直感一笔"
49,710
<question>: What is the release date for the Chinese title 摸摸瓦力欧制造? <context>: CREATE TABLE table_name_46 (released_date VARCHAR, chinese_title VARCHAR)
SELECT released_date FROM table_name_46 WHERE chinese_title = "摸摸瓦力欧制造"
49,711
<question>: What is the western title for the puzzle genre? <context>: CREATE TABLE table_name_56 (western_title VARCHAR, genre VARCHAR)
SELECT western_title FROM table_name_56 WHERE genre = "puzzle"
49,712
<question>: What is the total number of laps for the time of +7.277 and the grid number of more than 6? <context>: CREATE TABLE table_name_56 (laps INTEGER, time VARCHAR, grid VARCHAR)
SELECT SUM(laps) FROM table_name_56 WHERE time = "+7.277" AND grid > 6
49,713
<question>: What is the smallest grid when the time is +8.051 and there were less than 23 laps? <context>: CREATE TABLE table_name_43 (grid INTEGER, time VARCHAR, laps VARCHAR)
SELECT MIN(grid) FROM table_name_43 WHERE time = "+8.051" AND laps < 23
49,714
<question>: What is the average number of goals for players ranked above 9 and playing more than 205 matches? <context>: CREATE TABLE table_name_91 (goals INTEGER, matches VARCHAR, rank VARCHAR)
SELECT AVG(goals) FROM table_name_91 WHERE matches = 205 AND rank > 9
49,715
<question>: What is the average rank for players with under 205 matches and under 100 goals? <context>: CREATE TABLE table_name_92 (rank INTEGER, matches VARCHAR, goals VARCHAR)
SELECT AVG(rank) FROM table_name_92 WHERE matches < 205 AND goals < 100
49,716
<question>: What years played did the player with a rank under 10, more than 271 matches, and 152 goals have? <context>: CREATE TABLE table_name_82 (years VARCHAR, goals VARCHAR, rank VARCHAR, matches VARCHAR)
SELECT years FROM table_name_82 WHERE rank < 10 AND matches > 271 AND goals = 152
49,717
<question>: Who's the Republican ticket with a Communist ticket of elizabeth gurley flynn? <context>: CREATE TABLE table_name_32 (republican_ticket VARCHAR, communist_ticket VARCHAR)
SELECT republican_ticket FROM table_name_32 WHERE communist_ticket = "elizabeth gurley flynn"
49,718
<question>: Who's the Communist ticket with an American Labor ticket of joseph v. o'leary? <context>: CREATE TABLE table_name_49 (communist_ticket VARCHAR, american_labor_ticket VARCHAR)
SELECT communist_ticket FROM table_name_49 WHERE american_labor_ticket = "joseph v. o'leary"
49,719
<question>: Who's the Republican ticket with a Democratic ticket of flora d. johnson? <context>: CREATE TABLE table_name_62 (republican_ticket VARCHAR, democratic_ticket VARCHAR)
SELECT republican_ticket FROM table_name_62 WHERE democratic_ticket = "flora d. johnson"
49,720
<question>: Who's the Republican ticket with a Communist ticket of (none), and a Socialist ticket of joseph g. glass? <context>: CREATE TABLE table_name_8 (republican_ticket VARCHAR, communist_ticket VARCHAR, socialist_ticket VARCHAR)
SELECT republican_ticket FROM table_name_8 WHERE communist_ticket = "(none)" AND socialist_ticket = "joseph g. glass"
49,721
<question>: Who's the Republican ticket with a Democratic ticket of matthew j. merritt? <context>: CREATE TABLE table_name_49 (republican_ticket VARCHAR, democratic_ticket VARCHAR)
SELECT republican_ticket FROM table_name_49 WHERE democratic_ticket = "matthew j. merritt"
49,722
<question>: What is the giant slalom with a 37 super g? <context>: CREATE TABLE table_name_94 (Giant VARCHAR, super_g VARCHAR)
SELECT Giant AS slalom FROM table_name_94 WHERE super_g = "37"
49,723
<question>: What season had a game in the first round with a result of 4–1, 0–1? <context>: CREATE TABLE table_name_87 (season VARCHAR, round VARCHAR, result VARCHAR)
SELECT season FROM table_name_87 WHERE round = "first round" AND result = "4–1, 0–1"
49,724
<question>: What country had an opponent of Sampdoria? <context>: CREATE TABLE table_name_44 (country VARCHAR, opponent VARCHAR)
SELECT country FROM table_name_44 WHERE opponent = "sampdoria"
49,725
<question>: Who was the opponent during the second round? <context>: CREATE TABLE table_name_64 (opponent VARCHAR, round VARCHAR)
SELECT opponent FROM table_name_64 WHERE round = "second round"
49,726
<question>: What was the result of the second round? <context>: CREATE TABLE table_name_5 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_5 WHERE round = "second round"
49,727
<question>: What Opponent has an Attendance that is 26,880? <context>: CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_86 WHERE attendance = "26,880"
49,728
<question>: What nation has a Record of 5.06m(16ft7in)? <context>: CREATE TABLE table_name_95 (nation VARCHAR, record VARCHAR)
SELECT nation FROM table_name_95 WHERE record = "5.06m(16ft7in)"
49,729
<question>: What is the Date when Russia was the nation and the venue was madrid , spain? <context>: CREATE TABLE table_name_47 (date VARCHAR, nation VARCHAR, venue VARCHAR)
SELECT date FROM table_name_47 WHERE nation = "russia" AND venue = "madrid , spain"
49,730
<question>: What is the Date when yelena isinbayeva was the Athlete, with a Record of 4.90m(16ft0¾in)? <context>: CREATE TABLE table_name_45 (date VARCHAR, athlete VARCHAR, record VARCHAR)
SELECT date FROM table_name_45 WHERE athlete = "yelena isinbayeva" AND record = "4.90m(16ft0¾in)"
49,731
<question>: What is the Nation when the Athlete was emma george, and a Record of 4.58m(15ft0¼in)? <context>: CREATE TABLE table_name_62 (nation VARCHAR, athlete VARCHAR, record VARCHAR)
SELECT nation FROM table_name_62 WHERE athlete = "emma george" AND record = "4.58m(15ft0¼in)"
49,732
<question>: Who tied with 8 losses and 50% wins? <context>: CREATE TABLE table_name_19 (tied VARCHAR, losses VARCHAR, win__percentage VARCHAR)
SELECT tied FROM table_name_19 WHERE losses = "8" AND win__percentage = "50%"
49,733
<question>: Which win has a loss of IPL? <context>: CREATE TABLE table_name_34 (wins VARCHAR, losses VARCHAR)
SELECT wins FROM table_name_34 WHERE losses = "ipl"
49,734
<question>: Which win has 38.67% wins? <context>: CREATE TABLE table_name_71 (wins VARCHAR, win__percentage VARCHAR)
SELECT wins FROM table_name_71 WHERE win__percentage = "38.67%"
49,735
<question>: What percentage of wins has 48 losses? <context>: CREATE TABLE table_name_4 (win__percentage VARCHAR, losses VARCHAR)
SELECT win__percentage FROM table_name_4 WHERE losses = "48"
49,736
<question>: What was tied at 15 played? <context>: CREATE TABLE table_name_50 (tied VARCHAR, played VARCHAR)
SELECT tied FROM table_name_50 WHERE played = "15"
49,737
<question>: What was the average round for john markham draft pick? <context>: CREATE TABLE table_name_36 (round INTEGER, player VARCHAR)
SELECT AVG(round) FROM table_name_36 WHERE player = "john markham"
49,738
<question>: What school did draft pick before 125, will allen go to? <context>: CREATE TABLE table_name_91 (school VARCHAR, pick VARCHAR, player VARCHAR)
SELECT school FROM table_name_91 WHERE pick < 125 AND player = "will allen"
49,739
<question>: What school did draft pick from round 3 go to? <context>: CREATE TABLE table_name_6 (school VARCHAR, round VARCHAR)
SELECT school FROM table_name_6 WHERE round = 3
49,740
<question>: What is the fewest games lost by Paulistano with more than 39 points? <context>: CREATE TABLE table_name_85 (lost INTEGER, team VARCHAR, points VARCHAR)
SELECT MIN(lost) FROM table_name_85 WHERE team = "paulistano" AND points > 39
49,741
<question>: How many games were played against when the team played more than 22 total? <context>: CREATE TABLE table_name_97 (against INTEGER, played INTEGER)
SELECT SUM(against) FROM table_name_97 WHERE played > 22
49,742
<question>: What was the highest number of against when the difference was 58 and the total played was more than 22? <context>: CREATE TABLE table_name_62 (against INTEGER, difference VARCHAR, played VARCHAR)
SELECT MAX(against) FROM table_name_62 WHERE difference = "58" AND played > 22
49,743
<question>: What is the Score with a Winning team that is san antonio spurs? <context>: CREATE TABLE table_name_48 (score VARCHAR, winning_team VARCHAR)
SELECT score FROM table_name_48 WHERE winning_team = "san antonio spurs"
49,744
<question>: Which Result has an Attendance of 60,705? <context>: CREATE TABLE table_name_72 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_72 WHERE attendance = "60,705"
49,745
<question>: How many Weeks have a Result of w 17–13? <context>: CREATE TABLE table_name_82 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_82 WHERE result = "w 17–13"
49,746
<question>: Which Opponent that has a Week larger than 3 on october 6, 1991? <context>: CREATE TABLE table_name_78 (opponent VARCHAR, week VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_78 WHERE week > 3 AND date = "october 6, 1991"
49,747
<question>: When has Attendances of 45,795? <context>: CREATE TABLE table_name_7 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_7 WHERE attendance = "45,795"
49,748
<question>: In what Week has a Result of l 24–20, and a Opponent of at new england patriots? <context>: CREATE TABLE table_name_32 (week INTEGER, result VARCHAR, opponent VARCHAR)
SELECT MAX(week) FROM table_name_32 WHERE result = "l 24–20" AND opponent = "at new england patriots"
49,749
<question>: What years were the goals less then 160? <context>: CREATE TABLE table_name_41 (years VARCHAR, goals INTEGER)
SELECT years FROM table_name_41 WHERE goals < 160
49,750
<question>: What is the IATA code for the airport with an ICAO code of HLLS? <context>: CREATE TABLE table_name_19 (iata VARCHAR, icao VARCHAR)
SELECT iata FROM table_name_19 WHERE icao = "hlls"
49,751
<question>: What airport is in Sabha? <context>: CREATE TABLE table_name_43 (airport VARCHAR, city VARCHAR)
SELECT airport FROM table_name_43 WHERE city = "sabha"
49,752
<question>: What is the ICAO code for the airport with RBA as its IATA code? <context>: CREATE TABLE table_name_1 (icao VARCHAR, iata VARCHAR)
SELECT icao FROM table_name_1 WHERE iata = "rba"
49,753
<question>: What country is Istanbul in? <context>: CREATE TABLE table_name_11 (country VARCHAR, city VARCHAR)
SELECT country FROM table_name_11 WHERE city = "istanbul"
49,754
<question>: Which airport has SEB as its IATA code? <context>: CREATE TABLE table_name_86 (airport VARCHAR, iata VARCHAR)
SELECT airport FROM table_name_86 WHERE iata = "seb"
49,755
<question>: What position does the player from Winston-Salem State play? <context>: CREATE TABLE table_name_89 (position VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_89 WHERE school_club_team = "winston-salem state"
49,756
<question>: What is the total number of points for the song that was ranked 6th and had a draw number smaller than 5? <context>: CREATE TABLE table_name_23 (points VARCHAR, rank VARCHAR, draw VARCHAR)
SELECT COUNT(points) FROM table_name_23 WHERE rank = "6th" AND draw < 5
49,757
<question>: When was the average year that the number of floors was greater than 75? <context>: CREATE TABLE table_name_78 (year INTEGER, floors INTEGER)
SELECT AVG(year) FROM table_name_78 WHERE floors > 75
49,758
<question>: What is the average number of floors of the Venetian tower? <context>: CREATE TABLE table_name_59 (floors INTEGER, name VARCHAR)
SELECT AVG(floors) FROM table_name_59 WHERE name = "venetian tower"
49,759
<question>: Which arena was founded in 2000? <context>: CREATE TABLE table_name_5 (arena VARCHAR, founded VARCHAR)
SELECT arena FROM table_name_5 WHERE founded = 2000
49,760
<question>: Can you tell me the total number of Rank that has the Matches of 427, and the Goals smaller than 320? <context>: CREATE TABLE table_name_58 (rank VARCHAR, matches VARCHAR, goals VARCHAR)
SELECT COUNT(rank) FROM table_name_58 WHERE matches = "427" AND goals < 320
49,761
<question>: Can you tell me the Matches that has the Rank of 1? <context>: CREATE TABLE table_name_89 (matches VARCHAR, rank VARCHAR)
SELECT matches FROM table_name_89 WHERE rank = 1
49,762
<question>: Can you tell me the Matches that has the Rank smaller than 6, and the Years of 1943-62? <context>: CREATE TABLE table_name_55 (matches VARCHAR, rank VARCHAR, years VARCHAR)
SELECT matches FROM table_name_55 WHERE rank < 6 AND years = "1943-62"
49,763
<question>: Which class had a number under 4 and was built in 1988? <context>: CREATE TABLE table_name_52 (class VARCHAR, number VARCHAR, built VARCHAR)
SELECT class FROM table_name_52 WHERE number < 4 AND built = "1988"
49,764
<question>: How many items withdrawn had numbers over 5? <context>: CREATE TABLE table_name_93 (withdrawn VARCHAR, number INTEGER)
SELECT COUNT(withdrawn) FROM table_name_93 WHERE number > 5
49,765
<question>: What is the sum of numbers that had a type of Driving Van Trailer? <context>: CREATE TABLE table_name_65 (number INTEGER, type VARCHAR)
SELECT SUM(number) FROM table_name_65 WHERE type = "driving van trailer"
49,766
<question>: What rank has 1 silver, more than 2 gold, and a total larger than 3? <context>: CREATE TABLE table_name_61 (rank VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR)
SELECT COUNT(rank) FROM table_name_61 WHERE silver = 1 AND total > 3 AND gold > 2
49,767
<question>: What is the most gold where silver is 0? <context>: CREATE TABLE table_name_42 (gold INTEGER, silver INTEGER)
SELECT MAX(gold) FROM table_name_42 WHERE silver < 0
49,768
<question>: What is the number of silver where the rank is higher than 4 and bronze is smaller than 1? <context>: CREATE TABLE table_name_16 (silver VARCHAR, rank VARCHAR, bronze VARCHAR)
SELECT COUNT(silver) FROM table_name_16 WHERE rank > 4 AND bronze < 1
49,769
<question>: What is the rank where the gold is 0? <context>: CREATE TABLE table_name_70 (rank INTEGER, gold INTEGER)
SELECT AVG(rank) FROM table_name_70 WHERE gold < 0
49,770
<question>: What is the rank that has 1 bronze and 1 silver? <context>: CREATE TABLE table_name_63 (rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT COUNT(rank) FROM table_name_63 WHERE bronze = 1 AND silver > 1
49,771
<question>: What is the total launch failures when there are 4 launches, and the not usable is greater than 0? <context>: CREATE TABLE table_name_73 (launch_failures INTEGER, launched VARCHAR, not_usable VARCHAR)
SELECT SUM(launch_failures) FROM table_name_73 WHERE launched = 4 AND not_usable > 0
49,772
<question>: What is the highest number of not usable satellites when there are more than 0 launch failures, less than 30 retired, and the block is I? <context>: CREATE TABLE table_name_30 (not_usable INTEGER, block VARCHAR, launch_failures VARCHAR, retired VARCHAR)
SELECT MAX(not_usable) FROM table_name_30 WHERE launch_failures > 0 AND retired < 30 AND block = "block i"
49,773
<question>: What is the average number of not usable satellited when there are 0 retired, and the launch failures are less than 1? <context>: CREATE TABLE table_name_46 (not_usable INTEGER, retired VARCHAR, launch_failures VARCHAR)
SELECT AVG(not_usable) FROM table_name_46 WHERE retired = 0 AND launch_failures < 1
49,774
<question>: What is the lowest number of members on the Cultural and Educational Panel, when the University of Dublin had 3 members, when the Industrial and Commercial Panel had more than 0 members, and when the Agricultural Panel had more than 4 members? <context>: CREATE TABLE table_name_28 (cultural_and_educational_panel INTEGER, agricultural_panel VARCHAR, university_of_dublin VARCHAR, industrial_and_commercial_panel VARCHAR)
SELECT MIN(cultural_and_educational_panel) FROM table_name_28 WHERE university_of_dublin < 3 AND industrial_and_commercial_panel > 0 AND agricultural_panel > 4
49,775
<question>: What was the average number of members Nominated by the Taoiseach, when the Agricultural Panel had less than 1 member, and when the Administrative Panel had fewer than 0 members? <context>: CREATE TABLE table_name_10 (nominated_by_the_taoiseach INTEGER, agricultural_panel VARCHAR, administrative_panel VARCHAR)
SELECT AVG(nominated_by_the_taoiseach) FROM table_name_10 WHERE agricultural_panel < 1 AND administrative_panel < 0
49,776
<question>: What was the lowest number of members on the Agricultural Panel, when the Industrial and Commercial Panel had 9 members, and when the National University of Ireland had more than 3 members? <context>: CREATE TABLE table_name_29 (agricultural_panel INTEGER, industrial_and_commercial_panel VARCHAR, national_university_of_ireland VARCHAR)
SELECT MIN(agricultural_panel) FROM table_name_29 WHERE industrial_and_commercial_panel = 9 AND national_university_of_ireland > 3
49,777
<question>: What was the greatest number of members for the National University of Ireland, when the Total number of members in the Seanad was 60, and when the Administrative Panel had more than 7 members? <context>: CREATE TABLE table_name_57 (national_university_of_ireland INTEGER, total VARCHAR, administrative_panel VARCHAR)
SELECT MAX(national_university_of_ireland) FROM table_name_57 WHERE total = 60 AND administrative_panel > 7
49,778
<question>: What is Final round, when Player is Danilo Gallinari? <context>: CREATE TABLE table_name_50 (final_round VARCHAR, player VARCHAR)
SELECT final_round FROM table_name_50 WHERE player = "danilo gallinari"
49,779
<question>: For the film with director listed as 1998, what was the gross in Singapore? <context>: CREATE TABLE table_name_64 (singapore_gross VARCHAR, director VARCHAR)
SELECT singapore_gross FROM table_name_64 WHERE director = "1998"
49,780
<question>: Who was the director for the film produced by River Films? <context>: CREATE TABLE table_name_96 (director VARCHAR, producer VARCHAR)
SELECT director FROM table_name_96 WHERE producer = "river films"
49,781
<question>: Who was the producer for the film directed by 1998? <context>: CREATE TABLE table_name_45 (producer VARCHAR, director VARCHAR)
SELECT producer FROM table_name_45 WHERE director = "1998"
49,782
<question>: For the film titled 1997, what was the gross in Singapore? <context>: CREATE TABLE table_name_3 (singapore_gross VARCHAR, title VARCHAR)
SELECT singapore_gross FROM table_name_3 WHERE title = "1997"
49,783
<question>: Who was the producer for the film directed by 1997? <context>: CREATE TABLE table_name_42 (producer VARCHAR, director VARCHAR)
SELECT producer FROM table_name_42 WHERE director = "1997"
49,784
<question>: For the directed by 1991, what was the gross in Singapore? <context>: CREATE TABLE table_name_66 (singapore_gross VARCHAR, director VARCHAR)
SELECT singapore_gross FROM table_name_66 WHERE director = "1991"
49,785
<question>: What is the most points scored for teams with under 25 goals scored, 3 draws, and more than 21 games played? <context>: CREATE TABLE table_name_36 (points INTEGER, games_played VARCHAR, goals_scored VARCHAR, draws VARCHAR)
SELECT MAX(points) FROM table_name_36 WHERE goals_scored < 25 AND draws = 3 AND games_played > 21
49,786
<question>: What day was there a set 1 of 25-18? <context>: CREATE TABLE table_name_23 (date VARCHAR, set_1 VARCHAR)
SELECT date FROM table_name_23 WHERE set_1 = "25-18"
49,787
<question>: What is the Week when the kick off was at 4:05 pm, and the result was w 31–14? <context>: CREATE TABLE table_name_92 (week VARCHAR, kickoff___et__ VARCHAR, result VARCHAR)
SELECT week FROM table_name_92 WHERE kickoff___et__ = "4:05 pm" AND result = "w 31–14"
49,788
<question>: What time was the kickoff when the miami dolphins were the opponent? <context>: CREATE TABLE table_name_31 (kickoff___et__ VARCHAR, opponent VARCHAR)
SELECT kickoff___et__ FROM table_name_31 WHERE opponent = "miami dolphins"
49,789
<question>: What is Round 2 when Round 4 is Double and Round 3 is Single? <context>: CREATE TABLE table_name_56 (round_2 VARCHAR, round_4 VARCHAR, round_3 VARCHAR)
SELECT round_2 FROM table_name_56 WHERE round_4 = "double" AND round_3 = "single"
49,790
<question>: What points has united kingdom as the country, and 10 as the place? <context>: CREATE TABLE table_name_29 (points VARCHAR, country VARCHAR, place VARCHAR)
SELECT points FROM table_name_29 WHERE country = "united kingdom" AND place = 10
49,791
<question>: What machine has tony rutter as the rider? <context>: CREATE TABLE table_name_68 (machine VARCHAR, rider VARCHAR)
SELECT machine FROM table_name_68 WHERE rider = "tony rutter"
49,792
<question>: What machine has 5 as the place? <context>: CREATE TABLE table_name_95 (machine VARCHAR, place VARCHAR)
SELECT machine FROM table_name_95 WHERE place = 5
49,793
<question>: How many places have yamaha as the machine, and 89.85mph as the speed? <context>: CREATE TABLE table_name_30 (place INTEGER, machine VARCHAR, speed VARCHAR)
SELECT SUM(place) FROM table_name_30 WHERE machine = "yamaha" AND speed = "89.85mph"
49,794
<question>: How many places did the artist Big Hit have with less than 2934 votes? <context>: CREATE TABLE table_name_21 (place VARCHAR, artist VARCHAR, votes VARCHAR)
SELECT COUNT(place) FROM table_name_21 WHERE artist = "big hit" AND votes < 2934
49,795
<question>: How many average votes did producer carlos coelho have in a higher place than 6 and with a draw larger than 5? <context>: CREATE TABLE table_name_58 (votes INTEGER, draw VARCHAR, place VARCHAR, producer VARCHAR)
SELECT AVG(votes) FROM table_name_58 WHERE place < 6 AND producer = "carlos coelho" AND draw > 5
49,796
<question>: What is the name of the MySpace Band with an Original Airdate of 19 february 2008? <context>: CREATE TABLE table_name_38 (myspace_band VARCHAR, original_airdate VARCHAR)
SELECT myspace_band FROM table_name_38 WHERE original_airdate = "19 february 2008"
49,797
<question>: What is the Musical Guest/Song with a pilot of 3? <context>: CREATE TABLE table_name_99 (musical_guest_song_performed VARCHAR, pilot VARCHAR)
SELECT musical_guest_song_performed FROM table_name_99 WHERE pilot = "3"
49,798
<question>: What is the Original Airdate for the YouTube Hero greg pattillo? <context>: CREATE TABLE table_name_26 (original_airdate VARCHAR, youtube_hero VARCHAR)
SELECT original_airdate FROM table_name_26 WHERE youtube_hero = "greg pattillo"
49,799
<question>: What is the Musical Guest/Song with an original airdate of january 2008? <context>: CREATE TABLE table_name_85 (musical_guest_song_performed VARCHAR, original_airdate VARCHAR)
SELECT musical_guest_song_performed FROM table_name_85 WHERE original_airdate = "january 2008"