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