question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Where was home with a record of 7–5–2?
CREATE TABLE table_name_77 (home VARCHAR, record VARCHAR)
SELECT home FROM table_name_77 WHERE record = "7–5–2"
### Context: CREATE TABLE table_name_77 (home VARCHAR, record VARCHAR) ### Question: Where was home with a record of 7–5–2? ### Answer: SELECT home FROM table_name_77 WHERE record = "7–5–2"
On what date was the record 8–6–3?
CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_14 WHERE record = "8–6–3"
### Context: CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR) ### Question: On what date was the record 8–6–3? ### Answer: SELECT date FROM table_name_14 WHERE record = "8–6–3"
What was the score when Pittsburgh was the visitor?
CREATE TABLE table_name_42 (score VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_42 WHERE visitor = "pittsburgh"
### Context: CREATE TABLE table_name_42 (score VARCHAR, visitor VARCHAR) ### Question: What was the score when Pittsburgh was the visitor? ### Answer: SELECT score FROM table_name_42 WHERE visitor = "pittsburgh"
On what date were the NY Rangers home?
CREATE TABLE table_name_98 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_98 WHERE home = "ny rangers"
### Context: CREATE TABLE table_name_98 (date VARCHAR, home VARCHAR) ### Question: On what date were the NY Rangers home? ### Answer: SELECT date FROM table_name_98 WHERE home = "ny rangers"
Which visitor had a record of 7–5–3?
CREATE TABLE table_name_49 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_49 WHERE record = "7–5–3"
### Context: CREATE TABLE table_name_49 (visitor VARCHAR, record VARCHAR) ### Question: Which visitor had a record of 7–5–3? ### Answer: SELECT visitor FROM table_name_49 WHERE record = "7–5–3"
Who was home when Detroit was visiting with a score of 4 – 1?
CREATE TABLE table_name_89 (home VARCHAR, visitor VARCHAR, score VARCHAR)
SELECT home FROM table_name_89 WHERE visitor = "detroit" AND score = "4 – 1"
### Context: CREATE TABLE table_name_89 (home VARCHAR, visitor VARCHAR, score VARCHAR) ### Question: Who was home when Detroit was visiting with a score of 4 – 1? ### Answer: SELECT home FROM table_name_89 WHERE visitor = "detroit" AND score = "4 – 1"
What is the earliest date with Great Expectations label with LP format?
CREATE TABLE table_name_92 (date INTEGER, label VARCHAR, format VARCHAR)
SELECT MIN(date) FROM table_name_92 WHERE label = "great expectations" AND format = "lp"
### Context: CREATE TABLE table_name_92 (date INTEGER, label VARCHAR, format VARCHAR) ### Question: What is the earliest date with Great Expectations label with LP format? ### Answer: SELECT MIN(date) FROM table_name_92 WHERE label = "great expectations" AND format = "lp"
What format was used for Mobil 1?
CREATE TABLE table_name_21 (format VARCHAR, catalog VARCHAR)
SELECT format FROM table_name_21 WHERE catalog = "mobil 1"
### Context: CREATE TABLE table_name_21 (format VARCHAR, catalog VARCHAR) ### Question: What format was used for Mobil 1? ### Answer: SELECT format FROM table_name_21 WHERE catalog = "mobil 1"
what team won the friendly match
CREATE TABLE table_name_98 (result VARCHAR, competition VARCHAR)
SELECT result FROM table_name_98 WHERE competition = "friendly match"
### Context: CREATE TABLE table_name_98 (result VARCHAR, competition VARCHAR) ### Question: what team won the friendly match ### Answer: SELECT result FROM table_name_98 WHERE competition = "friendly match"
Which Runner-up has a Last win smaller than 1998, and Wins of 1, and a Rank larger than 13?
CREATE TABLE table_name_71 (runner_up VARCHAR, rank VARCHAR, last_win VARCHAR, wins VARCHAR)
SELECT COUNT(runner_up) FROM table_name_71 WHERE last_win < 1998 AND wins = 1 AND rank > 13
### Context: CREATE TABLE table_name_71 (runner_up VARCHAR, rank VARCHAR, last_win VARCHAR, wins VARCHAR) ### Question: Which Runner-up has a Last win smaller than 1998, and Wins of 1, and a Rank larger than 13? ### Answer: SELECT COUNT(runner_up) FROM table_name_71 WHERE last_win < 1998 AND wins = 1 AND rank > 13
How many Last wins have a Club of mansfield town, and Wins smaller than 1?
CREATE TABLE table_name_42 (last_win VARCHAR, club VARCHAR, wins VARCHAR)
SELECT COUNT(last_win) FROM table_name_42 WHERE club = "mansfield town" AND wins < 1
### Context: CREATE TABLE table_name_42 (last_win VARCHAR, club VARCHAR, wins VARCHAR) ### Question: How many Last wins have a Club of mansfield town, and Wins smaller than 1? ### Answer: SELECT COUNT(last_win) FROM table_name_42 WHERE club = "mansfield town" AND wins < 1
Which Driver has a Date of 16th september 1951, and a Race of dns?
CREATE TABLE table_name_8 (driver VARCHAR, date VARCHAR, race VARCHAR)
SELECT driver FROM table_name_8 WHERE date = "16th september 1951" AND race = "dns"
### Context: CREATE TABLE table_name_8 (driver VARCHAR, date VARCHAR, race VARCHAR) ### Question: Which Driver has a Date of 16th september 1951, and a Race of dns? ### Answer: SELECT driver FROM table_name_8 WHERE date = "16th september 1951" AND race = "dns"
At which race did reg parnell win the goodwood trophy?
CREATE TABLE table_name_47 (race VARCHAR, event VARCHAR, driver VARCHAR)
SELECT race FROM table_name_47 WHERE event = "goodwood trophy" AND driver = "reg parnell"
### Context: CREATE TABLE table_name_47 (race VARCHAR, event VARCHAR, driver VARCHAR) ### Question: At which race did reg parnell win the goodwood trophy? ### Answer: SELECT race FROM table_name_47 WHERE event = "goodwood trophy" AND driver = "reg parnell"
Which Race has a Date of 31st may 1953, and an Event of grand prix de l'albigeois final?
CREATE TABLE table_name_20 (race VARCHAR, date VARCHAR, event VARCHAR)
SELECT race FROM table_name_20 WHERE date = "31st may 1953" AND event = "grand prix de l'albigeois final"
### Context: CREATE TABLE table_name_20 (race VARCHAR, date VARCHAR, event VARCHAR) ### Question: Which Race has a Date of 31st may 1953, and an Event of grand prix de l'albigeois final? ### Answer: SELECT race FROM table_name_20 WHERE date = "31st may 1953" AND event = "grand prix de l'albigeois final"
What's the average total cargo in metric tonnes that has an 11.8% Change?
CREATE TABLE table_name_97 (total_cargo__metric_tonnes_ INTEGER, _percentage_change VARCHAR)
SELECT AVG(total_cargo__metric_tonnes_) FROM table_name_97 WHERE _percentage_change = "11.8%"
### Context: CREATE TABLE table_name_97 (total_cargo__metric_tonnes_ INTEGER, _percentage_change VARCHAR) ### Question: What's the average total cargo in metric tonnes that has an 11.8% Change? ### Answer: SELECT AVG(total_cargo__metric_tonnes_) FROM table_name_97 WHERE _percentage_change = "11.8%"
What is the highest rank of Tokyo International Airport?
CREATE TABLE table_name_72 (rank INTEGER, airport VARCHAR)
SELECT MAX(rank) FROM table_name_72 WHERE airport = "tokyo international airport"
### Context: CREATE TABLE table_name_72 (rank INTEGER, airport VARCHAR) ### Question: What is the highest rank of Tokyo International Airport? ### Answer: SELECT MAX(rank) FROM table_name_72 WHERE airport = "tokyo international airport"
Where the games are smaller than 5 and the points are 6, what is the average lost?
CREATE TABLE table_name_92 (lost INTEGER, points VARCHAR, games VARCHAR)
SELECT AVG(lost) FROM table_name_92 WHERE points = 6 AND games < 5
### Context: CREATE TABLE table_name_92 (lost INTEGER, points VARCHAR, games VARCHAR) ### Question: Where the games are smaller than 5 and the points are 6, what is the average lost? ### Answer: SELECT AVG(lost) FROM table_name_92 WHERE points = 6 AND games < 5
with build 5/69-6/69 what's the order?
CREATE TABLE table_name_89 (order INTEGER, built VARCHAR)
SELECT SUM(order) FROM table_name_89 WHERE built = "5/69-6/69"
### Context: CREATE TABLE table_name_89 (order INTEGER, built VARCHAR) ### Question: with build 5/69-6/69 what's the order? ### Answer: SELECT SUM(order) FROM table_name_89 WHERE built = "5/69-6/69"
Which Outcome has a Score of 6–2, 6–2?
CREATE TABLE table_name_20 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_20 WHERE score = "6–2, 6–2"
### Context: CREATE TABLE table_name_20 (outcome VARCHAR, score VARCHAR) ### Question: Which Outcome has a Score of 6–2, 6–2? ### Answer: SELECT outcome FROM table_name_20 WHERE score = "6–2, 6–2"
Which Date has an Outcome of winner, and a Score of 7–5, 6–4?
CREATE TABLE table_name_69 (date VARCHAR, outcome VARCHAR, score VARCHAR)
SELECT date FROM table_name_69 WHERE outcome = "winner" AND score = "7–5, 6–4"
### Context: CREATE TABLE table_name_69 (date VARCHAR, outcome VARCHAR, score VARCHAR) ### Question: Which Date has an Outcome of winner, and a Score of 7–5, 6–4? ### Answer: SELECT date FROM table_name_69 WHERE outcome = "winner" AND score = "7–5, 6–4"
Which Tournament has an Outcome of winner, and a Surface of clay, and a Score of 6–4, 6–1?
CREATE TABLE table_name_23 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT tournament FROM table_name_23 WHERE outcome = "winner" AND surface = "clay" AND score = "6–4, 6–1"
### Context: CREATE TABLE table_name_23 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surface VARCHAR) ### Question: Which Tournament has an Outcome of winner, and a Surface of clay, and a Score of 6–4, 6–1? ### Answer: SELECT tournament FROM table_name_23 WHERE outcome = "winner" AND surface = "clay" AND score = "6–4, 6–1"
What was the outcome in mari andersson's tournament?
CREATE TABLE table_name_41 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_41 WHERE opponent = "mari andersson"
### Context: CREATE TABLE table_name_41 (outcome VARCHAR, opponent VARCHAR) ### Question: What was the outcome in mari andersson's tournament? ### Answer: SELECT outcome FROM table_name_41 WHERE opponent = "mari andersson"
What's the loss of the game with the opponent of the Nationals with a score of 7-1?
CREATE TABLE table_name_69 (loss VARCHAR, opponent VARCHAR, score VARCHAR)
SELECT loss FROM table_name_69 WHERE opponent = "nationals" AND score = "7-1"
### Context: CREATE TABLE table_name_69 (loss VARCHAR, opponent VARCHAR, score VARCHAR) ### Question: What's the loss of the game with the opponent of the Nationals with a score of 7-1? ### Answer: SELECT loss FROM table_name_69 WHERE opponent = "nationals" AND score = "7-1"
Which opponent has a record of 70-52?
CREATE TABLE table_name_77 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_77 WHERE record = "70-52"
### Context: CREATE TABLE table_name_77 (opponent VARCHAR, record VARCHAR) ### Question: Which opponent has a record of 70-52? ### Answer: SELECT opponent FROM table_name_77 WHERE record = "70-52"
What is the attendance of the game that has the opponent of The Nationals with a record of 68-51?
CREATE TABLE table_name_42 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
SELECT SUM(attendance) FROM table_name_42 WHERE opponent = "nationals" AND record = "68-51"
### Context: CREATE TABLE table_name_42 (attendance INTEGER, opponent VARCHAR, record VARCHAR) ### Question: What is the attendance of the game that has the opponent of The Nationals with a record of 68-51? ### Answer: SELECT SUM(attendance) FROM table_name_42 WHERE opponent = "nationals" AND record = "68-51"
What's the attendance of the game with a score of 5-4?
CREATE TABLE table_name_52 (attendance VARCHAR, score VARCHAR)
SELECT attendance FROM table_name_52 WHERE score = "5-4"
### Context: CREATE TABLE table_name_52 (attendance VARCHAR, score VARCHAR) ### Question: What's the attendance of the game with a score of 5-4? ### Answer: SELECT attendance FROM table_name_52 WHERE score = "5-4"
Who's the opponent of the game with the record 64-51?
CREATE TABLE table_name_60 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_60 WHERE record = "64-51"
### Context: CREATE TABLE table_name_60 (opponent VARCHAR, record VARCHAR) ### Question: Who's the opponent of the game with the record 64-51? ### Answer: SELECT opponent FROM table_name_60 WHERE record = "64-51"
Who were the opponents in games before number 54?
CREATE TABLE table_name_41 (opponent VARCHAR, game INTEGER)
SELECT opponent FROM table_name_41 WHERE game < 54
### Context: CREATE TABLE table_name_41 (opponent VARCHAR, game INTEGER) ### Question: Who were the opponents in games before number 54? ### Answer: SELECT opponent FROM table_name_41 WHERE game < 54
what was the score of bert yancey
CREATE TABLE table_name_83 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_83 WHERE player = "bert yancey"
### Context: CREATE TABLE table_name_83 (score VARCHAR, player VARCHAR) ### Question: what was the score of bert yancey ### Answer: SELECT score FROM table_name_83 WHERE player = "bert yancey"
What is the Length/Fuel of the bus with a Quantity of 30?
CREATE TABLE table_name_22 (length_fuel VARCHAR, quantity VARCHAR)
SELECT length_fuel FROM table_name_22 WHERE quantity = 30
### Context: CREATE TABLE table_name_22 (length_fuel VARCHAR, quantity VARCHAR) ### Question: What is the Length/Fuel of the bus with a Quantity of 30? ### Answer: SELECT length_fuel FROM table_name_22 WHERE quantity = 30
What is the Length/Fuel of the bus built between 2000-2003 with a high Floor Styling?
CREATE TABLE table_name_91 (length_fuel VARCHAR, floor_styling VARCHAR, year_built VARCHAR)
SELECT length_fuel FROM table_name_91 WHERE floor_styling = "high" AND year_built = "2000-2003"
### Context: CREATE TABLE table_name_91 (length_fuel VARCHAR, floor_styling VARCHAR, year_built VARCHAR) ### Question: What is the Length/Fuel of the bus built between 2000-2003 with a high Floor Styling? ### Answer: SELECT length_fuel FROM table_name_91 WHERE floor_styling = "high" AND year_built = "2000-2003"
In what Venue was the game with a Friendly Competition and 1 Goal played?
CREATE TABLE table_name_29 (venue VARCHAR, competition VARCHAR, goal VARCHAR)
SELECT venue FROM table_name_29 WHERE competition = "friendly" AND goal = 1
### Context: CREATE TABLE table_name_29 (venue VARCHAR, competition VARCHAR, goal VARCHAR) ### Question: In what Venue was the game with a Friendly Competition and 1 Goal played? ### Answer: SELECT venue FROM table_name_29 WHERE competition = "friendly" AND goal = 1
What is the amount of money that a +5 to par with a score of 76-69-70-70=285?
CREATE TABLE table_name_28 (money___ VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT COUNT(money___) AS $__ FROM table_name_28 WHERE to_par = "+5" AND score = 76 - 69 - 70 - 70 = 285
### Context: CREATE TABLE table_name_28 (money___ VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: What is the amount of money that a +5 to par with a score of 76-69-70-70=285? ### Answer: SELECT COUNT(money___) AS $__ FROM table_name_28 WHERE to_par = "+5" AND score = 76 - 69 - 70 - 70 = 285
What is the name of the player with a 71-69-71-69=280 score?
CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_79 WHERE score = 71 - 69 - 71 - 69 = 280
### Context: CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR) ### Question: What is the name of the player with a 71-69-71-69=280 score? ### Answer: SELECT player FROM table_name_79 WHERE score = 71 - 69 - 71 - 69 = 280
Which average Game # has a Home of san jose, and Points smaller than 71?
CREATE TABLE table_name_95 (game__number INTEGER, home VARCHAR, points VARCHAR)
SELECT AVG(game__number) FROM table_name_95 WHERE home = "san jose" AND points < 71
### Context: CREATE TABLE table_name_95 (game__number INTEGER, home VARCHAR, points VARCHAR) ### Question: Which average Game # has a Home of san jose, and Points smaller than 71? ### Answer: SELECT AVG(game__number) FROM table_name_95 WHERE home = "san jose" AND points < 71
Which Home has a Game # of 59?
CREATE TABLE table_name_27 (home VARCHAR, game__number VARCHAR)
SELECT home FROM table_name_27 WHERE game__number = 59
### Context: CREATE TABLE table_name_27 (home VARCHAR, game__number VARCHAR) ### Question: Which Home has a Game # of 59? ### Answer: SELECT home FROM table_name_27 WHERE game__number = 59
Which Visitor has a Game # larger than 62, and a Date of february 25?
CREATE TABLE table_name_99 (visitor VARCHAR, game__number VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_99 WHERE game__number > 62 AND date = "february 25"
### Context: CREATE TABLE table_name_99 (visitor VARCHAR, game__number VARCHAR, date VARCHAR) ### Question: Which Visitor has a Game # larger than 62, and a Date of february 25? ### Answer: SELECT visitor FROM table_name_99 WHERE game__number > 62 AND date = "february 25"
with delivery date of 2001 2001 what is the owns?
CREATE TABLE table_name_93 (owns VARCHAR, delivery_date VARCHAR)
SELECT owns FROM table_name_93 WHERE delivery_date = "2001 2001"
### Context: CREATE TABLE table_name_93 (owns VARCHAR, delivery_date VARCHAR) ### Question: with delivery date of 2001 2001 what is the owns? ### Answer: SELECT owns FROM table_name_93 WHERE delivery_date = "2001 2001"
with delivery date of 2001 2001 what is gross tonnage?
CREATE TABLE table_name_35 (gross_tonnage INTEGER, delivery_date VARCHAR)
SELECT AVG(gross_tonnage) FROM table_name_35 WHERE delivery_date = "2001 2001"
### Context: CREATE TABLE table_name_35 (gross_tonnage INTEGER, delivery_date VARCHAR) ### Question: with delivery date of 2001 2001 what is gross tonnage? ### Answer: SELECT AVG(gross_tonnage) FROM table_name_35 WHERE delivery_date = "2001 2001"
with delivery date 1997 1997 what is the owns?
CREATE TABLE table_name_65 (owns VARCHAR, delivery_date VARCHAR)
SELECT owns FROM table_name_65 WHERE delivery_date = "1997 1997"
### Context: CREATE TABLE table_name_65 (owns VARCHAR, delivery_date VARCHAR) ### Question: with delivery date 1997 1997 what is the owns? ### Answer: SELECT owns FROM table_name_65 WHERE delivery_date = "1997 1997"
Which conference does the school from Gainesville, Florida, play in?
CREATE TABLE table_name_5 (present_conference VARCHAR, location VARCHAR)
SELECT present_conference FROM table_name_5 WHERE location = "gainesville, florida"
### Context: CREATE TABLE table_name_5 (present_conference VARCHAR, location VARCHAR) ### Question: Which conference does the school from Gainesville, Florida, play in? ### Answer: SELECT present_conference FROM table_name_5 WHERE location = "gainesville, florida"
What is the number of enrollments for teams named the Buccaneers founded before 1911?
CREATE TABLE table_name_23 (enrollment VARCHAR, nickname VARCHAR, founded VARCHAR)
SELECT COUNT(enrollment) FROM table_name_23 WHERE nickname = "buccaneers" AND founded < 1911
### Context: CREATE TABLE table_name_23 (enrollment VARCHAR, nickname VARCHAR, founded VARCHAR) ### Question: What is the number of enrollments for teams named the Buccaneers founded before 1911? ### Answer: SELECT COUNT(enrollment) FROM table_name_23 WHERE nickname = "buccaneers" AND founded < 1911
What is the highest chart number for the song Yardbirds aka Roger the Engineer?
CREATE TABLE table_name_17 (chart_no INTEGER, title VARCHAR)
SELECT MAX(chart_no) FROM table_name_17 WHERE title = "yardbirds aka roger the engineer"
### Context: CREATE TABLE table_name_17 (chart_no INTEGER, title VARCHAR) ### Question: What is the highest chart number for the song Yardbirds aka Roger the Engineer? ### Answer: SELECT MAX(chart_no) FROM table_name_17 WHERE title = "yardbirds aka roger the engineer"
What is the average chart number for 11/1965?
CREATE TABLE table_name_97 (chart_no INTEGER, date VARCHAR)
SELECT AVG(chart_no) FROM table_name_97 WHERE date = "11/1965"
### Context: CREATE TABLE table_name_97 (chart_no INTEGER, date VARCHAR) ### Question: What is the average chart number for 11/1965? ### Answer: SELECT AVG(chart_no) FROM table_name_97 WHERE date = "11/1965"
What is origin country for a title that charted at 52?
CREATE TABLE table_name_84 (origin VARCHAR, chart_no VARCHAR)
SELECT origin FROM table_name_84 WHERE chart_no = 52
### Context: CREATE TABLE table_name_84 (origin VARCHAR, chart_no VARCHAR) ### Question: What is origin country for a title that charted at 52? ### Answer: SELECT origin FROM table_name_84 WHERE chart_no = 52
What is the Record of the Game after 40 with New York Rangers as Opponent?
CREATE TABLE table_name_5 (record VARCHAR, game VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_5 WHERE game > 40 AND opponent = "new york rangers"
### Context: CREATE TABLE table_name_5 (record VARCHAR, game VARCHAR, opponent VARCHAR) ### Question: What is the Record of the Game after 40 with New York Rangers as Opponent? ### Answer: SELECT record FROM table_name_5 WHERE game > 40 AND opponent = "new york rangers"
When did Adam Thompson play in the final?
CREATE TABLE table_name_47 (date VARCHAR, opponent_in_the_final VARCHAR)
SELECT date FROM table_name_47 WHERE opponent_in_the_final = "adam thompson"
### Context: CREATE TABLE table_name_47 (date VARCHAR, opponent_in_the_final VARCHAR) ### Question: When did Adam Thompson play in the final? ### Answer: SELECT date FROM table_name_47 WHERE opponent_in_the_final = "adam thompson"
When was the Lagos tournament?
CREATE TABLE table_name_84 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_84 WHERE tournament = "lagos"
### Context: CREATE TABLE table_name_84 (date VARCHAR, tournament VARCHAR) ### Question: When was the Lagos tournament? ### Answer: SELECT date FROM table_name_84 WHERE tournament = "lagos"
What was the score against the phillies on may 24?
CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT score FROM table_name_28 WHERE opponent = "phillies" AND date = "may 24"
### Context: CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: What was the score against the phillies on may 24? ### Answer: SELECT score FROM table_name_28 WHERE opponent = "phillies" AND date = "may 24"
Opponent of new england patriots had what attendance?
CREATE TABLE table_name_13 (attendance VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_13 WHERE opponent = "new england patriots"
### Context: CREATE TABLE table_name_13 (attendance VARCHAR, opponent VARCHAR) ### Question: Opponent of new england patriots had what attendance? ### Answer: SELECT attendance FROM table_name_13 WHERE opponent = "new england patriots"
Attendance of 55,340 had what opponent?
CREATE TABLE table_name_58 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_58 WHERE attendance = "55,340"
### Context: CREATE TABLE table_name_58 (opponent VARCHAR, attendance VARCHAR) ### Question: Attendance of 55,340 had what opponent? ### Answer: SELECT opponent FROM table_name_58 WHERE attendance = "55,340"
Week smaller than 4, and a Game Site of rca dome, and a Opponent of new england patriots involves what date?
CREATE TABLE table_name_12 (date VARCHAR, opponent VARCHAR, week VARCHAR, game_site VARCHAR)
SELECT date FROM table_name_12 WHERE week < 4 AND game_site = "rca dome" AND opponent = "new england patriots"
### Context: CREATE TABLE table_name_12 (date VARCHAR, opponent VARCHAR, week VARCHAR, game_site VARCHAR) ### Question: Week smaller than 4, and a Game Site of rca dome, and a Opponent of new england patriots involves what date? ### Answer: SELECT date FROM table_name_12 WHERE week < 4 AND game_site = "rca dome" AND opponent = "new england patriots"
Record of 0–8 had what result?
CREATE TABLE table_name_33 (result VARCHAR, record VARCHAR)
SELECT result FROM table_name_33 WHERE record = "0–8"
### Context: CREATE TABLE table_name_33 (result VARCHAR, record VARCHAR) ### Question: Record of 0–8 had what result? ### Answer: SELECT result FROM table_name_33 WHERE record = "0–8"
Record of 0–8 had what lowest week?
CREATE TABLE table_name_25 (week INTEGER, record VARCHAR)
SELECT MIN(week) FROM table_name_25 WHERE record = "0–8"
### Context: CREATE TABLE table_name_25 (week INTEGER, record VARCHAR) ### Question: Record of 0–8 had what lowest week? ### Answer: SELECT MIN(week) FROM table_name_25 WHERE record = "0–8"
What was the score when the visitor was pittsburgh?
CREATE TABLE table_name_51 (score VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_51 WHERE visitor = "pittsburgh"
### Context: CREATE TABLE table_name_51 (score VARCHAR, visitor VARCHAR) ### Question: What was the score when the visitor was pittsburgh? ### Answer: SELECT score FROM table_name_51 WHERE visitor = "pittsburgh"
What was the decision on November 26?
CREATE TABLE table_name_18 (decision VARCHAR, date VARCHAR)
SELECT decision FROM table_name_18 WHERE date = "november 26"
### Context: CREATE TABLE table_name_18 (decision VARCHAR, date VARCHAR) ### Question: What was the decision on November 26? ### Answer: SELECT decision FROM table_name_18 WHERE date = "november 26"
What is the USN 2013 ranking with a BW 2013 ranking less than 1000, a Forbes 2011 ranking larger than 17, and a CNN 2011 ranking less than 13?
CREATE TABLE table_name_63 (usn_2013 INTEGER, cnn_2011 VARCHAR, bw_2013 VARCHAR, forbes_2011 VARCHAR)
SELECT SUM(usn_2013) FROM table_name_63 WHERE bw_2013 < 1000 AND forbes_2011 > 17 AND cnn_2011 < 13
### Context: CREATE TABLE table_name_63 (usn_2013 INTEGER, cnn_2011 VARCHAR, bw_2013 VARCHAR, forbes_2011 VARCHAR) ### Question: What is the USN 2013 ranking with a BW 2013 ranking less than 1000, a Forbes 2011 ranking larger than 17, and a CNN 2011 ranking less than 13? ### Answer: SELECT SUM(usn_2013) FROM table_name_63 WHERE bw_2013 < 1000 AND forbes_2011 > 17 AND cnn_2011 < 13
What is the average AE 2011 ranking with a Forbes 2011 ranking of 24 and a FT 2011 ranking less than 44?
CREATE TABLE table_name_21 (ae_2011 INTEGER, forbes_2011 VARCHAR, ft_2011 VARCHAR)
SELECT AVG(ae_2011) FROM table_name_21 WHERE forbes_2011 = 24 AND ft_2011 < 44
### Context: CREATE TABLE table_name_21 (ae_2011 INTEGER, forbes_2011 VARCHAR, ft_2011 VARCHAR) ### Question: What is the average AE 2011 ranking with a Forbes 2011 ranking of 24 and a FT 2011 ranking less than 44? ### Answer: SELECT AVG(ae_2011) FROM table_name_21 WHERE forbes_2011 = 24 AND ft_2011 < 44
Who did they play at lincoln financial field at 8:30 (ET) after week 14?
CREATE TABLE table_name_88 (opponent VARCHAR, time__et_ VARCHAR, week VARCHAR, game_site VARCHAR)
SELECT opponent FROM table_name_88 WHERE week > 14 AND game_site = "lincoln financial field" AND time__et_ = "8:30"
### Context: CREATE TABLE table_name_88 (opponent VARCHAR, time__et_ VARCHAR, week VARCHAR, game_site VARCHAR) ### Question: Who did they play at lincoln financial field at 8:30 (ET) after week 14? ### Answer: SELECT opponent FROM table_name_88 WHERE week > 14 AND game_site = "lincoln financial field" AND time__et_ = "8:30"
What is the average rank for nations with fewer than 0 gold medals?
CREATE TABLE table_name_86 (rank INTEGER, gold INTEGER)
SELECT AVG(rank) FROM table_name_86 WHERE gold < 0
### Context: CREATE TABLE table_name_86 (rank INTEGER, gold INTEGER) ### Question: What is the average rank for nations with fewer than 0 gold medals? ### Answer: SELECT AVG(rank) FROM table_name_86 WHERE gold < 0
What is the total number of bronze medals with more than 1 medal total and fewer than 1 silver medal?
CREATE TABLE table_name_8 (bronze VARCHAR, total VARCHAR, silver VARCHAR)
SELECT COUNT(bronze) FROM table_name_8 WHERE total > 1 AND silver < 1
### Context: CREATE TABLE table_name_8 (bronze VARCHAR, total VARCHAR, silver VARCHAR) ### Question: What is the total number of bronze medals with more than 1 medal total and fewer than 1 silver medal? ### Answer: SELECT COUNT(bronze) FROM table_name_8 WHERE total > 1 AND silver < 1
What is the highest rank of a nation with fewer than 0 silver medals?
CREATE TABLE table_name_43 (rank INTEGER, silver INTEGER)
SELECT MAX(rank) FROM table_name_43 WHERE silver < 0
### Context: CREATE TABLE table_name_43 (rank INTEGER, silver INTEGER) ### Question: What is the highest rank of a nation with fewer than 0 silver medals? ### Answer: SELECT MAX(rank) FROM table_name_43 WHERE silver < 0
Which Bats have a First of josh, and Throws of r, and a Surname of cakebread?
CREATE TABLE table_name_90 (bats VARCHAR, surname VARCHAR, first VARCHAR, throws VARCHAR)
SELECT bats FROM table_name_90 WHERE first = "josh" AND throws = "r" AND surname = "cakebread"
### Context: CREATE TABLE table_name_90 (bats VARCHAR, surname VARCHAR, first VARCHAR, throws VARCHAR) ### Question: Which Bats have a First of josh, and Throws of r, and a Surname of cakebread? ### Answer: SELECT bats FROM table_name_90 WHERE first = "josh" AND throws = "r" AND surname = "cakebread"
Which DOB has Throws of r, and a Position of c, and a First of torey?
CREATE TABLE table_name_25 (dob VARCHAR, first VARCHAR, throws VARCHAR, position VARCHAR)
SELECT dob FROM table_name_25 WHERE throws = "r" AND position = "c" AND first = "torey"
### Context: CREATE TABLE table_name_25 (dob VARCHAR, first VARCHAR, throws VARCHAR, position VARCHAR) ### Question: Which DOB has Throws of r, and a Position of c, and a First of torey? ### Answer: SELECT dob FROM table_name_25 WHERE throws = "r" AND position = "c" AND first = "torey"
Which DOB has a Surname of cresswell?
CREATE TABLE table_name_40 (dob VARCHAR, surname VARCHAR)
SELECT dob FROM table_name_40 WHERE surname = "cresswell"
### Context: CREATE TABLE table_name_40 (dob VARCHAR, surname VARCHAR) ### Question: Which DOB has a Surname of cresswell? ### Answer: SELECT dob FROM table_name_40 WHERE surname = "cresswell"
Which DOB has Bats of r, and Throws of r, and a Position of rhp, and a First of john?
CREATE TABLE table_name_58 (dob VARCHAR, first VARCHAR, position VARCHAR, bats VARCHAR, throws VARCHAR)
SELECT dob FROM table_name_58 WHERE bats = "r" AND throws = "r" AND position = "rhp" AND first = "john"
### Context: CREATE TABLE table_name_58 (dob VARCHAR, first VARCHAR, position VARCHAR, bats VARCHAR, throws VARCHAR) ### Question: Which DOB has Bats of r, and Throws of r, and a Position of rhp, and a First of john? ### Answer: SELECT dob FROM table_name_58 WHERE bats = "r" AND throws = "r" AND position = "rhp" AND first = "john"
Which Position did Ruzic play?
CREATE TABLE table_name_30 (position VARCHAR, surname VARCHAR)
SELECT position FROM table_name_30 WHERE surname = "ruzic"
### Context: CREATE TABLE table_name_30 (position VARCHAR, surname VARCHAR) ### Question: Which Position did Ruzic play? ### Answer: SELECT position FROM table_name_30 WHERE surname = "ruzic"
How many throws did Torey have?
CREATE TABLE table_name_77 (throws VARCHAR, first VARCHAR)
SELECT throws FROM table_name_77 WHERE first = "torey"
### Context: CREATE TABLE table_name_77 (throws VARCHAR, first VARCHAR) ### Question: How many throws did Torey have? ### Answer: SELECT throws FROM table_name_77 WHERE first = "torey"
Which Ties is the highest one that has Losses smaller than 9, and Starts of 26, and Wins smaller than 21?
CREATE TABLE table_name_65 (ties INTEGER, wins VARCHAR, losses VARCHAR, starts VARCHAR)
SELECT MAX(ties) FROM table_name_65 WHERE losses < 9 AND starts = 26 AND wins < 21
### Context: CREATE TABLE table_name_65 (ties INTEGER, wins VARCHAR, losses VARCHAR, starts VARCHAR) ### Question: Which Ties is the highest one that has Losses smaller than 9, and Starts of 26, and Wins smaller than 21? ### Answer: SELECT MAX(ties) FROM table_name_65 WHERE losses < 9 AND starts = 26 AND wins < 21
Which Win % has a Name of tony rice, and Wins smaller than 28?
CREATE TABLE table_name_73 (win__percentage VARCHAR, name VARCHAR, wins VARCHAR)
SELECT COUNT(win__percentage) FROM table_name_73 WHERE name = "tony rice" AND wins < 28
### Context: CREATE TABLE table_name_73 (win__percentage VARCHAR, name VARCHAR, wins VARCHAR) ### Question: Which Win % has a Name of tony rice, and Wins smaller than 28? ### Answer: SELECT COUNT(win__percentage) FROM table_name_73 WHERE name = "tony rice" AND wins < 28
Which Wins have a Win % smaller than 0.8270000000000001, and a Name of rick mirer, and Ties smaller than 1?
CREATE TABLE table_name_17 (wins INTEGER, ties VARCHAR, win__percentage VARCHAR, name VARCHAR)
SELECT SUM(wins) FROM table_name_17 WHERE win__percentage < 0.8270000000000001 AND name = "rick mirer" AND ties < 1
### Context: CREATE TABLE table_name_17 (wins INTEGER, ties VARCHAR, win__percentage VARCHAR, name VARCHAR) ### Question: Which Wins have a Win % smaller than 0.8270000000000001, and a Name of rick mirer, and Ties smaller than 1? ### Answer: SELECT SUM(wins) FROM table_name_17 WHERE win__percentage < 0.8270000000000001 AND name = "rick mirer" AND ties < 1
How many Losses have a Name of blair kiel?
CREATE TABLE table_name_45 (losses VARCHAR, name VARCHAR)
SELECT COUNT(losses) FROM table_name_45 WHERE name = "blair kiel"
### Context: CREATE TABLE table_name_45 (losses VARCHAR, name VARCHAR) ### Question: How many Losses have a Name of blair kiel? ### Answer: SELECT COUNT(losses) FROM table_name_45 WHERE name = "blair kiel"
Which Losses have a Name of jimmy clausen?
CREATE TABLE table_name_39 (losses INTEGER, name VARCHAR)
SELECT AVG(losses) FROM table_name_39 WHERE name = "jimmy clausen"
### Context: CREATE TABLE table_name_39 (losses INTEGER, name VARCHAR) ### Question: Which Losses have a Name of jimmy clausen? ### Answer: SELECT AVG(losses) FROM table_name_39 WHERE name = "jimmy clausen"
what is the number of attendance on june 24
CREATE TABLE table_name_8 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_8 WHERE date = "june 24"
### Context: CREATE TABLE table_name_8 (attendance VARCHAR, date VARCHAR) ### Question: what is the number of attendance on june 24 ### Answer: SELECT COUNT(attendance) FROM table_name_8 WHERE date = "june 24"
Home of dallas happened on what date?
CREATE TABLE table_name_95 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_95 WHERE home = "dallas"
### Context: CREATE TABLE table_name_95 (date VARCHAR, home VARCHAR) ### Question: Home of dallas happened on what date? ### Answer: SELECT date FROM table_name_95 WHERE home = "dallas"
Home of buffalo happened on what date?
CREATE TABLE table_name_39 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_39 WHERE home = "buffalo"
### Context: CREATE TABLE table_name_39 (date VARCHAR, home VARCHAR) ### Question: Home of buffalo happened on what date? ### Answer: SELECT date FROM table_name_39 WHERE home = "buffalo"
Visitor of dallas, and a Date of june 12 had what highest attendance?
CREATE TABLE table_name_16 (attendance INTEGER, visitor VARCHAR, date VARCHAR)
SELECT MAX(attendance) FROM table_name_16 WHERE visitor = "dallas" AND date = "june 12"
### Context: CREATE TABLE table_name_16 (attendance INTEGER, visitor VARCHAR, date VARCHAR) ### Question: Visitor of dallas, and a Date of june 12 had what highest attendance? ### Answer: SELECT MAX(attendance) FROM table_name_16 WHERE visitor = "dallas" AND date = "june 12"
On which date was the position less than 4 at Piraeus?
CREATE TABLE table_name_27 (date VARCHAR, pos VARCHAR, venue VARCHAR)
SELECT date FROM table_name_27 WHERE pos < 4 AND venue = "piraeus"
### Context: CREATE TABLE table_name_27 (date VARCHAR, pos VARCHAR, venue VARCHAR) ### Question: On which date was the position less than 4 at Piraeus? ### Answer: SELECT date FROM table_name_27 WHERE pos < 4 AND venue = "piraeus"
Which team had 64 laps and 13 points?
CREATE TABLE table_name_39 (team VARCHAR, laps VARCHAR, points VARCHAR)
SELECT team FROM table_name_39 WHERE laps = 64 AND points = 13
### Context: CREATE TABLE table_name_39 (team VARCHAR, laps VARCHAR, points VARCHAR) ### Question: Which team had 64 laps and 13 points? ### Answer: SELECT team FROM table_name_39 WHERE laps = 64 AND points = 13
How many laps did the team with a time/retired of +1.906 have?
CREATE TABLE table_name_90 (laps VARCHAR, time_retired VARCHAR)
SELECT COUNT(laps) FROM table_name_90 WHERE time_retired = "+1.906"
### Context: CREATE TABLE table_name_90 (laps VARCHAR, time_retired VARCHAR) ### Question: How many laps did the team with a time/retired of +1.906 have? ### Answer: SELECT COUNT(laps) FROM table_name_90 WHERE time_retired = "+1.906"
What is the time/retired of the team with a grid of 14?
CREATE TABLE table_name_62 (time_retired VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_62 WHERE grid = 14
### Context: CREATE TABLE table_name_62 (time_retired VARCHAR, grid VARCHAR) ### Question: What is the time/retired of the team with a grid of 14? ### Answer: SELECT time_retired FROM table_name_62 WHERE grid = 14
What is the lowest grid of pkv racing, which had 13 points and less than 64 laps?
CREATE TABLE table_name_28 (grid INTEGER, laps VARCHAR, team VARCHAR, points VARCHAR)
SELECT MIN(grid) FROM table_name_28 WHERE team = "pkv racing" AND points = 13 AND laps < 64
### Context: CREATE TABLE table_name_28 (grid INTEGER, laps VARCHAR, team VARCHAR, points VARCHAR) ### Question: What is the lowest grid of pkv racing, which had 13 points and less than 64 laps? ### Answer: SELECT MIN(grid) FROM table_name_28 WHERE team = "pkv racing" AND points = 13 AND laps < 64
What is the total grid of the team with a time/retired of +7.346?
CREATE TABLE table_name_53 (grid VARCHAR, time_retired VARCHAR)
SELECT COUNT(grid) FROM table_name_53 WHERE time_retired = "+7.346"
### Context: CREATE TABLE table_name_53 (grid VARCHAR, time_retired VARCHAR) ### Question: What is the total grid of the team with a time/retired of +7.346? ### Answer: SELECT COUNT(grid) FROM table_name_53 WHERE time_retired = "+7.346"
What is the grid of pkv racing with the driver oriol serviΓ ?
CREATE TABLE table_name_56 (grid INTEGER, team VARCHAR, driver VARCHAR)
SELECT SUM(grid) FROM table_name_56 WHERE team = "pkv racing" AND driver = "oriol serviΓ "
### Context: CREATE TABLE table_name_56 (grid INTEGER, team VARCHAR, driver VARCHAR) ### Question: What is the grid of pkv racing with the driver oriol serviΓ ? ### Answer: SELECT SUM(grid) FROM table_name_56 WHERE team = "pkv racing" AND driver = "oriol serviΓ "
When Cancelable of yes, bubble of yes and a Category of keyboard, what was the Attribute?
CREATE TABLE table_name_52 (attribute VARCHAR, category VARCHAR, cancelable VARCHAR, bubbles VARCHAR)
SELECT attribute FROM table_name_52 WHERE cancelable = "yes" AND bubbles = "yes" AND category = "keyboard"
### Context: CREATE TABLE table_name_52 (attribute VARCHAR, category VARCHAR, cancelable VARCHAR, bubbles VARCHAR) ### Question: When Cancelable of yes, bubble of yes and a Category of keyboard, what was the Attribute? ### Answer: SELECT attribute FROM table_name_52 WHERE cancelable = "yes" AND bubbles = "yes" AND category = "keyboard"
When Bubbles of no, and a Category of miscellaneous, and a Type of propertychange, what was the Cancelable?
CREATE TABLE table_name_97 (cancelable VARCHAR, type VARCHAR, bubbles VARCHAR, category VARCHAR)
SELECT cancelable FROM table_name_97 WHERE bubbles = "no" AND category = "miscellaneous" AND type = "propertychange"
### Context: CREATE TABLE table_name_97 (cancelable VARCHAR, type VARCHAR, bubbles VARCHAR, category VARCHAR) ### Question: When Bubbles of no, and a Category of miscellaneous, and a Type of propertychange, what was the Cancelable? ### Answer: SELECT cancelable FROM table_name_97 WHERE bubbles = "no" AND category = "miscellaneous" AND type = "propertychange"
When Type was rowexit what was the Category?
CREATE TABLE table_name_88 (category VARCHAR, type VARCHAR)
SELECT category FROM table_name_88 WHERE type = "rowexit"
### Context: CREATE TABLE table_name_88 (category VARCHAR, type VARCHAR) ### Question: When Type was rowexit what was the Category? ### Answer: SELECT category FROM table_name_88 WHERE type = "rowexit"
When Cancelable of yes, and a Type of drag, what was the Category?
CREATE TABLE table_name_72 (category VARCHAR, cancelable VARCHAR, type VARCHAR)
SELECT category FROM table_name_72 WHERE cancelable = "yes" AND type = "drag"
### Context: CREATE TABLE table_name_72 (category VARCHAR, cancelable VARCHAR, type VARCHAR) ### Question: When Cancelable of yes, and a Type of drag, what was the Category? ### Answer: SELECT category FROM table_name_72 WHERE cancelable = "yes" AND type = "drag"
When Event has Bubbles of yes, Cancelable of yes, Category of mouse, and a Type of contextmenu what is the Attribute?
CREATE TABLE table_name_41 (attribute VARCHAR, type VARCHAR, category VARCHAR, bubbles VARCHAR, cancelable VARCHAR)
SELECT attribute FROM table_name_41 WHERE bubbles = "yes" AND cancelable = "yes" AND category = "mouse" AND type = "contextmenu"
### Context: CREATE TABLE table_name_41 (attribute VARCHAR, type VARCHAR, category VARCHAR, bubbles VARCHAR, cancelable VARCHAR) ### Question: When Event has Bubbles of yes, Cancelable of yes, Category of mouse, and a Type of contextmenu what is the Attribute? ### Answer: SELECT attribute FROM table_name_41 WHERE bubbles = "yes" AND cancelable = "yes" AND category = "mouse" AND type = "contextmenu"
Let's say Type is of datasetcomplete, what is the Attribute?
CREATE TABLE table_name_62 (attribute VARCHAR, type VARCHAR)
SELECT attribute FROM table_name_62 WHERE type = "datasetcomplete"
### Context: CREATE TABLE table_name_62 (attribute VARCHAR, type VARCHAR) ### Question: Let's say Type is of datasetcomplete, what is the Attribute? ### Answer: SELECT attribute FROM table_name_62 WHERE type = "datasetcomplete"
What is the name of the parish that has a former local authority of St Neots urban district?
CREATE TABLE table_name_71 (name VARCHAR, former_local_authority VARCHAR)
SELECT name FROM table_name_71 WHERE former_local_authority = "st neots urban district"
### Context: CREATE TABLE table_name_71 (name VARCHAR, former_local_authority VARCHAR) ### Question: What is the name of the parish that has a former local authority of St Neots urban district? ### Answer: SELECT name FROM table_name_71 WHERE former_local_authority = "st neots urban district"
What district is the parish who had the South Cambridgeshire rural district as the former local authority?
CREATE TABLE table_name_71 (district VARCHAR, former_local_authority VARCHAR)
SELECT district FROM table_name_71 WHERE former_local_authority = "south cambridgeshire rural district"
### Context: CREATE TABLE table_name_71 (district VARCHAR, former_local_authority VARCHAR) ### Question: What district is the parish who had the South Cambridgeshire rural district as the former local authority? ### Answer: SELECT district FROM table_name_71 WHERE former_local_authority = "south cambridgeshire rural district"
What district is St Martin's Without parish in with a population less than 75?
CREATE TABLE table_name_73 (district VARCHAR, population VARCHAR, name VARCHAR)
SELECT district FROM table_name_73 WHERE population < 75 AND name = "st martin's without"
### Context: CREATE TABLE table_name_73 (district VARCHAR, population VARCHAR, name VARCHAR) ### Question: What district is St Martin's Without parish in with a population less than 75? ### Answer: SELECT district FROM table_name_73 WHERE population < 75 AND name = "st martin's without"
Who was the home team when FK kom were the guests?
CREATE TABLE table_name_84 (home VARCHAR, guest VARCHAR)
SELECT home FROM table_name_84 WHERE guest = "fk kom"
### Context: CREATE TABLE table_name_84 (home VARCHAR, guest VARCHAR) ### Question: Who was the home team when FK kom were the guests? ### Answer: SELECT home FROM table_name_84 WHERE guest = "fk kom"
What venue was the match against the guest team, FK ibar, played at?
CREATE TABLE table_name_65 (venue VARCHAR, guest VARCHAR)
SELECT venue FROM table_name_65 WHERE guest = "fk ibar"
### Context: CREATE TABLE table_name_65 (venue VARCHAR, guest VARCHAR) ### Question: What venue was the match against the guest team, FK ibar, played at? ### Answer: SELECT venue FROM table_name_65 WHERE guest = "fk ibar"
What's the Score with a Home of Scotland and Date of 24 February?
CREATE TABLE table_name_12 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_12 WHERE home = "scotland" AND date = "24 february"
### Context: CREATE TABLE table_name_12 (score VARCHAR, home VARCHAR, date VARCHAR) ### Question: What's the Score with a Home of Scotland and Date of 24 February? ### Answer: SELECT score FROM table_name_12 WHERE home = "scotland" AND date = "24 february"
What round was john sutro, tackle, drafter with a pick lower than 79?
CREATE TABLE table_name_11 (round INTEGER, pick VARCHAR, position VARCHAR, player VARCHAR)
SELECT SUM(round) FROM table_name_11 WHERE position = "tackle" AND player = "john sutro" AND pick < 79
### Context: CREATE TABLE table_name_11 (round INTEGER, pick VARCHAR, position VARCHAR, player VARCHAR) ### Question: What round was john sutro, tackle, drafter with a pick lower than 79? ### Answer: SELECT SUM(round) FROM table_name_11 WHERE position = "tackle" AND player = "john sutro" AND pick < 79
What pick was roger holdinsky?
CREATE TABLE table_name_26 (pick VARCHAR, player VARCHAR)
SELECT pick FROM table_name_26 WHERE player = "roger holdinsky"
### Context: CREATE TABLE table_name_26 (pick VARCHAR, player VARCHAR) ### Question: What pick was roger holdinsky? ### Answer: SELECT pick FROM table_name_26 WHERE player = "roger holdinsky"
When was chuck morris, back, drafted?
CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR)
SELECT MIN(pick) FROM table_name_51 WHERE position = "back" AND player = "chuck morris"
### Context: CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR) ### Question: When was chuck morris, back, drafted? ### Answer: SELECT MIN(pick) FROM table_name_51 WHERE position = "back" AND player = "chuck morris"
What wss the average round drafted for xavier players?
CREATE TABLE table_name_5 (round INTEGER, school VARCHAR)
SELECT AVG(round) FROM table_name_5 WHERE school = "xavier"
### Context: CREATE TABLE table_name_5 (round INTEGER, school VARCHAR) ### Question: What wss the average round drafted for xavier players? ### Answer: SELECT AVG(round) FROM table_name_5 WHERE school = "xavier"