Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
41,600
<question>: Tell me the method for stanislav nuschik <context>: CREATE TABLE table_name_60 (method VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_60 WHERE opponent = "stanislav nuschik"
41,601
<question>: What was the Result of IFL: Los Angeles? <context>: CREATE TABLE table_name_88 (res VARCHAR, event VARCHAR)
SELECT res FROM table_name_88 WHERE event = "ifl: los angeles"
41,602
<question>: Which Event resulted in a Win for Opponent, Shane Ott? <context>: CREATE TABLE table_name_4 (event VARCHAR, res VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_4 WHERE res = "win" AND opponent = "shane ott"
41,603
<question>: Which crystal structures has a Tc(K) of 110 and the number of Cu-O planes in the unit cell is 3? <context>: CREATE TABLE table_name_67 (crystal_structure VARCHAR, no_of_cu_o_planes_in_unit_cell VARCHAR, t_c__k_ VARCHAR)
SELECT crystal_structure FROM table_name_67 WHERE no_of_cu_o_planes_in_unit_cell = 3 AND t_c__k_ = 110
41,604
<question>: Name the gold with total larger than 33 <context>: CREATE TABLE table_name_46 (gold VARCHAR, total INTEGER)
SELECT gold FROM table_name_46 WHERE total > 33
41,605
<question>: Name the fewest gold for tanzania with bronze less than 0 <context>: CREATE TABLE table_name_54 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT MIN(gold) FROM table_name_54 WHERE nation = "tanzania" AND bronze < 0
41,606
<question>: Who is the opponent for week 10? <context>: CREATE TABLE table_name_17 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_17 WHERE week = 10
41,607
<question>: For countries that won more than 32 gold medals, what was the highest number of golds? <context>: CREATE TABLE table_name_81 (gold INTEGER, total INTEGER)
SELECT MAX(gold) FROM table_name_81 WHERE total > 32
41,608
<question>: Tell me fourth place for year of 2010 <context>: CREATE TABLE table_name_36 (fourth_place VARCHAR, year VARCHAR)
SELECT fourth_place FROM table_name_36 WHERE year = 2010
41,609
<question>: Tell me the result for 2010 fifa world cup qualification <context>: CREATE TABLE table_name_81 (result VARCHAR, competition VARCHAR)
SELECT result FROM table_name_81 WHERE competition = "2010 fifa world cup qualification"
41,610
<question>: Tell me the date for 2010 fifa world cup qualification <context>: CREATE TABLE table_name_85 (date VARCHAR, competition VARCHAR)
SELECT date FROM table_name_85 WHERE competition = "2010 fifa world cup qualification"
41,611
<question>: Tell me the surface for november 28, 2010 <context>: CREATE TABLE table_name_34 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_34 WHERE date = "november 28, 2010"
41,612
<question>: Tell me the tournament with a hard surface for 6–1, 6–2 <context>: CREATE TABLE table_name_99 (tournament VARCHAR, surface VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_99 WHERE surface = "hard" AND score = "6–1, 6–2"
41,613
<question>: Tell me the date for 6–3, 6–2 <context>: CREATE TABLE table_name_87 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_87 WHERE score = "6–3, 6–2"
41,614
<question>: Tell me the date for johanna konta <context>: CREATE TABLE table_name_8 (date VARCHAR, opponent_in_the_final VARCHAR)
SELECT date FROM table_name_8 WHERE opponent_in_the_final = "johanna konta"
41,615
<question>: What is the time value for the rider Brian Finch and a rank greater than 3? <context>: CREATE TABLE table_name_42 (time VARCHAR, rank VARCHAR, rider VARCHAR)
SELECT time FROM table_name_42 WHERE rank > 3 AND rider = "brian finch"
41,616
<question>: What result does the project Once Upon A Time In The West, directed by Sergio Leone have? <context>: CREATE TABLE table_name_40 (result VARCHAR, director VARCHAR, project VARCHAR)
SELECT result FROM table_name_40 WHERE director = "sergio leone" AND project = "once upon a time in the west"
41,617
<question>: What year was Bulworth nominated? <context>: CREATE TABLE table_name_92 (year VARCHAR, project VARCHAR)
SELECT year FROM table_name_92 WHERE project = "bulworth"
41,618
<question>: What is the average Year for the project The Untouchables? <context>: CREATE TABLE table_name_16 (year INTEGER, project VARCHAR)
SELECT AVG(year) FROM table_name_16 WHERE project = "the untouchables"
41,619
<question>: Tell me the section for position of 8th and season of 2003 <context>: CREATE TABLE table_name_29 (section VARCHAR, position VARCHAR, season VARCHAR)
SELECT section FROM table_name_29 WHERE position = "8th" AND season = "2003"
41,620
<question>: What is the date of week 17? <context>: CREATE TABLE table_name_35 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_35 WHERE week = 17
41,621
<question>: What was the latest week that the Tampa Bay Buccaneers were an opponent? <context>: CREATE TABLE table_name_29 (week INTEGER, opponent VARCHAR)
SELECT MAX(week) FROM table_name_29 WHERE opponent = "tampa bay buccaneers"
41,622
<question>: Name the fewest tries for leicester tigers with points less than 207 <context>: CREATE TABLE table_name_6 (tries INTEGER, club VARCHAR, points VARCHAR)
SELECT MIN(tries) FROM table_name_6 WHERE club = "leicester tigers" AND points < 207
41,623
<question>: Name the date of st albans city for result of drew 0-0 <context>: CREATE TABLE table_name_73 (date VARCHAR, opponent VARCHAR, result VARCHAR)
SELECT date FROM table_name_73 WHERE opponent = "st albans city" AND result = "drew 0-0"
41,624
<question>: Name the venue for 15 august 2006 <context>: CREATE TABLE table_name_89 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_89 WHERE date = "15 august 2006"
41,625
<question>: Name the most attendance for tamworth with home venue <context>: CREATE TABLE table_name_4 (attendance INTEGER, opponent VARCHAR, venue VARCHAR)
SELECT MAX(attendance) FROM table_name_4 WHERE opponent = "tamworth" AND venue = "home"
41,626
<question>: Name the least attendance for 10 october 2006 <context>: CREATE TABLE table_name_82 (attendance INTEGER, date VARCHAR)
SELECT MIN(attendance) FROM table_name_82 WHERE date = "10 october 2006"
41,627
<question>: I want the average bronze for total of 19 and silver of 8 with rank of 31 <context>: CREATE TABLE table_name_12 (bronze INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR)
SELECT AVG(bronze) FROM table_name_12 WHERE total = 19 AND silver = 8 AND rank = "31"
41,628
<question>: Tell me the average bronze for rank of 43 and total less than 11 <context>: CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR)
SELECT AVG(bronze) FROM table_name_41 WHERE rank = "43" AND total < 11
41,629
<question>: Say the frequency of 1290 khz <context>: CREATE TABLE table_name_31 (format VARCHAR, frequency VARCHAR)
SELECT format FROM table_name_31 WHERE frequency = "1290 khz"
41,630
<question>: Tell me the timeslot of calls of wrko <context>: CREATE TABLE table_name_21 (timeslot VARCHAR, calls VARCHAR)
SELECT timeslot FROM table_name_21 WHERE calls = "wrko"
41,631
<question>: Tell me the format for calls of wrko <context>: CREATE TABLE table_name_56 (format VARCHAR, calls VARCHAR)
SELECT format FROM table_name_56 WHERE calls = "wrko"
41,632
<question>: Tell me the calls for frequency of 1290 khz <context>: CREATE TABLE table_name_88 (calls VARCHAR, frequency VARCHAR)
SELECT calls FROM table_name_88 WHERE frequency = "1290 khz"
41,633
<question>: Tell me the branding for frequency of 680 khz <context>: CREATE TABLE table_name_88 (branding VARCHAR, frequency VARCHAR)
SELECT branding FROM table_name_88 WHERE frequency = "680 khz"
41,634
<question>: Tell me the timeslot for calls of whyn <context>: CREATE TABLE table_name_74 (timeslot VARCHAR, calls VARCHAR)
SELECT timeslot FROM table_name_74 WHERE calls = "whyn"
41,635
<question>: For how long did Bolivia have a lane greater than 6? <context>: CREATE TABLE table_name_56 (time VARCHAR, country VARCHAR, lane VARCHAR)
SELECT COUNT(time) FROM table_name_56 WHERE country = "bolivia" AND lane > 6
41,636
<question>: In heat rank 7, what is the sum of lanes? <context>: CREATE TABLE table_name_48 (lane INTEGER, heat_rank VARCHAR)
SELECT SUM(lane) FROM table_name_48 WHERE heat_rank = 7
41,637
<question>: Which country is ranked 56 overall and has a heat rank smaller than 8? <context>: CREATE TABLE table_name_72 (country VARCHAR, heat_rank VARCHAR, overall_rank VARCHAR)
SELECT country FROM table_name_72 WHERE heat_rank < 8 AND overall_rank = "56"
41,638
<question>: What is the greatest lane with an overall rank of 79 and a time larger than 26.1? <context>: CREATE TABLE table_name_24 (lane INTEGER, overall_rank VARCHAR, time VARCHAR)
SELECT MAX(lane) FROM table_name_24 WHERE overall_rank = "79" AND time > 26.1
41,639
<question>: Tell me the highest week for metropolitan stadium for attendance more than 47,644 <context>: CREATE TABLE table_name_80 (week INTEGER, venue VARCHAR, attendance VARCHAR)
SELECT MAX(week) FROM table_name_80 WHERE venue = "metropolitan stadium" AND attendance > 47 OFFSET 644
41,640
<question>: Name the sum of played for serik berdalin and drawn more than 4 <context>: CREATE TABLE table_name_25 (played INTEGER, manager VARCHAR, drawn VARCHAR)
SELECT SUM(played) FROM table_name_25 WHERE manager = "serik berdalin" AND drawn > 4
41,641
<question>: Who had the highest total PR seats of 48 with a District seat larger than than 73? <context>: CREATE TABLE table_name_28 (total_seats INTEGER, pr_seats VARCHAR, district_seats VARCHAR)
SELECT MAX(total_seats) FROM table_name_28 WHERE pr_seats = 48 AND district_seats > 73
41,642
<question>: In 1955 which party did Thomas Mitchell belong to? <context>: CREATE TABLE table_name_97 (party VARCHAR, year VARCHAR, candidate VARCHAR)
SELECT party FROM table_name_97 WHERE year = "1955" AND candidate = "thomas mitchell"
41,643
<question>: What are the number of days did the ulster unionist Party have the constituate fermanagh and south tyrone? <context>: CREATE TABLE table_name_79 (days VARCHAR, party VARCHAR, constituency VARCHAR)
SELECT days FROM table_name_79 WHERE party = "ulster unionist" AND constituency = "fermanagh and south tyrone"
41,644
<question>: What are the number of days in 1945 where the constituent was heywood and radcliffe? <context>: CREATE TABLE table_name_18 (days VARCHAR, year VARCHAR, constituency VARCHAR)
SELECT days FROM table_name_18 WHERE year = "1945" AND constituency = "heywood and radcliffe"
41,645
<question>: What year was Hazel Grove the constituent for the liberal party? <context>: CREATE TABLE table_name_15 (year VARCHAR, party VARCHAR, constituency VARCHAR)
SELECT year FROM table_name_15 WHERE party = "liberal" AND constituency = "hazel grove"
41,646
<question>: Tell me the average Laps for grid larger than 12 and bikes of ducati 999rs for dean ellison <context>: CREATE TABLE table_name_74 (laps INTEGER, rider VARCHAR, grid VARCHAR, bike VARCHAR)
SELECT AVG(laps) FROM table_name_74 WHERE grid > 12 AND bike = "ducati 999rs" AND rider = "dean ellison"
41,647
<question>: Tell me the highest Laps for grid less than 22 and riderS of ruben xaus <context>: CREATE TABLE table_name_40 (laps INTEGER, grid VARCHAR, rider VARCHAR)
SELECT MAX(laps) FROM table_name_40 WHERE grid < 22 AND rider = "ruben xaus"
41,648
<question>: Tell me the total number of grid for rider of james toseland <context>: CREATE TABLE table_name_14 (grid VARCHAR, rider VARCHAR)
SELECT COUNT(grid) FROM table_name_14 WHERE rider = "james toseland"
41,649
<question>: Tell me the least Laps for grid larger than 2 with 35:26.734 <context>: CREATE TABLE table_name_45 (laps INTEGER, time VARCHAR, grid VARCHAR)
SELECT MIN(laps) FROM table_name_45 WHERE time = "35:26.734" AND grid > 2
41,650
<question>: Tell me the date with week of 13 <context>: CREATE TABLE table_name_21 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_21 WHERE week = 13
41,651
<question>: Tell me the average week for attendance of 48,113 <context>: CREATE TABLE table_name_74 (week INTEGER, attendance VARCHAR)
SELECT AVG(week) FROM table_name_74 WHERE attendance = "48,113"
41,652
<question>: Which Album had a year less than 2005 with a Label by Ministry of Sound? <context>: CREATE TABLE table_name_94 (album VARCHAR, year VARCHAR, label VARCHAR)
SELECT album FROM table_name_94 WHERE year < 2005 AND label = "ministry of sound"
41,653
<question>: Which Album had a bigger year than 2005 and whose country was Australia? <context>: CREATE TABLE table_name_32 (album VARCHAR, year VARCHAR, country VARCHAR)
SELECT album FROM table_name_32 WHERE year > 2005 AND country = "australia"
41,654
<question>: Which song had Central Station as a label and whose album was Various - Wild Nights 4? <context>: CREATE TABLE table_name_33 (song VARCHAR, label VARCHAR, album VARCHAR)
SELECT song FROM table_name_33 WHERE label = "central station" AND album = "various - wild nights 4"
41,655
<question>: Where did Zimbabwe play? <context>: CREATE TABLE table_name_63 (venue VARCHAR, opponent VARCHAR)
SELECT venue FROM table_name_63 WHERE opponent = "zimbabwe"
41,656
<question>: What is the date when Canada played? <context>: CREATE TABLE table_name_68 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_68 WHERE opponent = "canada"
41,657
<question>: Tell me the lowest silver for rank of 9 and bronze less than 2 <context>: CREATE TABLE table_name_26 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
SELECT MIN(silver) FROM table_name_26 WHERE rank = 9 AND bronze < 2
41,658
<question>: Name the report for raymond sommer <context>: CREATE TABLE table_name_66 (report VARCHAR, winning_driver VARCHAR)
SELECT report FROM table_name_66 WHERE winning_driver = "raymond sommer"
41,659
<question>: Name the winning driver for monaco grand prix <context>: CREATE TABLE table_name_41 (winning_driver VARCHAR, name VARCHAR)
SELECT winning_driver FROM table_name_41 WHERE name = "monaco grand prix"
41,660
<question>: Name the circuit for marcel lehoux <context>: CREATE TABLE table_name_95 (circuit VARCHAR, winning_driver VARCHAR)
SELECT circuit FROM table_name_95 WHERE winning_driver = "marcel lehoux"
41,661
<question>: Name the report for per-viktor widengren and alfa romeo <context>: CREATE TABLE table_name_48 (report VARCHAR, winning_driver VARCHAR, winning_constructor VARCHAR)
SELECT report FROM table_name_48 WHERE winning_driver = "per-viktor widengren" AND winning_constructor = "alfa romeo"
41,662
<question>: Tell me the date for warsaw 1929 <context>: CREATE TABLE table_name_50 (date VARCHAR, location VARCHAR, year VARCHAR)
SELECT date FROM table_name_50 WHERE location = "warsaw" AND year = 1929
41,663
<question>: Tell me the result for warsaw 1929 <context>: CREATE TABLE table_name_8 (result VARCHAR, location VARCHAR, year VARCHAR)
SELECT result FROM table_name_8 WHERE location = "warsaw" AND year = 1929
41,664
<question>: Tell me the result for harrogate <context>: CREATE TABLE table_name_34 (result VARCHAR, location VARCHAR)
SELECT result FROM table_name_34 WHERE location = "harrogate"
41,665
<question>: Tell me the overall rank for roland schoeman <context>: CREATE TABLE table_name_50 (overall_rank VARCHAR, swimmer VARCHAR)
SELECT overall_rank FROM table_name_50 WHERE swimmer = "roland schoeman"
41,666
<question>: How many Silver medals did nation who is ranked greater than 1 and has 4 Gold medals have? <context>: CREATE TABLE table_name_45 (silver INTEGER, rank VARCHAR, gold VARCHAR)
SELECT SUM(silver) FROM table_name_45 WHERE rank > 1 AND gold = 4
41,667
<question>: Which nation has more than 6 Silver medals and fewer than 8 Gold medals? <context>: CREATE TABLE table_name_59 (total INTEGER, silver VARCHAR, gold VARCHAR)
SELECT AVG(total) FROM table_name_59 WHERE silver > 6 AND gold < 8
41,668
<question>: What is the rank of the Nation that has fewer than 24 total medals are more than 7 Gold medals? <context>: CREATE TABLE table_name_51 (rank INTEGER, total VARCHAR, gold VARCHAR)
SELECT AVG(rank) FROM table_name_51 WHERE total < 24 AND gold > 7
41,669
<question>: What is the rank of the nation that has more than 1 Bronze medals and fewer than 4 Gold medals? <context>: CREATE TABLE table_name_75 (rank INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT MIN(rank) FROM table_name_75 WHERE bronze > 1 AND gold < 4
41,670
<question>: How many silver medals does Belarus (blr) along with 4 gold and 4 bronze? <context>: CREATE TABLE table_name_92 (silver INTEGER, bronze VARCHAR, gold VARCHAR, nation VARCHAR)
SELECT SUM(silver) FROM table_name_92 WHERE gold = 4 AND nation = "belarus (blr)" AND bronze > 4
41,671
<question>: What rank is Belarus (BLR), which earned 15 medals total? <context>: CREATE TABLE table_name_44 (rank INTEGER, nation VARCHAR, total VARCHAR)
SELECT MAX(rank) FROM table_name_44 WHERE nation = "belarus (blr)" AND total < 15
41,672
<question>: What was the name of the race on 24 September? <context>: CREATE TABLE table_name_37 (name VARCHAR, date VARCHAR)
SELECT name FROM table_name_37 WHERE date = "24 september"
41,673
<question>: What is the name of the race on 9 July? <context>: CREATE TABLE table_name_72 (name VARCHAR, date VARCHAR)
SELECT name FROM table_name_72 WHERE date = "9 july"
41,674
<question>: What was the race that was won by a Maserati being driven by Giuseppe Campari? <context>: CREATE TABLE table_name_67 (circuit VARCHAR, winning_constructor VARCHAR, winning_drivers VARCHAR)
SELECT circuit FROM table_name_67 WHERE winning_constructor = "maserati" AND winning_drivers = "giuseppe campari"
41,675
<question>: What date was the race won by Louis Chiron? <context>: CREATE TABLE table_name_81 (date VARCHAR, winning_drivers VARCHAR)
SELECT date FROM table_name_81 WHERE winning_drivers = "louis chiron"
41,676
<question>: What brand of vehicle won a race driven by Tazio Nuvolari? <context>: CREATE TABLE table_name_81 (winning_constructor VARCHAR, winning_drivers VARCHAR)
SELECT winning_constructor FROM table_name_81 WHERE winning_drivers = "tazio nuvolari"
41,677
<question>: What race was won by Tazio Nuvolari? <context>: CREATE TABLE table_name_63 (name VARCHAR, winning_drivers VARCHAR)
SELECT name FROM table_name_63 WHERE winning_drivers = "tazio nuvolari"
41,678
<question>: Tell me the result for week less than 4 and september 7, 1986 <context>: CREATE TABLE table_name_46 (result VARCHAR, week VARCHAR, date VARCHAR)
SELECT result FROM table_name_46 WHERE week < 4 AND date = "september 7, 1986"
41,679
<question>: Tell me the result for week of 3 <context>: CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_33 WHERE week = 3
41,680
<question>: Tell me the lowest week for attedance less thaan 32,738 <context>: CREATE TABLE table_name_77 (week INTEGER, attendance INTEGER)
SELECT MIN(week) FROM table_name_77 WHERE attendance < 32 OFFSET 738
41,681
<question>: Tell me the ship for lieutenant montagu verling <context>: CREATE TABLE table_name_52 (ship VARCHAR, captain VARCHAR)
SELECT ship FROM table_name_52 WHERE captain = "lieutenant montagu verling"
41,682
<question>: Tell me the class for admiral and hms frobisher <context>: CREATE TABLE table_name_35 (class VARCHAR, rank VARCHAR, ship VARCHAR)
SELECT class FROM table_name_35 WHERE rank = "admiral" AND ship = "hms frobisher"
41,683
<question>: Tell me the guns for third-rate ship of the line and rank of vice-admiral with year of 1802 <context>: CREATE TABLE table_name_63 (guns VARCHAR, year VARCHAR, class VARCHAR, rank VARCHAR)
SELECT guns FROM table_name_63 WHERE class = "third-rate ship of the line" AND rank = "vice-admiral" AND year = "1802"
41,684
<question>: Tell me the captain for 1774 and guns of 14 <context>: CREATE TABLE table_name_23 (captain VARCHAR, year VARCHAR, guns VARCHAR)
SELECT captain FROM table_name_23 WHERE year = "1774" AND guns = "14"
41,685
<question>: Tell me the captain for guns of 28 <context>: CREATE TABLE table_name_15 (captain VARCHAR, guns VARCHAR)
SELECT captain FROM table_name_15 WHERE guns = "28"
41,686
<question>: Tell me the status of eliminated of anton dela paz <context>: CREATE TABLE table_name_15 (status VARCHAR, eliminated VARCHAR)
SELECT status FROM table_name_15 WHERE eliminated = "anton dela paz"
41,687
<question>: Tell me the finalists for week # less than 2 <context>: CREATE TABLE table_name_40 (finalists VARCHAR, week__number INTEGER)
SELECT finalists FROM table_name_40 WHERE week__number < 2
41,688
<question>: Tell me the eliminated for week # larger than 4 <context>: CREATE TABLE table_name_83 (eliminated VARCHAR, week__number INTEGER)
SELECT eliminated FROM table_name_83 WHERE week__number > 4
41,689
<question>: At the UFC 78, what is the average round when the time is 5:00? <context>: CREATE TABLE table_name_32 (round INTEGER, time VARCHAR, event VARCHAR)
SELECT AVG(round) FROM table_name_32 WHERE time = "5:00" AND event = "ufc 78"
41,690
<question>: When there was a draw, what was the time? <context>: CREATE TABLE table_name_43 (time VARCHAR, res VARCHAR)
SELECT time FROM table_name_43 WHERE res = "draw"
41,691
<question>: What is the sum of points in 2010 when the driver had more than 14 races and an F.L. of less than 0? <context>: CREATE TABLE table_name_8 (points INTEGER, fl VARCHAR, year VARCHAR, races VARCHAR)
SELECT SUM(points) FROM table_name_8 WHERE year = 2010 AND races > 14 AND fl < 0
41,692
<question>: What was the outcome of the game that had a week number of less than 2? <context>: CREATE TABLE table_name_67 (result VARCHAR, week INTEGER)
SELECT result FROM table_name_67 WHERE week < 2
41,693
<question>: What heat and what lane is thi hue pham in? <context>: CREATE TABLE table_name_25 (heat_ VARCHAR, _lane VARCHAR, name VARCHAR)
SELECT heat_ & _lane FROM table_name_25 WHERE name = "thi hue pham"
41,694
<question>: What Heat & Lane is the person who has a time of 1:01.12? <context>: CREATE TABLE table_name_72 (heat_ VARCHAR, _lane VARCHAR, time VARCHAR)
SELECT heat_ & _lane FROM table_name_72 WHERE time = "1:01.12"
41,695
<question>: How many laps did Fernando Alonso do? <context>: CREATE TABLE table_name_3 (laps VARCHAR, driver VARCHAR)
SELECT laps FROM table_name_3 WHERE driver = "fernando alonso"
41,696
<question>: What was Jenson Button's constructor? <context>: CREATE TABLE table_name_13 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_13 WHERE driver = "jenson button"
41,697
<question>: Tell me the package for EEPROM less than 128 <context>: CREATE TABLE table_name_17 (package VARCHAR, eeprom INTEGER)
SELECT package FROM table_name_17 WHERE eeprom < 128
41,698
<question>: Tell me the chip with frequency larger than 10 <context>: CREATE TABLE table_name_63 (chip VARCHAR, frequency_ VARCHAR, mhz VARCHAR)
SELECT chip FROM table_name_63 WHERE frequency_[mhz] > 10
41,699
<question>: I want the highest Grid for Toyota and jarno trulli <context>: CREATE TABLE table_name_95 (grid INTEGER, constructor VARCHAR, driver VARCHAR)
SELECT MAX(grid) FROM table_name_95 WHERE constructor = "toyota" AND driver = "jarno trulli"