Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
55,000 | <question>: what is the lowest overall when the pick is less than 2? <context>: CREATE TABLE table_name_92 (overall INTEGER, pick INTEGER) | SELECT MIN(overall) FROM table_name_92 WHERE pick < 2 |
55,001 | <question>: what is the round when the college is north carolina and the overall is more than 124? <context>: CREATE TABLE table_name_68 (round INTEGER, college VARCHAR, overall VARCHAR) | SELECT SUM(round) FROM table_name_68 WHERE college = "north carolina" AND overall > 124 |
55,002 | <question>: October 28, 2001 was what week of the season? <context>: CREATE TABLE table_name_98 (week VARCHAR, date VARCHAR) | SELECT week FROM table_name_98 WHERE date = "october 28, 2001" |
55,003 | <question>: What was the result of week 11? <context>: CREATE TABLE table_name_1 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_1 WHERE week = 11 |
55,004 | <question>: What was the date of a week larger than 16? <context>: CREATE TABLE table_name_55 (date VARCHAR, week INTEGER) | SELECT date FROM table_name_55 WHERE week > 16 |
55,005 | <question>: November 25, 2001 was what week of the season? <context>: CREATE TABLE table_name_52 (week VARCHAR, date VARCHAR) | SELECT COUNT(week) FROM table_name_52 WHERE date = "november 25, 2001" |
55,006 | <question>: Which Wheels has Built smaller than 1958, a Location of york, and a Railway of nsr? <context>: CREATE TABLE table_name_31 (wheels VARCHAR, railway VARCHAR, built VARCHAR, location VARCHAR) | SELECT wheels FROM table_name_31 WHERE built < 1958 AND location = "york" AND railway = "nsr" |
55,007 | <question>: Which Built has a Builder of brel crewe? <context>: CREATE TABLE table_name_74 (built INTEGER, builder VARCHAR) | SELECT AVG(built) FROM table_name_74 WHERE builder = "brel crewe" |
55,008 | <question>: Which Railway has a Location of shildon, and an ObjectNumber of 1978-7006? <context>: CREATE TABLE table_name_52 (railway VARCHAR, location VARCHAR, objectnumber VARCHAR) | SELECT railway FROM table_name_52 WHERE location = "shildon" AND objectnumber = "1978-7006" |
55,009 | <question>: Which Railway has a Location of shildon, and an ObjectNumber of 1975-7022? <context>: CREATE TABLE table_name_58 (railway VARCHAR, location VARCHAR, objectnumber VARCHAR) | SELECT railway FROM table_name_58 WHERE location = "shildon" AND objectnumber = "1975-7022" |
55,010 | <question>: Which Location has an ObjectNumber of 2005-7698? <context>: CREATE TABLE table_name_71 (location VARCHAR, objectnumber VARCHAR) | SELECT location FROM table_name_71 WHERE objectnumber = "2005-7698" |
55,011 | <question>: What is the Club during the Years 1995β1996? <context>: CREATE TABLE table_name_28 (club VARCHAR, years VARCHAR) | SELECT club FROM table_name_28 WHERE years = "1995β1996" |
55,012 | <question>: In what Years was the Player in MF Position? <context>: CREATE TABLE table_name_71 (years VARCHAR, position VARCHAR) | SELECT years FROM table_name_71 WHERE position = "mf" |
55,013 | <question>: What is the 2nd leg of the 1st team in the 2007 uefa intertoto cup? <context>: CREATE TABLE table_name_72 (team__number1 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_72 WHERE team__number1 = "2007 uefa intertoto cup" |
55,014 | <question>: What is the 2nd leg of dinamo minsk team #2? <context>: CREATE TABLE table_name_20 (team__number2 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_20 WHERE team__number2 = "dinamo minsk" |
55,015 | <question>: What is the 2nd leg of the second team in the 2007 uefa intertoto cup? <context>: CREATE TABLE table_name_78 (team__number2 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_78 WHERE team__number2 = "2007 uefa intertoto cup" |
55,016 | <question>: What is the status of the 10 against? <context>: CREATE TABLE table_name_93 (status VARCHAR, against VARCHAR) | SELECT status FROM table_name_93 WHERE against = 10 |
55,017 | <question>: Who was the opposing team in the test match? <context>: CREATE TABLE table_name_76 (opposing_team VARCHAR, status VARCHAR) | SELECT opposing_team FROM table_name_76 WHERE status = "test match" |
55,018 | <question>: Where was the 05/09/1973 venue? <context>: CREATE TABLE table_name_63 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_63 WHERE date = "05/09/1973" |
55,019 | <question>: Which Overall has a Position of te, and a Round larger than 5? <context>: CREATE TABLE table_name_82 (overall INTEGER, position VARCHAR, round VARCHAR) | SELECT AVG(overall) FROM table_name_82 WHERE position = "te" AND round > 5 |
55,020 | <question>: Which Position has a Round larger than 14, and an Overall smaller than 419? <context>: CREATE TABLE table_name_70 (position VARCHAR, round VARCHAR, overall VARCHAR) | SELECT position FROM table_name_70 WHERE round > 14 AND overall < 419 |
55,021 | <question>: Which Overall has a Round smaller than 2? <context>: CREATE TABLE table_name_65 (overall VARCHAR, round INTEGER) | SELECT overall FROM table_name_65 WHERE round < 2 |
55,022 | <question>: Which Name has a Round larger than 4, an Overall smaller than 338, a Pick smaller than 11, and a College of virginia tech? <context>: CREATE TABLE table_name_39 (name VARCHAR, college VARCHAR, pick VARCHAR, round VARCHAR, overall VARCHAR) | SELECT name FROM table_name_39 WHERE round > 4 AND overall < 338 AND pick < 11 AND college = "virginia tech" |
55,023 | <question>: Who has the event of 36 arrow finals? <context>: CREATE TABLE table_name_81 (name VARCHAR, event VARCHAR) | SELECT name FROM table_name_81 WHERE event = "36 arrow finals" |
55,024 | <question>: What is the total score for the 36 arrow finals event? <context>: CREATE TABLE table_name_72 (score VARCHAR, event VARCHAR) | SELECT COUNT(score) FROM table_name_72 WHERE event = "36 arrow finals" |
55,025 | <question>: Who is moving with the nationality of Tri? <context>: CREATE TABLE table_name_78 (moving_to VARCHAR, nat VARCHAR) | SELECT moving_to FROM table_name_78 WHERE nat = "tri" |
55,026 | <question>: What is the sSpec Number of the model with a 1ghz frequency? <context>: CREATE TABLE table_name_52 (sspec_number VARCHAR, frequency VARCHAR) | SELECT sspec_number FROM table_name_52 WHERE frequency = "1ghz" |
55,027 | <question>: What is the part number of the model that has a frequency of 933mhz? <context>: CREATE TABLE table_name_32 (part_number_s_ VARCHAR, frequency VARCHAR) | SELECT part_number_s_ FROM table_name_32 WHERE frequency = "933mhz" |
55,028 | <question>: What date was part number rk80533pz933256 released? <context>: CREATE TABLE table_name_89 (release_date VARCHAR, part_number_s_ VARCHAR) | SELECT release_date FROM table_name_89 WHERE part_number_s_ = "rk80533pz933256" |
55,029 | <question>: What is the frequency of the model with sSpec number sl5qj? <context>: CREATE TABLE table_name_72 (frequency VARCHAR, sspec_number VARCHAR) | SELECT frequency FROM table_name_72 WHERE sspec_number = "sl5qj" |
55,030 | <question>: How many years does coach Jim Berryman have? <context>: CREATE TABLE table_name_69 (years VARCHAR, coach VARCHAR) | SELECT years FROM table_name_69 WHERE coach = "jim berryman" |
55,031 | <question>: Which Location has a Method of submission (rear naked choke), a Round of 1, and an Event of ufc 127? <context>: CREATE TABLE table_name_57 (location VARCHAR, event VARCHAR, method VARCHAR, round VARCHAR) | SELECT location FROM table_name_57 WHERE method = "submission (rear naked choke)" AND round = 1 AND event = "ufc 127" |
55,032 | <question>: Which Record has a Time of n/a? <context>: CREATE TABLE table_name_23 (record VARCHAR, time VARCHAR) | SELECT record FROM table_name_23 WHERE time = "n/a" |
55,033 | <question>: Which Opponent has a Location of gold coast , australia, and a Method of submission (punches)? <context>: CREATE TABLE table_name_26 (opponent VARCHAR, location VARCHAR, method VARCHAR) | SELECT opponent FROM table_name_26 WHERE location = "gold coast , australia" AND method = "submission (punches)" |
55,034 | <question>: what is the location when the circuit is lowood circuit and the race is lowood trophy? <context>: CREATE TABLE table_name_47 (location VARCHAR, circuit VARCHAR, race VARCHAR) | SELECT location FROM table_name_47 WHERE circuit = "lowood circuit" AND race = "lowood trophy" |
55,035 | <question>: what is the race on 23 october? <context>: CREATE TABLE table_name_81 (race VARCHAR, date VARCHAR) | SELECT race FROM table_name_81 WHERE date = "23 october" |
55,036 | <question>: what is the circuit when the winner is stan jones and the race is phillip island trophy race? <context>: CREATE TABLE table_name_3 (circuit VARCHAR, winner VARCHAR, race VARCHAR) | SELECT circuit FROM table_name_3 WHERE winner = "stan jones" AND race = "phillip island trophy race" |
55,037 | <question>: What is the displacement and configuration with a max speed of km/h (mph) and the car model Panamera 4s? <context>: CREATE TABLE table_name_36 (displacement_ VARCHAR, _configuration VARCHAR, max_speed VARCHAR, car_model VARCHAR) | SELECT displacement_ & _configuration FROM table_name_36 WHERE max_speed = "km/h (mph)" AND car_model = "panamera 4s" |
55,038 | <question>: What is the displacement & configuration with CO2 of 204 g/km emissions? <context>: CREATE TABLE table_name_18 (displacement_ VARCHAR, _configuration VARCHAR, emissions_co2 VARCHAR) | SELECT displacement_ & _configuration FROM table_name_18 WHERE emissions_co2 = "204 g/km" |
55,039 | <question>: What displacement & configuration does the car model Panamera 4s have? <context>: CREATE TABLE table_name_68 (displacement_ VARCHAR, _configuration VARCHAR, car_model VARCHAR) | SELECT displacement_ & _configuration FROM table_name_68 WHERE car_model = "panamera 4s" |
55,040 | <question>: What is the emissions CO2 with a max speed of km/h (mph) of the car model Panamera 4s? <context>: CREATE TABLE table_name_76 (emissions_co2 VARCHAR, max_speed VARCHAR, car_model VARCHAR) | SELECT emissions_co2 FROM table_name_76 WHERE max_speed = "km/h (mph)" AND car_model = "panamera 4s" |
55,041 | <question>: How many tickets were available at Halle Tony Garnier on June 15, 2009? <context>: CREATE TABLE table_name_75 (tickets_available_since VARCHAR, venue VARCHAR, date VARCHAR) | SELECT tickets_available_since FROM table_name_75 WHERE venue = "halle tony garnier" AND date = "june 15, 2009" |
55,042 | <question>: What city had tickets available since March 28, 2008 and went on sale on September 4, 2009? <context>: CREATE TABLE table_name_23 (city VARCHAR, tickets_available_since VARCHAR, date VARCHAR) | SELECT city FROM table_name_23 WHERE tickets_available_since = "march 28, 2008" AND date = "september 4, 2009" |
55,043 | <question>: WHAT IS THE PICK FOR JOE DAY, ROUND LARGER THAN 1, AND OVERALL SMALLER THAN 150? <context>: CREATE TABLE table_name_57 (pick INTEGER, overall VARCHAR, round VARCHAR, name VARCHAR) | SELECT MIN(pick) FROM table_name_57 WHERE round > 1 AND name = "joe day" AND overall < 150 |
55,044 | <question>: WHAT IS THE SUM OF PICK WITH AN OVERALL LARGER THAN 250, AND FOR FLORIDA COLLEGE? <context>: CREATE TABLE table_name_62 (pick INTEGER, overall VARCHAR, college VARCHAR) | SELECT SUM(pick) FROM table_name_62 WHERE overall > 250 AND college = "florida" |
55,045 | <question>: What is the loan club with bbc sport as the start source and ended in 3 February? <context>: CREATE TABLE table_name_41 (loan_club VARCHAR, start_source VARCHAR, ended VARCHAR) | SELECT loan_club FROM table_name_41 WHERE start_source = "bbc sport" AND ended = "3 february" |
55,046 | <question>: When did the enews start source start? <context>: CREATE TABLE table_name_99 (started VARCHAR, start_source VARCHAR) | SELECT started FROM table_name_99 WHERE start_source = "enews" |
55,047 | <question>: What is the start source of the irl country, which ended on 13 April? <context>: CREATE TABLE table_name_7 (start_source VARCHAR, country VARCHAR, ended VARCHAR) | SELECT start_source FROM table_name_7 WHERE country = "irl" AND ended = "13 april" |
55,048 | <question>: What is the country named feeney with a bbc sport start source? <context>: CREATE TABLE table_name_16 (country VARCHAR, start_source VARCHAR, name VARCHAR) | SELECT country FROM table_name_16 WHERE start_source = "bbc sport" AND name = "feeney" |
55,049 | <question>: What is the loan club named dennehy? <context>: CREATE TABLE table_name_61 (loan_club VARCHAR, name VARCHAR) | SELECT loan_club FROM table_name_61 WHERE name = "dennehy" |
55,050 | <question>: What's the most races with less than 10 podiums and 1st position? <context>: CREATE TABLE table_name_27 (races INTEGER, position VARCHAR, podiums VARCHAR) | SELECT MAX(races) FROM table_name_27 WHERE position = "1st" AND podiums < 10 |
55,051 | <question>: How many runs did mahela jayawardene and thilan samaraweera have? <context>: CREATE TABLE table_name_82 (runs INTEGER, batting_partners VARCHAR) | SELECT SUM(runs) FROM table_name_82 WHERE batting_partners = "mahela jayawardene and thilan samaraweera" |
55,052 | <question>: What venue did mahela jayawardene and thilan samaraweera play at? <context>: CREATE TABLE table_name_42 (venue VARCHAR, batting_partners VARCHAR) | SELECT venue FROM table_name_42 WHERE batting_partners = "mahela jayawardene and thilan samaraweera" |
55,053 | <question>: Who were the batting partners that played for India in 1997? <context>: CREATE TABLE table_name_96 (batting_partners VARCHAR, fielding_team VARCHAR, season VARCHAR) | SELECT batting_partners FROM table_name_96 WHERE fielding_team = "india" AND season = "1997" |
55,054 | <question>: What is the defending forces when Al-Murassas shows for name? <context>: CREATE TABLE table_name_21 (defending_forces VARCHAR, name VARCHAR) | SELECT defending_forces FROM table_name_21 WHERE name = "al-murassas" |
55,055 | <question>: What is the brigade Tall Al-Shawk shows for the name? <context>: CREATE TABLE table_name_68 (brigade VARCHAR, name VARCHAR) | SELECT brigade FROM table_name_68 WHERE name = "tall al-shawk" |
55,056 | <question>: What is the brigade when Al-Bira is the name? <context>: CREATE TABLE table_name_7 (brigade VARCHAR, name VARCHAR) | SELECT brigade FROM table_name_7 WHERE name = "al-bira" |
55,057 | <question>: What is the brigade when Al-Hamra ('arab al-hamra) shows for name? <context>: CREATE TABLE table_name_63 (brigade VARCHAR, name VARCHAR) | SELECT brigade FROM table_name_63 WHERE name = "al-hamra ('arab al-hamra)" |
55,058 | <question>: What is the Defending forces when the population was 120? <context>: CREATE TABLE table_name_41 (defending_forces VARCHAR, population VARCHAR) | SELECT defending_forces FROM table_name_41 WHERE population = "120" |
55,059 | <question>: What was the rank of the park that had a value of 5,040,000 in 2010? <context>: CREATE TABLE table_name_30 (rank VARCHAR) | SELECT rank FROM table_name_30 WHERE 2010 = "5,040,000" |
55,060 | <question>: What was the overall pick number of the player selected before round 3? <context>: CREATE TABLE table_name_40 (overall_pick VARCHAR, round INTEGER) | SELECT COUNT(overall_pick) FROM table_name_40 WHERE round < 3 |
55,061 | <question>: Which College/Junior/Club Team (League) did the player julien cayer who was selected before round 3 play for? <context>: CREATE TABLE table_name_87 (college_junior_club_team__league_ VARCHAR, round VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_87 WHERE round > 3 AND player = "julien cayer" |
55,062 | <question>: what is the least bronze when the rank is 3 and silver is less than 2? <context>: CREATE TABLE table_name_3 (bronze INTEGER, rank VARCHAR, silver VARCHAR) | SELECT MIN(bronze) FROM table_name_3 WHERE rank = "3" AND silver < 2 |
55,063 | <question>: what is the total when bronze is 0 and the nation is hungary? <context>: CREATE TABLE table_name_58 (total INTEGER, bronze VARCHAR, nation VARCHAR) | SELECT MAX(total) FROM table_name_58 WHERE bronze = 0 AND nation = "hungary" |
55,064 | <question>: what is the total when the rank is 7 and gold is more than 0? <context>: CREATE TABLE table_name_41 (total INTEGER, rank VARCHAR, gold VARCHAR) | SELECT AVG(total) FROM table_name_41 WHERE rank = "7" AND gold > 0 |
55,065 | <question>: what is the highest gold when the nation is total and the total is less than 24? <context>: CREATE TABLE table_name_8 (gold INTEGER, nation VARCHAR) | SELECT MAX(gold) FROM table_name_8 WHERE nation = "total" AND "total" < 24 |
55,066 | <question>: Looking only at matches occurring after Game 51, who was the opponent for the game that ended with a score of 99-129? <context>: CREATE TABLE table_name_61 (opponent VARCHAR, game VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_61 WHERE game > 51 AND score = "99-129" |
55,067 | <question>: For the game against the Washington Bullets, what was the final score? <context>: CREATE TABLE table_name_97 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_97 WHERE opponent = "washington bullets" |
55,068 | <question>: For the game where the opponent is listed as @ Indiana Pacers, what was the end record? <context>: CREATE TABLE table_name_31 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_31 WHERE opponent = "@ indiana pacers" |
55,069 | <question>: Which game number was played at Chicago Stadium? <context>: CREATE TABLE table_name_63 (game VARCHAR, location VARCHAR) | SELECT game FROM table_name_63 WHERE location = "chicago stadium" |
55,070 | <question>: What was the attendance of the match with motagua as the home team? <context>: CREATE TABLE table_name_51 (attendance INTEGER, home VARCHAR) | SELECT AVG(attendance) FROM table_name_51 WHERE home = "motagua" |
55,071 | <question>: What is the score of the game where real espana was the home team? <context>: CREATE TABLE table_name_90 (score VARCHAR, home VARCHAR) | SELECT score FROM table_name_90 WHERE home = "real espana" |
55,072 | <question>: What team was the away team for the game with 916 in attendance? <context>: CREATE TABLE table_name_45 (away VARCHAR, attendance VARCHAR) | SELECT away FROM table_name_45 WHERE attendance = 916 |
55,073 | <question>: What was the score of the game wehre the deportes savio were the home team? <context>: CREATE TABLE table_name_78 (score VARCHAR, home VARCHAR) | SELECT score FROM table_name_78 WHERE home = "deportes savio" |
55,074 | <question>: In which championship did the winner have a score of β9 (66-69-73-71=279)? <context>: CREATE TABLE table_name_83 (championship VARCHAR, winning_score VARCHAR) | SELECT championship FROM table_name_83 WHERE winning_score = β9(66 - 69 - 73 - 71 = 279) |
55,075 | <question>: During the championship where the winning score was β9 (66-69-73-71=279)?, who was the runner-up? <context>: CREATE TABLE table_name_32 (runner_s__up VARCHAR, winning_score VARCHAR) | SELECT runner_s__up FROM table_name_32 WHERE winning_score = β9(66 - 69 - 73 - 71 = 279) |
55,076 | <question>: What was the winning score in the year 2002? <context>: CREATE TABLE table_name_28 (winning_score VARCHAR, year VARCHAR) | SELECT winning_score FROM table_name_28 WHERE year = 2002 |
55,077 | <question>: What is the fewest goals of CD Alcoyano with more than 25 points? <context>: CREATE TABLE table_name_57 (goals_against INTEGER, club VARCHAR, points VARCHAR) | SELECT MIN(goals_against) FROM table_name_57 WHERE club = "cd alcoyano" AND points > 25 |
55,078 | <question>: What is the fewest number of wins that had fewer than 7 draws and more than 30 played? <context>: CREATE TABLE table_name_26 (wins INTEGER, draws VARCHAR, played VARCHAR) | SELECT MIN(wins) FROM table_name_26 WHERE draws < 7 AND played > 30 |
55,079 | <question>: What is the fewest points that has more than 29 goals? <context>: CREATE TABLE table_name_42 (points INTEGER, goal_difference INTEGER) | SELECT MIN(points) FROM table_name_42 WHERE goal_difference > 29 |
55,080 | <question>: What date have highest 0-4-4 forney locomotive with number larger than 20 and works number larger than 23754? <context>: CREATE TABLE table_name_90 (date INTEGER, works_number VARCHAR, type VARCHAR, number VARCHAR) | SELECT MAX(date) FROM table_name_90 WHERE type = "0-4-4 forney locomotive" AND number > 20 AND works_number > 23754 |
55,081 | <question>: What is the sum of number with type 0-4-4 forney locomotive, number smaller than 20 and works number of 1251? <context>: CREATE TABLE table_name_37 (date VARCHAR, works_number VARCHAR, type VARCHAR, number VARCHAR) | SELECT COUNT(date) FROM table_name_37 WHERE type = "0-4-4 forney locomotive" AND number < 20 AND works_number = 1251 |
55,082 | <question>: What was the lowest attendance for the game that had a time of 3:31 and was before game 7? <context>: CREATE TABLE table_name_58 (attendance INTEGER, time VARCHAR, game VARCHAR) | SELECT MIN(attendance) FROM table_name_58 WHERE time = "3:31" AND game < 7 |
55,083 | <question>: What was the sum of attendance for games with a time of 3:23? <context>: CREATE TABLE table_name_53 (attendance INTEGER, time VARCHAR) | SELECT SUM(attendance) FROM table_name_53 WHERE time = "3:23" |
55,084 | <question>: WHat is the lowest amount of bronze medals for teams with 9 silvers and less than 27 points? <context>: CREATE TABLE table_name_56 (bronze INTEGER, silver VARCHAR, total VARCHAR) | SELECT MIN(bronze) FROM table_name_56 WHERE silver = 9 AND total < 27 |
55,085 | <question>: What is the To par of the New Zealand Player? <context>: CREATE TABLE table_name_79 (to_par VARCHAR, country VARCHAR) | SELECT to_par FROM table_name_79 WHERE country = "new zealand" |
55,086 | <question>: What Player had a Score of 70-71=141? <context>: CREATE TABLE table_name_80 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_80 WHERE score = 70 - 71 = 141 |
55,087 | <question>: What is Ernie Els' Score? <context>: CREATE TABLE table_name_43 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_43 WHERE player = "ernie els" |
55,088 | <question>: What was the attendance when Bournemouth was the away team? <context>: CREATE TABLE table_name_25 (attendance VARCHAR, away_team VARCHAR) | SELECT attendance FROM table_name_25 WHERE away_team = "bournemouth" |
55,089 | <question>: Who was the away team when Lincoln City was the home team? <context>: CREATE TABLE table_name_19 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_19 WHERE home_team = "lincoln city" |
55,090 | <question>: What was the score when Walsall was the away team? <context>: CREATE TABLE table_name_91 (score VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_91 WHERE away_team = "walsall" |
55,091 | <question>: Which wheels were built 1920? <context>: CREATE TABLE table_name_33 (wheels VARCHAR, built VARCHAR) | SELECT wheels FROM table_name_33 WHERE built = 1920 |
55,092 | <question>: Which builder has a Built smaller than 1880? <context>: CREATE TABLE table_name_8 (builder VARCHAR, built INTEGER) | SELECT builder FROM table_name_8 WHERE built < 1880 |
55,093 | <question>: What is Place, when Player is "Mike Souchak"? <context>: CREATE TABLE table_name_68 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_68 WHERE player = "mike souchak" |
55,094 | <question>: What is Country, when Place is "T9", and when Player is "Jay Hebert"? <context>: CREATE TABLE table_name_93 (country VARCHAR, place VARCHAR, player VARCHAR) | SELECT country FROM table_name_93 WHERE place = "t9" AND player = "jay hebert" |
55,095 | <question>: What is Player, when Place is "T9", and when Score is "73-70=143"? <context>: CREATE TABLE table_name_90 (player VARCHAR, place VARCHAR, score VARCHAR) | SELECT player FROM table_name_90 WHERE place = "t9" AND score = 73 - 70 = 143 |
55,096 | <question>: What is Country, when Player is "Dow Finsterwald"? <context>: CREATE TABLE table_name_54 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_54 WHERE player = "dow finsterwald" |
55,097 | <question>: What is Score, when Country is "United States", when Place is "T9", and when Player is "Jay Hebert"? <context>: CREATE TABLE table_name_28 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR) | SELECT score FROM table_name_28 WHERE country = "united states" AND place = "t9" AND player = "jay hebert" |
55,098 | <question>: What is Score, when To Par is "+1", and when Player is "Mike Souchak"? <context>: CREATE TABLE table_name_7 (score VARCHAR, to_par VARCHAR, player VARCHAR) | SELECT score FROM table_name_7 WHERE to_par = "+1" AND player = "mike souchak" |
55,099 | <question>: What is the Score when the Home team is Chicago Black Hawks and the Record is 3-3? <context>: CREATE TABLE table_name_8 (score VARCHAR, home VARCHAR, record VARCHAR) | SELECT score FROM table_name_8 WHERE home = "chicago black hawks" AND record = "3-3" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.