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