Unnamed: 0
int64 0
60k
| text
stringlengths 109
1.06k
|
---|---|
57,400 | <question>: What is Final, when Run 3 is 1:57.41? <context>: CREATE TABLE table_name_60 (final VARCHAR, run_3 VARCHAR) <answer>: SELECT final FROM table_name_60 WHERE run_3 = "1:57.41" |
57,401 | <question>: What is Run 3, when Team is United States (USA) USA I? <context>: CREATE TABLE table_name_73 (run_3 VARCHAR, team VARCHAR) <answer>: SELECT run_3 FROM table_name_73 WHERE team = "united states (usa) usa i" |
57,402 | <question>: Which position has 30 points and Reiner Stuyvenberg as a passenger? <context>: CREATE TABLE table_name_95 (position VARCHAR, points VARCHAR, passenger VARCHAR) <answer>: SELECT position FROM table_name_95 WHERE points = 30 AND passenger = "reiner stuyvenberg" |
57,403 | <question>: Which passenger has a position of 21 and less than 49 points? <context>: CREATE TABLE table_name_89 (passenger VARCHAR, position VARCHAR, points VARCHAR) <answer>: SELECT passenger FROM table_name_89 WHERE position = "21" AND points < 49 |
57,404 | <question>: What were the wins with more than 145 points, less than 17 races, and Sven Verbrugge as a passenger? <context>: CREATE TABLE table_name_12 (wins VARCHAR, races VARCHAR, points VARCHAR, passenger VARCHAR) <answer>: SELECT wins FROM table_name_12 WHERE points > 145 AND passenger = "sven verbrugge" AND races < 17 |
57,405 | <question>: Who is the passenger in 2009 season with 17 races? <context>: CREATE TABLE table_name_55 (passenger VARCHAR, season VARCHAR, races VARCHAR) <answer>: SELECT passenger FROM table_name_55 WHERE season = "2009" AND races = 17 |
57,406 | <question>: WHAT IS THE POSITION FOR BRAZIL, WITH 27 GOALS, AND FOR NECA? <context>: CREATE TABLE table_name_83 (position VARCHAR, name VARCHAR, nationality VARCHAR, goals VARCHAR) <answer>: SELECT position FROM table_name_83 WHERE nationality = "brazil" AND goals = 27 AND name = "neca" |
57,407 | <question>: WHAT SAN PAULO CAREER HAD SMALLER THAN 201 APPEARANCES, SMALLER THAN 2 GOALS, AND FOR RICARDO ROCHA? <context>: CREATE TABLE table_name_45 (são_paulo_career VARCHAR, name VARCHAR, appearances VARCHAR, goals VARCHAR) <answer>: SELECT são_paulo_career FROM table_name_45 WHERE appearances < 201 AND goals < 2 AND name = "ricardo rocha" |
57,408 | <question>: Which display has an ISO range of 80-800, and 0.8 Seconds/Frame? <context>: CREATE TABLE table_name_21 (display VARCHAR, iso_range VARCHAR, seconds_frame VARCHAR) <answer>: SELECT display FROM table_name_21 WHERE iso_range = "80-800" AND seconds_frame = 0.8 |
57,409 | <question>: WHAT IS THE VALE ROYAL WITH THE JEWISH RELIGION? <context>: CREATE TABLE table_name_20 (vale_royal VARCHAR, religion VARCHAR) <answer>: SELECT vale_royal FROM table_name_20 WHERE religion = "jewish" |
57,410 | <question>: On 1959-01-27 when outcome was failure, what is the serial? <context>: CREATE TABLE table_name_91 (serial VARCHAR, outcome VARCHAR, date VARCHAR) <answer>: SELECT serial FROM table_name_91 WHERE outcome = "failure" AND date = "1959-01-27" |
57,411 | <question>: Which date has serial of 11c? <context>: CREATE TABLE table_name_28 (date VARCHAR, serial VARCHAR) <answer>: SELECT date FROM table_name_28 WHERE serial = "11c" |
57,412 | <question>: Which Apogee was on 1959-02-20? <context>: CREATE TABLE table_name_5 (apogee VARCHAR, date VARCHAR) <answer>: SELECT apogee FROM table_name_5 WHERE date = "1959-02-20" |
57,413 | <question>: Which date has time (GMT) of 23:34? <context>: CREATE TABLE table_name_45 (date VARCHAR, time___gmt__ VARCHAR) <answer>: SELECT date FROM table_name_45 WHERE time___gmt__ = "23:34" |
57,414 | <question>: What is Cross Country, when Soccer is Ashland, when Volleyball is Wooster, and when School Year is 2006-07? <context>: CREATE TABLE table_name_35 (cross_country VARCHAR, school_year VARCHAR, soccer VARCHAR, volleyball VARCHAR) <answer>: SELECT cross_country FROM table_name_35 WHERE soccer = "ashland" AND volleyball = "wooster" AND school_year = "2006-07" |
57,415 | <question>: What is School Year, when Cross Country is Wooster? <context>: CREATE TABLE table_name_19 (school_year VARCHAR, cross_country VARCHAR) <answer>: SELECT school_year FROM table_name_19 WHERE cross_country = "wooster" |
57,416 | <question>: What is Tennis, when School Year is 2004-05? <context>: CREATE TABLE table_name_29 (tennis VARCHAR, school_year VARCHAR) <answer>: SELECT tennis FROM table_name_29 WHERE school_year = "2004-05" |
57,417 | <question>: What is Cross Country, when School Year is 2012-13? <context>: CREATE TABLE table_name_90 (cross_country VARCHAR, school_year VARCHAR) <answer>: SELECT cross_country FROM table_name_90 WHERE school_year = "2012-13" |
57,418 | <question>: What is School Year, when Cross Country is Lexington, when Soccer is Ashland, and when Volleyball is Wooster? <context>: CREATE TABLE table_name_9 (school_year VARCHAR, volleyball VARCHAR, cross_country VARCHAR, soccer VARCHAR) <answer>: SELECT school_year FROM table_name_9 WHERE cross_country = "lexington" AND soccer = "ashland" AND volleyball = "wooster" |
57,419 | <question>: What is Soccer, when Cross Country is Lexington, and when School Year is 2011-12? <context>: CREATE TABLE table_name_74 (soccer VARCHAR, cross_country VARCHAR, school_year VARCHAR) <answer>: SELECT soccer FROM table_name_74 WHERE cross_country = "lexington" AND school_year = "2011-12" |
57,420 | <question>: What is the highest Attendance, when Result is l 26-16, and when Week is less than 12? <context>: CREATE TABLE table_name_36 (attendance INTEGER, result VARCHAR, week VARCHAR) <answer>: SELECT MAX(attendance) FROM table_name_36 WHERE result = "l 26-16" AND week < 12 |
57,421 | <question>: What is the highest Week, when Result is W 34-21? <context>: CREATE TABLE table_name_89 (week INTEGER, result VARCHAR) <answer>: SELECT MAX(week) FROM table_name_89 WHERE result = "w 34-21" |
57,422 | <question>: What is the most recent year with a finish in 2nd position? <context>: CREATE TABLE table_name_22 (season INTEGER, position VARCHAR) <answer>: SELECT MAX(season) FROM table_name_22 WHERE position = "2nd" |
57,423 | <question>: What is the position in the 2004 season? <context>: CREATE TABLE table_name_62 (position VARCHAR, season INTEGER) <answer>: SELECT position FROM table_name_62 WHERE season > 2004 |
57,424 | <question>: What is the division for the season earlier than 2004? <context>: CREATE TABLE table_name_60 (division VARCHAR, season INTEGER) <answer>: SELECT division FROM table_name_60 WHERE season < 2004 |
57,425 | <question>: What is Team, when Qual 1 is 1:16.417? <context>: CREATE TABLE table_name_70 (team VARCHAR, qual_1 VARCHAR) <answer>: SELECT team FROM table_name_70 WHERE qual_1 = "1:16.417" |
57,426 | <question>: What is Team, when Qual 1 is 1:16.417? <context>: CREATE TABLE table_name_65 (team VARCHAR, qual_1 VARCHAR) <answer>: SELECT team FROM table_name_65 WHERE qual_1 = "1:16.417" |
57,427 | <question>: What is Team when Qual 1 is 1:20.139? <context>: CREATE TABLE table_name_57 (team VARCHAR, qual_1 VARCHAR) <answer>: SELECT team FROM table_name_57 WHERE qual_1 = "1:20.139" |
57,428 | <question>: What is Name when Qual 2 is 1:15.582? <context>: CREATE TABLE table_name_36 (name VARCHAR, qual_2 VARCHAR) <answer>: SELECT name FROM table_name_36 WHERE qual_2 = "1:15.582" |
57,429 | <question>: What is Name, when Best is 1:15.673? <context>: CREATE TABLE table_name_44 (name VARCHAR, best VARCHAR) <answer>: SELECT name FROM table_name_44 WHERE best = "1:15.673" |
57,430 | <question>: Where was the tournament that happened in 1987 on a clay surface? <context>: CREATE TABLE table_name_18 (tournament VARCHAR, date VARCHAR, surface VARCHAR) <answer>: SELECT tournament FROM table_name_18 WHERE date = 1987 AND surface = "clay" |
57,431 | <question>: Who was the opponent before 1990 that had a score of 4–6, 6–3, 6–4 and Partnering of Yannick Noah? <context>: CREATE TABLE table_name_48 (opponent_in_the_final VARCHAR, score VARCHAR, date VARCHAR, partnering VARCHAR) <answer>: SELECT opponent_in_the_final FROM table_name_48 WHERE date < 1990 AND partnering = "yannick noah" AND score = "4–6, 6–3, 6–4" |
57,432 | <question>: WHAT IS THE SEATS IN Hamburgische Bürgerschaft THAT HAS GREEN POLITICS? <context>: CREATE TABLE table_name_83 (seats_in_hamburgische_bürgerschaft VARCHAR, ideology VARCHAR) <answer>: SELECT seats_in_hamburgische_bürgerschaft FROM table_name_83 WHERE ideology = "green politics" |
57,433 | <question>: WHAT IS THE ABBR WITH VOTES OF 11.2% IN 2011? <context>: CREATE TABLE table_name_70 (abbr VARCHAR, votes__2011_ VARCHAR) <answer>: SELECT abbr FROM table_name_70 WHERE votes__2011_ = "11.2%" |
57,434 | <question>: WHAT IS THE TOTAL NUMBER OF SEATS IN Hamburgische Bürgerschaft WITH AN ABBR OF bündnis 90 / die grünen (gal)? <context>: CREATE TABLE table_name_18 (seats_in_hamburgische_bürgerschaft VARCHAR, abbr VARCHAR) <answer>: SELECT COUNT(seats_in_hamburgische_bürgerschaft) FROM table_name_18 WHERE abbr = "bündnis 90 / die grünen (gal)" |
57,435 | <question>: WHAT IS THE GERMAN NAME OF LIBERALISM? <context>: CREATE TABLE table_name_85 (name__german_ VARCHAR, ideology VARCHAR) <answer>: SELECT name__german_ FROM table_name_85 WHERE ideology = "liberalism" |
57,436 | <question>: WHAT ARE THE SEATS IN Hamburgische Bürgerschaft WITH THE NAME alliance '90/the greens? <context>: CREATE TABLE table_name_57 (seats_in_hamburgische_bürgerschaft VARCHAR, name__english_ VARCHAR) <answer>: SELECT seats_in_hamburgische_bürgerschaft FROM table_name_57 WHERE name__english_ = "alliance '90/the greens" |
57,437 | <question>: What is the earliest game played at the TD Waterhouse Centre? <context>: CREATE TABLE table_name_99 (game INTEGER, location VARCHAR) <answer>: SELECT MIN(game) FROM table_name_99 WHERE location = "td waterhouse centre" |
57,438 | <question>: Who was the opponent on April 2? <context>: CREATE TABLE table_name_56 (opponent VARCHAR, date VARCHAR) <answer>: SELECT opponent FROM table_name_56 WHERE date = "april 2" |
57,439 | <question>: What was the highest game number when the opponent was the Miami Heat? <context>: CREATE TABLE table_name_5 (game INTEGER, opponent VARCHAR) <answer>: SELECT MAX(game) FROM table_name_5 WHERE opponent = "miami heat" |
57,440 | <question>: What is Website, when License is Apache License 2.0? <context>: CREATE TABLE table_name_55 (website VARCHAR, license VARCHAR) <answer>: SELECT website FROM table_name_55 WHERE license = "apache license 2.0" |
57,441 | <question>: What is Source Version, when Target Version is Java 7, 6, 5? <context>: CREATE TABLE table_name_10 (source_version VARCHAR, target_version VARCHAR) <answer>: SELECT source_version FROM table_name_10 WHERE target_version = "java 7, 6, 5" |
57,442 | <question>: What is Source Version, when License is LGPL or MPL? <context>: CREATE TABLE table_name_42 (source_version VARCHAR, license VARCHAR) <answer>: SELECT source_version FROM table_name_42 WHERE license = "lgpl or mpl" |
57,443 | <question>: What is Target Version, when Last Release is 2009-08-09, 1.2.9? <context>: CREATE TABLE table_name_91 (target_version VARCHAR, last_release VARCHAR) <answer>: SELECT target_version FROM table_name_91 WHERE last_release = "2009-08-09, 1.2.9" |
57,444 | <question>: What is Website, when Last Release is 2009-08-09, 1.2.9? <context>: CREATE TABLE table_name_25 (website VARCHAR, last_release VARCHAR) <answer>: SELECT website FROM table_name_25 WHERE last_release = "2009-08-09, 1.2.9" |
57,445 | <question>: What is Target Version, when License is LGPL or MPL? <context>: CREATE TABLE table_name_68 (target_version VARCHAR, license VARCHAR) <answer>: SELECT target_version FROM table_name_68 WHERE license = "lgpl or mpl" |
57,446 | <question>: What is the class for the ERP W of 500? <context>: CREATE TABLE table_name_12 (class VARCHAR, erp_w VARCHAR) <answer>: SELECT class FROM table_name_12 WHERE erp_w = 500 |
57,447 | <question>: What is the ERP W for the station whose call sign is K248BJ and whose frequency MHz is higher than 97.5? <context>: CREATE TABLE table_name_59 (erp_w INTEGER, call_sign VARCHAR, frequency_mhz VARCHAR) <answer>: SELECT AVG(erp_w) FROM table_name_59 WHERE call_sign = "k248bj" AND frequency_mhz > 97.5 |
57,448 | <question>: In which city is the station licensed whose frequency MHz is higher than 102.3 and the ERP W is lower than 1,000? <context>: CREATE TABLE table_name_60 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) <answer>: SELECT city_of_license FROM table_name_60 WHERE frequency_mhz = 102.3 AND erp_w < 1 OFFSET 000 |
57,449 | <question>: In which city is the station licensed whose frequency MHz is higher than 102.3 and whose call sign is K292EU? <context>: CREATE TABLE table_name_28 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR) <answer>: SELECT city_of_license FROM table_name_28 WHERE frequency_mhz > 102.3 AND call_sign = "k292eu" |
57,450 | <question>: What was sweden's purse in USD? <context>: CREATE TABLE table_name_58 (purse___us_ INTEGER, country VARCHAR) <answer>: SELECT SUM(purse___us_) AS $__ FROM table_name_58 WHERE country = "sweden" |
57,451 | <question>: What was 2003's To Par? <context>: CREATE TABLE table_name_31 (to_par VARCHAR, year VARCHAR) <answer>: SELECT to_par FROM table_name_31 WHERE year = 2003 |
57,452 | <question>: What is the highest laps for the grid of 7? <context>: CREATE TABLE table_name_82 (laps INTEGER, grid VARCHAR) <answer>: SELECT MAX(laps) FROM table_name_82 WHERE grid = 7 |
57,453 | <question>: What are the average Laps for the time/retired of +16.874 secs, and a grid less than 5? <context>: CREATE TABLE table_name_4 (laps INTEGER, time_retired VARCHAR, grid VARCHAR) <answer>: SELECT AVG(laps) FROM table_name_4 WHERE time_retired = "+16.874 secs" AND grid < 5 |
57,454 | <question>: What are the greatest points for a time/retired of +32.256 secs, and a a grid larger than 12? <context>: CREATE TABLE table_name_88 (points INTEGER, time_retired VARCHAR, grid VARCHAR) <answer>: SELECT MAX(points) FROM table_name_88 WHERE time_retired = "+32.256 secs" AND grid > 12 |
57,455 | <question>: What is biggest grid when the laps are 65? <context>: CREATE TABLE table_name_86 (grid INTEGER, laps VARCHAR) <answer>: SELECT MAX(grid) FROM table_name_86 WHERE laps = 65 |
57,456 | <question>: What team has a grid of 15? <context>: CREATE TABLE table_name_6 (team VARCHAR, grid VARCHAR) <answer>: SELECT team FROM table_name_6 WHERE grid = 15 |
57,457 | <question>: What is the average new council number when the election result is smaller than 0? <context>: CREATE TABLE table_name_57 (new_council INTEGER, election_result INTEGER) <answer>: SELECT AVG(new_council) FROM table_name_57 WHERE election_result < 0 |
57,458 | <question>: How many seats were up for election during the vote where the election result was 9 and the new council 27? <context>: CREATE TABLE table_name_10 (seats_up_for_election INTEGER, election_result VARCHAR, new_council VARCHAR) <answer>: SELECT SUM(seats_up_for_election) FROM table_name_10 WHERE election_result = 9 AND new_council > 27 |
57,459 | <question>: How many staying councillors were there when the election result was larger than 0, the new council less than 27 and the party conservatives? <context>: CREATE TABLE table_name_42 (staying_councillors INTEGER, new_council VARCHAR, election_result VARCHAR, party VARCHAR) <answer>: SELECT AVG(staying_councillors) FROM table_name_42 WHERE election_result > 0 AND party = "conservatives" AND new_council < 27 |
57,460 | <question>: What opponent did the Broncos play on November 16? <context>: CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR) <answer>: SELECT opponent FROM table_name_93 WHERE date = "november 16" |
57,461 | <question>: What was the Bronco's record when they played the Detroit Lions at Mile High Stadium? <context>: CREATE TABLE table_name_98 (record VARCHAR, game_site VARCHAR, opponent VARCHAR) <answer>: SELECT record FROM table_name_98 WHERE game_site = "mile high stadium" AND opponent = "detroit lions" |
57,462 | <question>: What was the score of the game on November 22? <context>: CREATE TABLE table_name_8 (result VARCHAR, date VARCHAR) <answer>: SELECT result FROM table_name_8 WHERE date = "november 22" |
57,463 | <question>: What is the lowest number of points scored when there were 1,500 in attendance? <context>: CREATE TABLE table_name_50 (points INTEGER, attendance VARCHAR) <answer>: SELECT MIN(points) FROM table_name_50 WHERE attendance = "1,500" |
57,464 | <question>: what is 2001 when the year is ebitda and 2009 is less than 3,600? <context>: CREATE TABLE table_name_73 (year VARCHAR) <answer>: SELECT SUM(2001) FROM table_name_73 WHERE year = "ebitda" AND 2009 < 3 OFFSET 600 |
57,465 | <question>: who is the author for harry potter and the deathly hallows? <context>: CREATE TABLE table_name_17 (author VARCHAR, title VARCHAR) <answer>: SELECT author FROM table_name_17 WHERE title = "harry potter and the deathly hallows" |
57,466 | <question>: what is the title when the citation is honor and the narrator is lincoln hoppe? <context>: CREATE TABLE table_name_94 (title VARCHAR, citation VARCHAR, narrator VARCHAR) <answer>: SELECT title FROM table_name_94 WHERE citation = "honor" AND narrator = "lincoln hoppe" |
57,467 | <question>: who is the producer when the narrator is katherine kellgren, the year is before 2013 and the author is karen cushman? <context>: CREATE TABLE table_name_17 (producer VARCHAR, author VARCHAR, narrator VARCHAR, year VARCHAR) <answer>: SELECT producer FROM table_name_17 WHERE narrator = "katherine kellgren" AND year < 2013 AND author = "karen cushman" |
57,468 | <question>: what is the year when the citation is honor and the author is kadir nelson? <context>: CREATE TABLE table_name_37 (year INTEGER, citation VARCHAR, author VARCHAR) <answer>: SELECT SUM(year) FROM table_name_37 WHERE citation = "honor" AND author = "kadir nelson" |
57,469 | <question>: What is Opponent In The Final, when Year is "1942"? <context>: CREATE TABLE table_name_33 (opponent_in_the_final VARCHAR, year VARCHAR) <answer>: SELECT opponent_in_the_final FROM table_name_33 WHERE year = 1942 |
57,470 | <question>: What is the average Year, when Outcome is "Winner"? <context>: CREATE TABLE table_name_98 (year INTEGER, outcome VARCHAR) <answer>: SELECT AVG(year) FROM table_name_98 WHERE outcome = "winner" |
57,471 | <question>: What tournament did Pemra Özgen play against julia kimmelmann in the finals? <context>: CREATE TABLE table_name_54 (tournament VARCHAR, opponent_in_the_final VARCHAR) <answer>: SELECT tournament FROM table_name_54 WHERE opponent_in_the_final = "julia kimmelmann" |
57,472 | <question>: Which Home has a Visitor of nashville? <context>: CREATE TABLE table_name_44 (home VARCHAR, visitor VARCHAR) <answer>: SELECT home FROM table_name_44 WHERE visitor = "nashville" |
57,473 | <question>: Which Visitor has a Decision of osgood, and a Date of february 15? <context>: CREATE TABLE table_name_63 (visitor VARCHAR, decision VARCHAR, date VARCHAR) <answer>: SELECT visitor FROM table_name_63 WHERE decision = "osgood" AND date = "february 15" |
57,474 | <question>: Which Date has a Record of 36–11–7? <context>: CREATE TABLE table_name_15 (date VARCHAR, record VARCHAR) <answer>: SELECT date FROM table_name_15 WHERE record = "36–11–7" |
57,475 | <question>: Which Date has a Visitor of edmonton? <context>: CREATE TABLE table_name_24 (date VARCHAR, visitor VARCHAR) <answer>: SELECT date FROM table_name_24 WHERE visitor = "edmonton" |
57,476 | <question>: What is the sum of Bronze, when Gold is less than 1, when Total is greater than 1, and when Rank is 10? <context>: CREATE TABLE table_name_49 (bronze INTEGER, rank VARCHAR, gold VARCHAR, total VARCHAR) <answer>: SELECT SUM(bronze) FROM table_name_49 WHERE gold < 1 AND total > 1 AND rank = 10 |
57,477 | <question>: What is the average Bronze, when Rank is greater than 6, when Nation is Italy (ITA), and when Total is less than 1? <context>: CREATE TABLE table_name_78 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR) <answer>: SELECT AVG(bronze) FROM table_name_78 WHERE rank > 6 AND nation = "italy (ita)" AND total < 1 |
57,478 | <question>: What is the sum of Total, when Silver is greater than 1, when Rank is 9, and when Bronze is greater than 0? <context>: CREATE TABLE table_name_14 (total INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR) <answer>: SELECT SUM(total) FROM table_name_14 WHERE silver > 1 AND rank = 9 AND bronze > 0 |
57,479 | <question>: What is the average Gold, when Total is 2, when Silver is less than 1, and when Rank is greater than 5? <context>: CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR) <answer>: SELECT AVG(gold) FROM table_name_95 WHERE total = 2 AND silver < 1 AND rank > 5 |
57,480 | <question>: What is the sum of Rank, when Bronze is less than 1, when Nation is Switzerland (SUI), and when Total is less than 2? <context>: CREATE TABLE table_name_32 (rank INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR) <answer>: SELECT SUM(rank) FROM table_name_32 WHERE bronze < 1 AND nation = "switzerland (sui)" AND total < 2 |
57,481 | <question>: What is the sum of Total, when Silver is greater than 1, when Nation is Germany (GER), and when Gold is less than 1? <context>: CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR) <answer>: SELECT SUM(total) FROM table_name_87 WHERE silver > 1 AND nation = "germany (ger)" AND gold < 1 |
57,482 | <question>: What is Player, when To Par is "7", and when Score is "73-72-67-75=287"? <context>: CREATE TABLE table_name_10 (player VARCHAR, to_par VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_10 WHERE to_par = 7 AND score = 73 - 72 - 67 - 75 = 287 |
57,483 | <question>: What is the average To Par, when Player is "Billy Casper"? <context>: CREATE TABLE table_name_20 (to_par INTEGER, player VARCHAR) <answer>: SELECT AVG(to_par) FROM table_name_20 WHERE player = "billy casper" |
57,484 | <question>: What is the highest Money ( $ ), when To Par is less than 2? <context>: CREATE TABLE table_name_11 (money___ INTEGER, to_par INTEGER) <answer>: SELECT MAX(money___) AS $__ FROM table_name_11 WHERE to_par < 2 |
57,485 | <question>: What event in guam did Tetsuji Kato win against patrick madayag? <context>: CREATE TABLE table_name_39 (event VARCHAR, opponent VARCHAR, res VARCHAR, location VARCHAR) <answer>: SELECT event FROM table_name_39 WHERE res = "win" AND location = "guam" AND opponent = "patrick madayag" |
57,486 | <question>: What was the result of the fight when Tetsuji Kato's record was 19-9? <context>: CREATE TABLE table_name_73 (res VARCHAR, record VARCHAR) <answer>: SELECT res FROM table_name_73 WHERE record = "19-9" |
57,487 | <question>: How many receptions were smaller than 7? <context>: CREATE TABLE table_name_12 (reception VARCHAR, long INTEGER) <answer>: SELECT COUNT(reception) FROM table_name_12 WHERE long < 7 |
57,488 | <question>: What is the average yards for Jimmie Giles in a game larger than 15 and reception larger than 2? <context>: CREATE TABLE table_name_81 (yards INTEGER, player VARCHAR, games VARCHAR, reception VARCHAR) <answer>: SELECT AVG(yards) FROM table_name_81 WHERE games > 15 AND reception > 2 AND player = "jimmie giles" |
57,489 | <question>: What year had a league position of 8/12? <context>: CREATE TABLE table_name_63 (year VARCHAR, league_position VARCHAR) <answer>: SELECT year FROM table_name_63 WHERE league_position = "8/12" |
57,490 | <question>: What league has a position of 8/13? <context>: CREATE TABLE table_name_88 (league VARCHAR, league_position VARCHAR) <answer>: SELECT league FROM table_name_88 WHERE league_position = "8/13" |
57,491 | <question>: What year did the malaysia premier league get a position of 8/12? <context>: CREATE TABLE table_name_93 (year VARCHAR, league VARCHAR, league_position VARCHAR) <answer>: SELECT year FROM table_name_93 WHERE league = "malaysia premier league" AND league_position = "8/12" |
57,492 | <question>: What year had a cup position of round 1 and a league position of 5/12? <context>: CREATE TABLE table_name_70 (year VARCHAR, cup_position VARCHAR, league_position VARCHAR) <answer>: SELECT year FROM table_name_70 WHERE cup_position = "round 1" AND league_position = "5/12" |
57,493 | <question>: What year had a domestic cup of singapore cup? <context>: CREATE TABLE table_name_9 (year VARCHAR, domestic_cup VARCHAR) <answer>: SELECT year FROM table_name_9 WHERE domestic_cup = "singapore cup" |
57,494 | <question>: How many Laps have Rider of olivier jacque, and a Grid larger than 7? <context>: CREATE TABLE table_name_75 (laps INTEGER, rider VARCHAR, grid VARCHAR) <answer>: SELECT SUM(laps) FROM table_name_75 WHERE rider = "olivier jacque" AND grid > 7 |
57,495 | <question>: Which Laps have a Manufacturer of suzuki, and a Grid smaller than 16? <context>: CREATE TABLE table_name_93 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR) <answer>: SELECT MAX(laps) FROM table_name_93 WHERE manufacturer = "suzuki" AND grid < 16 |
57,496 | <question>: How many Laps have a Grid larger than 9, and a Time/Retired of +32.354? <context>: CREATE TABLE table_name_87 (laps VARCHAR, grid VARCHAR, time_retired VARCHAR) <answer>: SELECT COUNT(laps) FROM table_name_87 WHERE grid > 9 AND time_retired = "+32.354" |
57,497 | <question>: What is Record, when Date is Oct 19? <context>: CREATE TABLE table_name_30 (record VARCHAR, date VARCHAR) <answer>: SELECT record FROM table_name_30 WHERE date = "oct 19" |
57,498 | <question>: What is Attendance, when Opponent is Montreal Alouettes, and when Date is Oct 4? <context>: CREATE TABLE table_name_1 (attendance VARCHAR, opponent VARCHAR, date VARCHAR) <answer>: SELECT attendance FROM table_name_1 WHERE opponent = "montreal alouettes" AND date = "oct 4" |
57,499 | <question>: What is Opponent, when Result is Win, and when Date is Aug 7? <context>: CREATE TABLE table_name_67 (opponent VARCHAR, result VARCHAR, date VARCHAR) <answer>: SELECT opponent FROM table_name_67 WHERE result = "win" AND date = "aug 7" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.