Unnamed: 0
int64 0
60k
| text
stringlengths 109
1.06k
|
---|---|
54,000 |
<question>: What position was played by the player during 1986 β 1991 1997 β 1999? <context>: CREATE TABLE table_name_57 (position VARCHAR, years VARCHAR) <answer>: SELECT position FROM table_name_57 WHERE years = "1986 β 1991 1997 β 1999"
|
54,001 |
<question>: During what years was the Jersey Numbers 34, 30 played? <context>: CREATE TABLE table_name_13 (years VARCHAR, jersey_number_s_ VARCHAR) <answer>: SELECT years FROM table_name_13 WHERE jersey_number_s_ = "34, 30"
|
54,002 |
<question>: What is Record, when Opponent is San Francisco Warriors? <context>: CREATE TABLE table_name_78 (record VARCHAR, opponent VARCHAR) <answer>: SELECT record FROM table_name_78 WHERE opponent = "san francisco warriors"
|
54,003 |
<question>: What is H/A/N, when Date is October 31? <context>: CREATE TABLE table_name_50 (h_a_n VARCHAR, date VARCHAR) <answer>: SELECT h_a_n FROM table_name_50 WHERE date = "october 31"
|
54,004 |
<question>: What is Score, when Opponent is Atlanta Hawks? <context>: CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR) <answer>: SELECT score FROM table_name_44 WHERE opponent = "atlanta hawks"
|
54,005 |
<question>: What is H/A/N, when Record is 2-5? <context>: CREATE TABLE table_name_74 (h_a_n VARCHAR, record VARCHAR) <answer>: SELECT h_a_n FROM table_name_74 WHERE record = "2-5"
|
54,006 |
<question>: What is Record, when Date is October 31? <context>: CREATE TABLE table_name_37 (record VARCHAR, date VARCHAR) <answer>: SELECT record FROM table_name_37 WHERE date = "october 31"
|
54,007 |
<question>: What is Record, when H/A/N is n? <context>: CREATE TABLE table_name_42 (record VARCHAR, h_a_n VARCHAR) <answer>: SELECT record FROM table_name_42 WHERE h_a_n = "n"
|
54,008 |
<question>: What was the guage of the concessionaire ferrosur roca? <context>: CREATE TABLE table_name_8 (gauge VARCHAR, concessionaire VARCHAR) <answer>: SELECT gauge FROM table_name_8 WHERE concessionaire = "ferrosur roca"
|
54,009 |
<question>: What is the takeover date of the FA division mitre? <context>: CREATE TABLE table_name_19 (takeover_date VARCHAR, fa_division_s_ VARCHAR) <answer>: SELECT takeover_date FROM table_name_19 WHERE fa_division_s_ = "mitre"
|
54,010 |
<question>: What date was the tournament in Indian Wells? <context>: CREATE TABLE table_name_39 (date VARCHAR, tournament VARCHAR) <answer>: SELECT date FROM table_name_39 WHERE tournament = "indian wells"
|
54,011 |
<question>: Who was the opponent in the math that was played in Nice on a clay court? <context>: CREATE TABLE table_name_23 (opponent VARCHAR, surface VARCHAR, tournament VARCHAR) <answer>: SELECT opponent FROM table_name_23 WHERE surface = "clay" AND tournament = "nice"
|
54,012 |
<question>: What was the score in the match against Sergi Bruguera? <context>: CREATE TABLE table_name_70 (score VARCHAR, opponent VARCHAR) <answer>: SELECT score FROM table_name_70 WHERE opponent = "sergi bruguera"
|
54,013 |
<question>: What was the score of the tournament in Wellington? <context>: CREATE TABLE table_name_5 (score VARCHAR, tournament VARCHAR) <answer>: SELECT score FROM table_name_5 WHERE tournament = "wellington"
|
54,014 |
<question>: Which race was in round 6? <context>: CREATE TABLE table_name_10 (race_name VARCHAR, round VARCHAR) <answer>: SELECT race_name FROM table_name_10 WHERE round = 6
|
54,015 |
<question>: Which round did jonathan bomarito win? <context>: CREATE TABLE table_name_23 (round VARCHAR, winning_driver VARCHAR) <answer>: SELECT round FROM table_name_23 WHERE winning_driver = "jonathan bomarito"
|
54,016 |
<question>: What race did the team Mi-Jack Conquest racing win with a pole position of andreas wirth? <context>: CREATE TABLE table_name_16 (race_name VARCHAR, winning_team VARCHAR, pole_position VARCHAR) <answer>: SELECT race_name FROM table_name_16 WHERE winning_team = "mi-jack conquest racing" AND pole_position = "andreas wirth"
|
54,017 |
<question>: What race after round 6 did Graham Rahal win with a pole position of graham rahal? <context>: CREATE TABLE table_name_59 (race_name VARCHAR, pole_position VARCHAR, winning_driver VARCHAR, round VARCHAR) <answer>: SELECT race_name FROM table_name_59 WHERE winning_driver = "graham rahal" AND round > 6 AND pole_position = "graham rahal"
|
54,018 |
<question>: What pole position did 2006 gehl championship finale have? <context>: CREATE TABLE table_name_82 (pole_position VARCHAR, race_name VARCHAR) <answer>: SELECT pole_position FROM table_name_82 WHERE race_name = "2006 gehl championship finale"
|
54,019 |
<question>: who is the player when the place is t5 and the score is 69-74=143? <context>: CREATE TABLE table_name_26 (player VARCHAR, place VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_26 WHERE place = "t5" AND score = 69 - 74 = 143
|
54,020 |
<question>: what is the score when the country is united states, the to par is +2 and the player is phil hancock? <context>: CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR) <answer>: SELECT score FROM table_name_49 WHERE country = "united states" AND to_par = "+2" AND player = "phil hancock"
|
54,021 |
<question>: what is the place for gary player? <context>: CREATE TABLE table_name_98 (place VARCHAR, player VARCHAR) <answer>: SELECT place FROM table_name_98 WHERE player = "gary player"
|
54,022 |
<question>: what is the place when the score is 70-72=142? <context>: CREATE TABLE table_name_48 (place VARCHAR, score VARCHAR) <answer>: SELECT place FROM table_name_48 WHERE score = 70 - 72 = 142
|
54,023 |
<question>: what is the place when the score is 70-70=140? <context>: CREATE TABLE table_name_53 (place VARCHAR, score VARCHAR) <answer>: SELECT place FROM table_name_53 WHERE score = 70 - 70 = 140
|
54,024 |
<question>: who is the player when the country is united states and the score is 71-73=144? <context>: CREATE TABLE table_name_93 (player VARCHAR, country VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_93 WHERE country = "united states" AND score = 71 - 73 = 144
|
54,025 |
<question>: What school or team is in a round below 5 with a pick of 2? <context>: CREATE TABLE table_name_57 (school_club_team VARCHAR, round VARCHAR, pick VARCHAR) <answer>: SELECT school_club_team FROM table_name_57 WHERE round < 5 AND pick = 2
|
54,026 |
<question>: Who is the player with a pick less than 234 and a quarterback position? <context>: CREATE TABLE table_name_55 (player VARCHAR, pick VARCHAR, position VARCHAR) <answer>: SELECT player FROM table_name_55 WHERE pick < 234 AND position = "quarterback"
|
54,027 |
<question>: Who is the player in tight end position in a round below 12 that has a pick greater than 17? <context>: CREATE TABLE table_name_81 (player VARCHAR, position VARCHAR, pick VARCHAR, round VARCHAR) <answer>: SELECT player FROM table_name_81 WHERE pick > 17 AND round < 12 AND position = "tight end"
|
54,028 |
<question>: How many picks does Auburn have? <context>: CREATE TABLE table_name_47 (pick VARCHAR, school_club_team VARCHAR) <answer>: SELECT COUNT(pick) FROM table_name_47 WHERE school_club_team = "auburn"
|
54,029 |
<question>: What is the career for 2007 3r, and 1999 1r? <context>: CREATE TABLE table_name_80 (career VARCHAR) <answer>: SELECT career FROM table_name_80 WHERE 2007 = "3r" AND 1999 = "1r"
|
54,030 |
<question>: What is the career for the 2006 3r, and the 1999 2r? <context>: CREATE TABLE table_name_70 (career VARCHAR) <answer>: SELECT career FROM table_name_70 WHERE 2006 = "3r" AND 1999 = "2r"
|
54,031 |
<question>: Who in 2009, has a 2003 2r and a 2000 2r? <context>: CREATE TABLE table_name_64 (Id VARCHAR) <answer>: SELECT 2009 FROM table_name_64 WHERE 2003 = "2r" AND 2000 = "2r"
|
54,032 |
<question>: What is Result/Score, when Year is greater than 2005, and when Opponent is #8 Arkansas #1 Memphis? <context>: CREATE TABLE table_name_92 (result_score VARCHAR, year VARCHAR, opponent VARCHAR) <answer>: SELECT result_score FROM table_name_92 WHERE year > 2005 AND opponent = "#8 arkansas #1 memphis"
|
54,033 |
<question>: What is the highest Year, when Opponent is #2 Syracuse? <context>: CREATE TABLE table_name_52 (year INTEGER, opponent VARCHAR) <answer>: SELECT MAX(year) FROM table_name_52 WHERE opponent = "#2 syracuse"
|
54,034 |
<question>: What is Round when Year is 1987? <context>: CREATE TABLE table_name_92 (round VARCHAR, year VARCHAR) <answer>: SELECT round FROM table_name_92 WHERE year = 1987
|
54,035 |
<question>: What is the sum of Year, when Opponent is #3 UCONN? <context>: CREATE TABLE table_name_40 (year INTEGER, opponent VARCHAR) <answer>: SELECT SUM(year) FROM table_name_40 WHERE opponent = "#3 uconn"
|
54,036 |
<question>: What's the longitude named zipaltonal fluctus in 1997 with a diameter smaller than 490? <context>: CREATE TABLE table_name_41 (longitude VARCHAR, name VARCHAR, year_named VARCHAR, diameter__km_ VARCHAR) <answer>: SELECT longitude FROM table_name_41 WHERE year_named = 1997 AND diameter__km_ < 490 AND name = "zipaltonal fluctus"
|
54,037 |
<question>: What's the diameter of kaiwan fluctus? <context>: CREATE TABLE table_name_30 (diameter__km_ VARCHAR, name VARCHAR) <answer>: SELECT diameter__km_ FROM table_name_30 WHERE name = "kaiwan fluctus"
|
54,038 |
<question>: In what game did the New York Rangers play against the Chicago Black Hawks? <context>: CREATE TABLE table_name_5 (game VARCHAR, opponent VARCHAR) <answer>: SELECT game FROM table_name_5 WHERE opponent = "chicago black hawks"
|
54,039 |
<question>: WHAT IS THE SCORE FOR GREG NORMAN? <context>: CREATE TABLE table_name_29 (score VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_29 WHERE player = "greg norman"
|
54,040 |
<question>: WHAT IS THE PLAYER WITH A TO PAR OF E, AND SCORE OF 68-72=140? <context>: CREATE TABLE table_name_2 (player VARCHAR, to_par VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_2 WHERE to_par = "e" AND score = 68 - 72 = 140
|
54,041 |
<question>: WHAT IS THE TO PAR WITH T5 PLACE, AND PLAYER MARK MCCUMBER? <context>: CREATE TABLE table_name_68 (to_par VARCHAR, place VARCHAR, player VARCHAR) <answer>: SELECT to_par FROM table_name_68 WHERE place = "t5" AND player = "mark mccumber"
|
54,042 |
<question>: When was the microprocessor with 1.65β1.7 v, a mult of 4.5Γ, and a slot 1 socket released? <context>: CREATE TABLE table_name_43 (release_date VARCHAR, socket VARCHAR, voltage VARCHAR, mult VARCHAR) <answer>: SELECT release_date FROM table_name_43 WHERE voltage = "1.65β1.7 v" AND mult = "4.5Γ" AND socket = "slot 1"
|
54,043 |
<question>: What is the voltage of the Pentiumiii866 microprocessor with a socket 370? <context>: CREATE TABLE table_name_8 (voltage VARCHAR, socket VARCHAR, model_number VARCHAR) <answer>: SELECT voltage FROM table_name_8 WHERE socket = "socket 370" AND model_number = "pentiumiii866"
|
54,044 |
<question>: What kind of socket is on the microprocessor with a part number of 80526pz533256? <context>: CREATE TABLE table_name_28 (socket VARCHAR, part_number_s_ VARCHAR) <answer>: SELECT socket FROM table_name_28 WHERE part_number_s_ = "80526pz533256"
|
54,045 |
<question>: What is the Date of the match with Opponent in the final Kenneth Carlsen? <context>: CREATE TABLE table_name_41 (date VARCHAR, opponent_in_the_final VARCHAR) <answer>: SELECT date FROM table_name_41 WHERE opponent_in_the_final = "kenneth carlsen"
|
54,046 |
<question>: What is the Date of the match with a Score in the final of 6β3, 6β3, 2β6, 6β4? <context>: CREATE TABLE table_name_9 (date VARCHAR, score_in_the_final VARCHAR) <answer>: SELECT date FROM table_name_9 WHERE score_in_the_final = "6β3, 6β3, 2β6, 6β4"
|
54,047 |
<question>: How many games did they lose when they tied less than 2 games? <context>: CREATE TABLE table_name_39 (lost VARCHAR, draw INTEGER) <answer>: SELECT lost FROM table_name_39 WHERE draw < 2
|
54,048 |
<question>: What is the least ties when they played less than 14 games, and a lost less than 8 of them? <context>: CREATE TABLE table_name_7 (draw INTEGER, played VARCHAR, lost VARCHAR) <answer>: SELECT MIN(draw) FROM table_name_7 WHERE played < 14 AND lost < 8
|
54,049 |
<question>: What is the lowest number of games played where they tied more than 7 of them? <context>: CREATE TABLE table_name_92 (played INTEGER, draw INTEGER) <answer>: SELECT MIN(played) FROM table_name_92 WHERE draw > 7
|
54,050 |
<question>: What is the highest Against where they lost less than 20 games, tied more than 2 of them, and they had Favour less than 11? <context>: CREATE TABLE table_name_85 (against INTEGER, favour VARCHAR, lost VARCHAR, draw VARCHAR) <answer>: SELECT MAX(against) FROM table_name_85 WHERE lost < 20 AND draw > 2 AND favour < 11
|
54,051 |
<question>: WHAT IS THE SCORE FOR 2010 fifa world cup qualification? <context>: CREATE TABLE table_name_28 (score VARCHAR, competition VARCHAR) <answer>: SELECT score FROM table_name_28 WHERE competition = "2010 fifa world cup qualification"
|
54,052 |
<question>: What is the latest year rafael nadal was in the French Open, Roger Federer was in Wimbledon, and Roger Federer was in the Australian Open? <context>: CREATE TABLE table_name_71 (year INTEGER, australian_open VARCHAR, french_open VARCHAR, wimbledon VARCHAR) <answer>: SELECT MAX(year) FROM table_name_71 WHERE french_open = "rafael nadal" AND wimbledon = "roger federer" AND australian_open = "roger federer"
|
54,053 |
<question>: What is the total number of years Andy Murray was at Wimbledon? <context>: CREATE TABLE table_name_27 (year VARCHAR, wimbledon VARCHAR) <answer>: SELECT COUNT(year) FROM table_name_27 WHERE wimbledon = "andy murray"
|
54,054 |
<question>: What is the Australian open in 2010? <context>: CREATE TABLE table_name_71 (australian_open VARCHAR, year VARCHAR) <answer>: SELECT australian_open FROM table_name_71 WHERE year = 2010
|
54,055 |
<question>: What is the highest loss with a long more than 61? <context>: CREATE TABLE table_name_1 (loss INTEGER, long INTEGER) <answer>: SELECT MAX(loss) FROM table_name_1 WHERE long > 61
|
54,056 |
<question>: What is the long with a loss lower than 133 and more than 0 gain with an avg/G of 29.8? <context>: CREATE TABLE table_name_10 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR) <answer>: SELECT AVG(long) FROM table_name_10 WHERE loss < 133 AND gain > 0 AND avg_g = 29.8
|
54,057 |
<question>: What is the lowest long with an avg/G more than -2.2 and a total name and a gain of more than 2,488? <context>: CREATE TABLE table_name_60 (long INTEGER, gain VARCHAR, avg_g VARCHAR, name VARCHAR) <answer>: SELECT MIN(long) FROM table_name_60 WHERE avg_g > -2.2 AND name = "total" AND gain > 2 OFFSET 488
|
54,058 |
<question>: What is the network brand name of the company vodafone group in Germany? <context>: CREATE TABLE table_name_45 (network_brand_name VARCHAR, company_name VARCHAR, country VARCHAR) <answer>: SELECT network_brand_name FROM table_name_45 WHERE company_name = "vodafone group" AND country = "germany"
|
54,059 |
<question>: What is the accreditation level of the network brand Movistar? <context>: CREATE TABLE table_name_76 (accreditation_level VARCHAR, network_brand_name VARCHAR) <answer>: SELECT accreditation_level FROM table_name_76 WHERE network_brand_name = "movistar"
|
54,060 |
<question>: What date was Movistar accredited? <context>: CREATE TABLE table_name_6 (date VARCHAR, network_brand_name VARCHAR) <answer>: SELECT date FROM table_name_6 WHERE network_brand_name = "movistar"
|
54,061 |
<question>: What is the accreditation type of Vodacom Group PTY LTD (Vodafone group)? <context>: CREATE TABLE table_name_22 (accreditation_type VARCHAR, company_name VARCHAR) <answer>: SELECT accreditation_type FROM table_name_22 WHERE company_name = "vodacom group pty ltd (vodafone group)"
|
54,062 |
<question>: What is Deutsche Telekom's accreditation type? <context>: CREATE TABLE table_name_88 (accreditation_type VARCHAR, network_brand_name VARCHAR) <answer>: SELECT accreditation_type FROM table_name_88 WHERE network_brand_name = "deutsche telekom"
|
54,063 |
<question>: What was the Location and Attendance of Game 6? <context>: CREATE TABLE table_name_51 (location_attendance VARCHAR, game VARCHAR) <answer>: SELECT location_attendance FROM table_name_51 WHERE game = 6
|
54,064 |
<question>: What inclination has a semimajor axis of 20 au? <context>: CREATE TABLE table_name_16 (inclination VARCHAR, semimajor_axis___au__ VARCHAR) <answer>: SELECT inclination FROM table_name_16 WHERE semimajor_axis___au__ = "20 au"
|
54,065 |
<question>: What is the eccentricity when the semimajor axis is 20 au? <context>: CREATE TABLE table_name_75 (eccentricity VARCHAR, semimajor_axis___au__ VARCHAR) <answer>: SELECT eccentricity FROM table_name_75 WHERE semimajor_axis___au__ = "20 au"
|
54,066 |
<question>: What is Score, when Team is "Indiana"? <context>: CREATE TABLE table_name_7 (score VARCHAR, team VARCHAR) <answer>: SELECT score FROM table_name_7 WHERE team = "indiana"
|
54,067 |
<question>: What is Date, when Game is "8"? <context>: CREATE TABLE table_name_48 (date VARCHAR, game VARCHAR) <answer>: SELECT date FROM table_name_48 WHERE game = 8
|
54,068 |
<question>: What is High Assists, when Date is "November 1"? <context>: CREATE TABLE table_name_18 (high_assists VARCHAR, date VARCHAR) <answer>: SELECT high_assists FROM table_name_18 WHERE date = "november 1"
|
54,069 |
<question>: Who was the winner on a hard surface on the week of November 13? <context>: CREATE TABLE table_name_30 (winner VARCHAR, surface VARCHAR, week VARCHAR) <answer>: SELECT winner FROM table_name_30 WHERE surface = "hard" AND week = "november 13"
|
54,070 |
<question>: Which player had a conference of PAC-10 and position of G? <context>: CREATE TABLE table_name_56 (player VARCHAR, conf VARCHAR, pos VARCHAR) <answer>: SELECT player FROM table_name_56 WHERE conf = "pac-10" AND pos = "g"
|
54,071 |
<question>: Which player had a position of OL from Ohio State? <context>: CREATE TABLE table_name_65 (player VARCHAR, pos VARCHAR, college VARCHAR) <answer>: SELECT player FROM table_name_65 WHERE pos = "ol" AND college = "ohio state"
|
54,072 |
<question>: Which player had a position of QB for Texas Tech? <context>: CREATE TABLE table_name_84 (player VARCHAR, pos VARCHAR, college VARCHAR) <answer>: SELECT player FROM table_name_84 WHERE pos = "qb" AND college = "texas tech"
|
54,073 |
<question>: Can you tell me the Opponent that has the Round of 3? <context>: CREATE TABLE table_name_30 (opponent VARCHAR, round VARCHAR) <answer>: SELECT opponent FROM table_name_30 WHERE round = 3
|
54,074 |
<question>: What is the main use for the structure listed in walker city, iowa? <context>: CREATE TABLE table_name_25 (main_use VARCHAR, town VARCHAR) <answer>: SELECT main_use FROM table_name_25 WHERE town = "walker city, iowa"
|
54,075 |
<question>: What year was the structure in greensboro, north carolina considered tallest? <context>: CREATE TABLE table_name_16 (year VARCHAR, town VARCHAR) <answer>: SELECT year FROM table_name_16 WHERE town = "greensboro, north carolina"
|
54,076 |
<question>: What was the earliest year that a structure was located in gray court, south carolina? <context>: CREATE TABLE table_name_63 (year INTEGER, town VARCHAR) <answer>: SELECT MIN(year) FROM table_name_63 WHERE town = "gray court, south carolina"
|
54,077 |
<question>: What is the main use of the structure that was in redfield, arkansas before 2004? <context>: CREATE TABLE table_name_77 (main_use VARCHAR, year VARCHAR, town VARCHAR) <answer>: SELECT main_use FROM table_name_77 WHERE year < 2004 AND town = "redfield, arkansas"
|
54,078 |
<question>: How far did the pilot go when averaging 124.1km/h? <context>: CREATE TABLE table_name_44 (distance VARCHAR, speed VARCHAR) <answer>: SELECT distance FROM table_name_44 WHERE speed = "124.1km/h"
|
54,079 |
<question>: What was sebastian kawa's average speed with Diana 2? <context>: CREATE TABLE table_name_36 (speed VARCHAR, glider VARCHAR, pilot VARCHAR) <answer>: SELECT speed FROM table_name_36 WHERE glider = "diana 2" AND pilot = "sebastian kawa"
|
54,080 |
<question>: What glider did thomas gostner pilot? <context>: CREATE TABLE table_name_84 (glider VARCHAR, pilot VARCHAR) <answer>: SELECT glider FROM table_name_84 WHERE pilot = "thomas gostner"
|
54,081 |
<question>: Which Run 4 has a Final of 8:16.28? <context>: CREATE TABLE table_name_22 (run_4 VARCHAR, final VARCHAR) <answer>: SELECT run_4 FROM table_name_22 WHERE final = "8:16.28"
|
54,082 |
<question>: Which Run 4 has Athletes of hubert stevens & curtis stevens? <context>: CREATE TABLE table_name_46 (run_4 VARCHAR, athletes VARCHAR) <answer>: SELECT run_4 FROM table_name_46 WHERE athletes = "hubert stevens & curtis stevens"
|
54,083 |
<question>: Which Run 2 has a Rank of 4? <context>: CREATE TABLE table_name_9 (run_2 VARCHAR, rank VARCHAR) <answer>: SELECT run_2 FROM table_name_9 WHERE rank = "4"
|
54,084 |
<question>: Which Athletes have a Rank of bronze? <context>: CREATE TABLE table_name_44 (athletes VARCHAR, rank VARCHAR) <answer>: SELECT athletes FROM table_name_44 WHERE rank = "bronze"
|
54,085 |
<question>: Which Athletes have a Run 2 of 2:21.82? <context>: CREATE TABLE table_name_39 (athletes VARCHAR, run_2 VARCHAR) <answer>: SELECT athletes FROM table_name_39 WHERE run_2 = "2:21.82"
|
54,086 |
<question>: Which Run 3 has a Run 1 of 2:20.10? <context>: CREATE TABLE table_name_13 (run_3 VARCHAR, run_1 VARCHAR) <answer>: SELECT run_3 FROM table_name_13 WHERE run_1 = "2:20.10"
|
54,087 |
<question>: What percentage did Republish Christopher Reed receive when the lead margin was smaller than 16? <context>: CREATE TABLE table_name_25 (republican VARCHAR, lead_margin INTEGER) <answer>: SELECT republican AS :_christopher_reed FROM table_name_25 WHERE lead_margin < 16
|
54,088 |
<question>: What was Democrat: Tom Harkin's percentage when the poll source was Rasmussen Reports and the lead margin was 14? <context>: CREATE TABLE table_name_77 (democrat VARCHAR, poll_source VARCHAR, lead_margin VARCHAR) <answer>: SELECT democrat AS :_tom_harkin FROM table_name_77 WHERE poll_source = "rasmussen reports" AND lead_margin = 14
|
54,089 |
<question>: What were the dates administered when the lead margin was larger than 14 and the poll source was Research 2000? <context>: CREATE TABLE table_name_72 (dates_administered VARCHAR, lead_margin VARCHAR, poll_source VARCHAR) <answer>: SELECT dates_administered FROM table_name_72 WHERE lead_margin > 14 AND poll_source = "research 2000"
|
54,090 |
<question>: What is Olivier Jacque's Time/Retired? <context>: CREATE TABLE table_name_43 (time_retired VARCHAR, rider VARCHAR) <answer>: SELECT time_retired FROM table_name_43 WHERE rider = "olivier jacque"
|
54,091 |
<question>: Which manufacturer is grid 11? <context>: CREATE TABLE table_name_93 (manufacturer VARCHAR, grid VARCHAR) <answer>: SELECT manufacturer FROM table_name_93 WHERE grid = "11"
|
54,092 |
<question>: Which manufacturer does Loris Capirossi ride for? <context>: CREATE TABLE table_name_13 (manufacturer VARCHAR, rider VARCHAR) <answer>: SELECT manufacturer FROM table_name_13 WHERE rider = "loris capirossi"
|
54,093 |
<question>: Which manufacturer has 8 laps? <context>: CREATE TABLE table_name_18 (manufacturer VARCHAR, laps VARCHAR) <answer>: SELECT manufacturer FROM table_name_18 WHERE laps = "8"
|
54,094 |
<question>: How many laps does grid 4 have? <context>: CREATE TABLE table_name_74 (laps VARCHAR, grid VARCHAR) <answer>: SELECT laps FROM table_name_74 WHERE grid = "4"
|
54,095 |
<question>: Which rider's manufacturer is Honda and has 28 laps and a grid of 1? <context>: CREATE TABLE table_name_35 (rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR) <answer>: SELECT rider FROM table_name_35 WHERE laps = "28" AND manufacturer = "honda" AND grid = "1"
|
54,096 |
<question>: What is the 2006 sum with a rank 1 and more than 6758845 in 1996? <context>: CREATE TABLE table_name_38 (rank VARCHAR) <answer>: SELECT SUM(2006) FROM table_name_38 WHERE rank = 1 AND 1996 > 6758845
|
54,097 |
<question>: What is the total number in 2006, which has an official foundation of municipality of 1918? <context>: CREATE TABLE table_name_95 (date_of_official_foundation_of_municipality VARCHAR) <answer>: SELECT COUNT(2006) FROM table_name_95 WHERE date_of_official_foundation_of_municipality = 1918
|
54,098 |
<question>: What is teh average rank of the city of mashhad, which had less than 667770 in 1976? <context>: CREATE TABLE table_name_97 (rank INTEGER, city VARCHAR) <answer>: SELECT AVG(rank) FROM table_name_97 WHERE city = "mashhad" AND 1976 < 667770
|
54,099 |
<question>: What is the average rank of the province alborz, which had more than 14526 in 1956? <context>: CREATE TABLE table_name_95 (rank INTEGER, province VARCHAR) <answer>: SELECT AVG(rank) FROM table_name_95 WHERE province = "alborz" AND 1956 > 14526
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.