question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What was the total score when the E score was larger than 9.6 and the A score was 6?
CREATE TABLE table_name_85 (total VARCHAR, e_score VARCHAR, a_score VARCHAR)
SELECT total FROM table_name_85 WHERE e_score > 9.6 AND a_score = 6
### Context: CREATE TABLE table_name_85 (total VARCHAR, e_score VARCHAR, a_score VARCHAR) ### Question: What was the total score when the E score was larger than 9.6 and the A score was 6? ### Answer: SELECT total FROM table_name_85 WHERE e_score > 9.6 AND a_score = 6
What was the average E score when the T score was less than 4?
CREATE TABLE table_name_69 (e_score INTEGER, t_score INTEGER)
SELECT AVG(e_score) FROM table_name_69 WHERE t_score < 4
### Context: CREATE TABLE table_name_69 (e_score INTEGER, t_score INTEGER) ### Question: What was the average E score when the T score was less than 4? ### Answer: SELECT AVG(e_score) FROM table_name_69 WHERE t_score < 4
What was the average T score when the E score was larger than 9.6 and the team was from Spain?
CREATE TABLE table_name_88 (t_score INTEGER, nation VARCHAR, e_score VARCHAR)
SELECT AVG(t_score) FROM table_name_88 WHERE nation = "spain" AND e_score > 9.6
### Context: CREATE TABLE table_name_88 (t_score INTEGER, nation VARCHAR, e_score VARCHAR) ### Question: What was the average T score when the E score was larger than 9.6 and the team was from Spain? ### Answer: SELECT AVG(t_score) FROM table_name_88 WHERE nation = "spain" AND e_score > 9.6
What was the total number of A scores for Japan when the T score was more than 4?
CREATE TABLE table_name_63 (a_score VARCHAR, nation VARCHAR, t_score VARCHAR)
SELECT COUNT(a_score) FROM table_name_63 WHERE nation = "japan" AND t_score > 4
### Context: CREATE TABLE table_name_63 (a_score VARCHAR, nation VARCHAR, t_score VARCHAR) ### Question: What was the total number of A scores for Japan when the T score was more than 4? ### Answer: SELECT COUNT(a_score) FROM table_name_63 WHERE nation = "japan" AND t_score > 4
What was the sum of the E scores when the total score was 19.466?
CREATE TABLE table_name_7 (e_score INTEGER, total VARCHAR)
SELECT SUM(e_score) FROM table_name_7 WHERE total = 19.466
### Context: CREATE TABLE table_name_7 (e_score INTEGER, total VARCHAR) ### Question: What was the sum of the E scores when the total score was 19.466? ### Answer: SELECT SUM(e_score) FROM table_name_7 WHERE total = 19.466
What is the total number of E scores when the total score was 19.7 and the A score was more than 6?
CREATE TABLE table_name_49 (e_score VARCHAR, total VARCHAR, a_score VARCHAR)
SELECT COUNT(e_score) FROM table_name_49 WHERE total = 19.7 AND a_score > 6
### Context: CREATE TABLE table_name_49 (e_score VARCHAR, total VARCHAR, a_score VARCHAR) ### Question: What is the total number of E scores when the total score was 19.7 and the A score was more than 6? ### Answer: SELECT COUNT(e_score) FROM table_name_49 WHERE total = 19.7 AND a_score > 6
What is the highest number of draws with 14 points and less than 7 games?
CREATE TABLE table_name_39 (drawn INTEGER, points VARCHAR, games VARCHAR)
SELECT MAX(drawn) FROM table_name_39 WHERE points = 14 AND games < 7
### Context: CREATE TABLE table_name_39 (drawn INTEGER, points VARCHAR, games VARCHAR) ### Question: What is the highest number of draws with 14 points and less than 7 games? ### Answer: SELECT MAX(drawn) FROM table_name_39 WHERE points = 14 AND games < 7
What was the attendance at the game with a record of 4-5?
CREATE TABLE table_name_92 (attendance VARCHAR, record VARCHAR)
SELECT attendance FROM table_name_92 WHERE record = "4-5"
### Context: CREATE TABLE table_name_92 (attendance VARCHAR, record VARCHAR) ### Question: What was the attendance at the game with a record of 4-5? ### Answer: SELECT attendance FROM table_name_92 WHERE record = "4-5"
What was the date of the week 16 game?
CREATE TABLE table_name_79 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_79 WHERE week = 16
### Context: CREATE TABLE table_name_79 (date VARCHAR, week VARCHAR) ### Question: What was the date of the week 16 game? ### Answer: SELECT date FROM table_name_79 WHERE week = 16
What was the record at the game with a result of W 13-12 after week 4?
CREATE TABLE table_name_10 (record VARCHAR, week VARCHAR, result VARCHAR)
SELECT record FROM table_name_10 WHERE week > 4 AND result = "w 13-12"
### Context: CREATE TABLE table_name_10 (record VARCHAR, week VARCHAR, result VARCHAR) ### Question: What was the record at the game with a result of W 13-12 after week 4? ### Answer: SELECT record FROM table_name_10 WHERE week > 4 AND result = "w 13-12"
Who was the opponent at the game attended by 62,019 before week 17?
CREATE TABLE table_name_22 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_22 WHERE week < 17 AND attendance = "62,019"
### Context: CREATE TABLE table_name_22 (opponent VARCHAR, week VARCHAR, attendance VARCHAR) ### Question: Who was the opponent at the game attended by 62,019 before week 17? ### Answer: SELECT opponent FROM table_name_22 WHERE week < 17 AND attendance = "62,019"
Name the surface for january 8, 2001
CREATE TABLE table_name_93 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_93 WHERE date = "january 8, 2001"
### Context: CREATE TABLE table_name_93 (surface VARCHAR, date VARCHAR) ### Question: Name the surface for january 8, 2001 ### Answer: SELECT surface FROM table_name_93 WHERE date = "january 8, 2001"
Name the outcome for jordan kerr july 19, 2004
CREATE TABLE table_name_79 (outcome VARCHAR, partnering VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_79 WHERE partnering = "jordan kerr" AND date = "july 19, 2004"
### Context: CREATE TABLE table_name_79 (outcome VARCHAR, partnering VARCHAR, date VARCHAR) ### Question: Name the outcome for jordan kerr july 19, 2004 ### Answer: SELECT outcome FROM table_name_79 WHERE partnering = "jordan kerr" AND date = "july 19, 2004"
Name the score for opponents of nathan healey igor kunitsyn
CREATE TABLE table_name_57 (score VARCHAR, opponents_in_the_final VARCHAR)
SELECT score FROM table_name_57 WHERE opponents_in_the_final = "nathan healey igor kunitsyn"
### Context: CREATE TABLE table_name_57 (score VARCHAR, opponents_in_the_final VARCHAR) ### Question: Name the score for opponents of nathan healey igor kunitsyn ### Answer: SELECT score FROM table_name_57 WHERE opponents_in_the_final = "nathan healey igor kunitsyn"
Name the outcome for opponents of jonas björkman john mcenroe
CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_final VARCHAR)
SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = "jonas björkman john mcenroe"
### Context: CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_final VARCHAR) ### Question: Name the outcome for opponents of jonas björkman john mcenroe ### Answer: SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = "jonas björkman john mcenroe"
Name the surface for paul goldstein and date of october 2, 2006
CREATE TABLE table_name_79 (surface VARCHAR, partnering VARCHAR, date VARCHAR)
SELECT surface FROM table_name_79 WHERE partnering = "paul goldstein" AND date = "october 2, 2006"
### Context: CREATE TABLE table_name_79 (surface VARCHAR, partnering VARCHAR, date VARCHAR) ### Question: Name the surface for paul goldstein and date of october 2, 2006 ### Answer: SELECT surface FROM table_name_79 WHERE partnering = "paul goldstein" AND date = "october 2, 2006"
Which Games have a Drawn smaller than 1, and a Lost smaller than 1?
CREATE TABLE table_name_91 (games VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT games FROM table_name_91 WHERE drawn < 1 AND lost < 1
### Context: CREATE TABLE table_name_91 (games VARCHAR, drawn VARCHAR, lost VARCHAR) ### Question: Which Games have a Drawn smaller than 1, and a Lost smaller than 1? ### Answer: SELECT games FROM table_name_91 WHERE drawn < 1 AND lost < 1
Which Drawn is the lowest one that has a Lost of 5, and Points larger than 4?
CREATE TABLE table_name_32 (drawn INTEGER, lost VARCHAR, points VARCHAR)
SELECT MIN(drawn) FROM table_name_32 WHERE lost = 5 AND points > 4
### Context: CREATE TABLE table_name_32 (drawn INTEGER, lost VARCHAR, points VARCHAR) ### Question: Which Drawn is the lowest one that has a Lost of 5, and Points larger than 4? ### Answer: SELECT MIN(drawn) FROM table_name_32 WHERE lost = 5 AND points > 4
Which Government has 57 seats?
CREATE TABLE table_name_56 (government VARCHAR, seats VARCHAR)
SELECT government FROM table_name_56 WHERE seats = 57
### Context: CREATE TABLE table_name_56 (government VARCHAR, seats VARCHAR) ### Question: Which Government has 57 seats? ### Answer: SELECT government FROM table_name_56 WHERE seats = 57
How many seats does the 6th Dail have?
CREATE TABLE table_name_72 (seats VARCHAR, dáil VARCHAR)
SELECT COUNT(seats) FROM table_name_72 WHERE dáil = "6th"
### Context: CREATE TABLE table_name_72 (seats VARCHAR, dáil VARCHAR) ### Question: How many seats does the 6th Dail have? ### Answer: SELECT COUNT(seats) FROM table_name_72 WHERE dáil = "6th"
What is the number of the dail with 61 seats?
CREATE TABLE table_name_55 (dáil VARCHAR, seats VARCHAR)
SELECT dáil FROM table_name_55 WHERE seats = 61
### Context: CREATE TABLE table_name_55 (dáil VARCHAR, seats VARCHAR) ### Question: What is the number of the dail with 61 seats? ### Answer: SELECT dáil FROM table_name_55 WHERE seats = 61
What is the lowest number of seats from the election with 27.0% of votes?
CREATE TABLE table_name_55 (seats INTEGER, share_of_votes VARCHAR)
SELECT MIN(seats) FROM table_name_55 WHERE share_of_votes = "27.0%"
### Context: CREATE TABLE table_name_55 (seats INTEGER, share_of_votes VARCHAR) ### Question: What is the lowest number of seats from the election with 27.0% of votes? ### Answer: SELECT MIN(seats) FROM table_name_55 WHERE share_of_votes = "27.0%"
What is the 6th dail share of votes?
CREATE TABLE table_name_67 (share_of_votes VARCHAR, dáil VARCHAR)
SELECT share_of_votes FROM table_name_67 WHERE dáil = "6th"
### Context: CREATE TABLE table_name_67 (share_of_votes VARCHAR, dáil VARCHAR) ### Question: What is the 6th dail share of votes? ### Answer: SELECT share_of_votes FROM table_name_67 WHERE dáil = "6th"
What was the highest week when the record was 1-3?
CREATE TABLE table_name_48 (week INTEGER, record VARCHAR)
SELECT MAX(week) FROM table_name_48 WHERE record = "1-3"
### Context: CREATE TABLE table_name_48 (week INTEGER, record VARCHAR) ### Question: What was the highest week when the record was 1-3? ### Answer: SELECT MAX(week) FROM table_name_48 WHERE record = "1-3"
Who was the opponent at the game attended by 62,657?
CREATE TABLE table_name_34 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_34 WHERE attendance = "62,657"
### Context: CREATE TABLE table_name_34 (opponent VARCHAR, attendance VARCHAR) ### Question: Who was the opponent at the game attended by 62,657? ### Answer: SELECT opponent FROM table_name_34 WHERE attendance = "62,657"
What is the year built for the Fay No. 4?
CREATE TABLE table_name_47 (year_built INTEGER, name VARCHAR)
SELECT MAX(year_built) FROM table_name_47 WHERE name = "fay no. 4"
### Context: CREATE TABLE table_name_47 (year_built INTEGER, name VARCHAR) ### Question: What is the year built for the Fay No. 4? ### Answer: SELECT MAX(year_built) FROM table_name_47 WHERE name = "fay no. 4"
Where the length is 91', what is the year built?
CREATE TABLE table_name_38 (year_built VARCHAR, length VARCHAR)
SELECT year_built FROM table_name_38 WHERE length = "91'"
### Context: CREATE TABLE table_name_38 (year_built VARCHAR, length VARCHAR) ### Question: Where the length is 91', what is the year built? ### Answer: SELECT year_built FROM table_name_38 WHERE length = "91'"
What is the address for the Scorpions' mascot?
CREATE TABLE table_name_80 (address VARCHAR, mascot VARCHAR)
SELECT address FROM table_name_80 WHERE mascot = "scorpions"
### Context: CREATE TABLE table_name_80 (address VARCHAR, mascot VARCHAR) ### Question: What is the address for the Scorpions' mascot? ### Answer: SELECT address FROM table_name_80 WHERE mascot = "scorpions"
What was the mascot for the 2013-2014 principal named Frank Hendricsen?
CREATE TABLE table_name_7 (mascot VARCHAR, principal__2013_2014_ VARCHAR)
SELECT mascot FROM table_name_7 WHERE principal__2013_2014_ = "frank hendricsen"
### Context: CREATE TABLE table_name_7 (mascot VARCHAR, principal__2013_2014_ VARCHAR) ### Question: What was the mascot for the 2013-2014 principal named Frank Hendricsen? ### Answer: SELECT mascot FROM table_name_7 WHERE principal__2013_2014_ = "frank hendricsen"
Who were the assistant and main principals of Kat Hughes?
CREATE TABLE table_name_97 (Assistant VARCHAR, principal__2013_2014_ VARCHAR)
SELECT Assistant AS principal__2013_2014_ FROM table_name_97 WHERE principal__2013_2014_ = "kat hughes"
### Context: CREATE TABLE table_name_97 (Assistant VARCHAR, principal__2013_2014_ VARCHAR) ### Question: Who were the assistant and main principals of Kat Hughes? ### Answer: SELECT Assistant AS principal__2013_2014_ FROM table_name_97 WHERE principal__2013_2014_ = "kat hughes"
What is the address for the school that has the coyotes mascot?
CREATE TABLE table_name_44 (address VARCHAR, mascot VARCHAR)
SELECT address FROM table_name_44 WHERE mascot = "coyotes"
### Context: CREATE TABLE table_name_44 (address VARCHAR, mascot VARCHAR) ### Question: What is the address for the school that has the coyotes mascot? ### Answer: SELECT address FROM table_name_44 WHERE mascot = "coyotes"
What is the result of the game played at Jinan?
CREATE TABLE table_name_26 (result VARCHAR, venue VARCHAR)
SELECT result FROM table_name_26 WHERE venue = "jinan"
### Context: CREATE TABLE table_name_26 (result VARCHAR, venue VARCHAR) ### Question: What is the result of the game played at Jinan? ### Answer: SELECT result FROM table_name_26 WHERE venue = "jinan"
What is the score of the game on November 10, 2006?
CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_17 WHERE date = "november 10, 2006"
### Context: CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR) ### Question: What is the score of the game on November 10, 2006? ### Answer: SELECT score FROM table_name_17 WHERE date = "november 10, 2006"
What is the date of the game held at Lahore?
CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_87 WHERE venue = "lahore"
### Context: CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR) ### Question: What is the date of the game held at Lahore? ### Answer: SELECT date FROM table_name_87 WHERE venue = "lahore"
What were the total number of entries in 2001 that had a front row smaller than 13?
CREATE TABLE table_name_55 (entries VARCHAR, season VARCHAR, front_row_starts VARCHAR)
SELECT COUNT(entries) FROM table_name_55 WHERE season = "2001" AND front_row_starts < 13
### Context: CREATE TABLE table_name_55 (entries VARCHAR, season VARCHAR, front_row_starts VARCHAR) ### Question: What were the total number of entries in 2001 that had a front row smaller than 13? ### Answer: SELECT COUNT(entries) FROM table_name_55 WHERE season = "2001" AND front_row_starts < 13
What are the lowest entries for a front row smaller than 15 where Michael Schumacher was driving?
CREATE TABLE table_name_87 (entries INTEGER, front_row_starts VARCHAR, driver VARCHAR)
SELECT MIN(entries) FROM table_name_87 WHERE front_row_starts < 15 AND driver = "michael schumacher"
### Context: CREATE TABLE table_name_87 (entries INTEGER, front_row_starts VARCHAR, driver VARCHAR) ### Question: What are the lowest entries for a front row smaller than 15 where Michael Schumacher was driving? ### Answer: SELECT MIN(entries) FROM table_name_87 WHERE front_row_starts < 15 AND driver = "michael schumacher"
What was the highest front row starts for Alain Prost?
CREATE TABLE table_name_52 (front_row_starts INTEGER, driver VARCHAR)
SELECT MAX(front_row_starts) FROM table_name_52 WHERE driver = "alain prost"
### Context: CREATE TABLE table_name_52 (front_row_starts INTEGER, driver VARCHAR) ### Question: What was the highest front row starts for Alain Prost? ### Answer: SELECT MAX(front_row_starts) FROM table_name_52 WHERE driver = "alain prost"
Which Against has Losses larger than 2, and Wins of 8, and Byes smaller than 0?
CREATE TABLE table_name_65 (against INTEGER, byes VARCHAR, losses VARCHAR, wins VARCHAR)
SELECT SUM(against) FROM table_name_65 WHERE losses > 2 AND wins = 8 AND byes < 0
### Context: CREATE TABLE table_name_65 (against INTEGER, byes VARCHAR, losses VARCHAR, wins VARCHAR) ### Question: Which Against has Losses larger than 2, and Wins of 8, and Byes smaller than 0? ### Answer: SELECT SUM(against) FROM table_name_65 WHERE losses > 2 AND wins = 8 AND byes < 0
Which Draws have Wins larger than 14?
CREATE TABLE table_name_23 (draws INTEGER, wins INTEGER)
SELECT SUM(draws) FROM table_name_23 WHERE wins > 14
### Context: CREATE TABLE table_name_23 (draws INTEGER, wins INTEGER) ### Question: Which Draws have Wins larger than 14? ### Answer: SELECT SUM(draws) FROM table_name_23 WHERE wins > 14
How many Losses have an NTFA Div 2 of perth, and Wins smaller than 10?
CREATE TABLE table_name_45 (losses VARCHAR, ntfa_div_2 VARCHAR, wins VARCHAR)
SELECT COUNT(losses) FROM table_name_45 WHERE ntfa_div_2 = "perth" AND wins < 10
### Context: CREATE TABLE table_name_45 (losses VARCHAR, ntfa_div_2 VARCHAR, wins VARCHAR) ### Question: How many Losses have an NTFA Div 2 of perth, and Wins smaller than 10? ### Answer: SELECT COUNT(losses) FROM table_name_45 WHERE ntfa_div_2 = "perth" AND wins < 10
Which Byes have an Against smaller than 1647, and an NTFA Div 2 of fingal valley, and Wins smaller than 14?
CREATE TABLE table_name_80 (byes INTEGER, wins VARCHAR, against VARCHAR, ntfa_div_2 VARCHAR)
SELECT MAX(byes) FROM table_name_80 WHERE against < 1647 AND ntfa_div_2 = "fingal valley" AND wins < 14
### Context: CREATE TABLE table_name_80 (byes INTEGER, wins VARCHAR, against VARCHAR, ntfa_div_2 VARCHAR) ### Question: Which Byes have an Against smaller than 1647, and an NTFA Div 2 of fingal valley, and Wins smaller than 14? ### Answer: SELECT MAX(byes) FROM table_name_80 WHERE against < 1647 AND ntfa_div_2 = "fingal valley" AND wins < 14
How many grids were there races with more than 10 laps and a time of +34.121?
CREATE TABLE table_name_83 (grid VARCHAR, time VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_83 WHERE time = "+34.121" AND laps > 10
### Context: CREATE TABLE table_name_83 (grid VARCHAR, time VARCHAR, laps VARCHAR) ### Question: How many grids were there races with more than 10 laps and a time of +34.121? ### Answer: SELECT COUNT(grid) FROM table_name_83 WHERE time = "+34.121" AND laps > 10
What is the smallest grid number that had 10 laps listed with Jonathan Summerton as the driver?
CREATE TABLE table_name_31 (grid INTEGER, laps VARCHAR, driver VARCHAR)
SELECT MIN(grid) FROM table_name_31 WHERE laps = 10 AND driver = "jonathan summerton"
### Context: CREATE TABLE table_name_31 (grid INTEGER, laps VARCHAR, driver VARCHAR) ### Question: What is the smallest grid number that had 10 laps listed with Jonathan Summerton as the driver? ### Answer: SELECT MIN(grid) FROM table_name_31 WHERE laps = 10 AND driver = "jonathan summerton"
What is the average grid number that had Team China with less than 10 laps?
CREATE TABLE table_name_29 (grid INTEGER, laps VARCHAR, team VARCHAR)
SELECT AVG(grid) FROM table_name_29 WHERE laps < 10 AND team = "china"
### Context: CREATE TABLE table_name_29 (grid INTEGER, laps VARCHAR, team VARCHAR) ### Question: What is the average grid number that had Team China with less than 10 laps? ### Answer: SELECT AVG(grid) FROM table_name_29 WHERE laps < 10 AND team = "china"
Which Creator has the Latest stable release of unknown, and a Name of myeclipse?
CREATE TABLE table_name_33 (creator VARCHAR, latest_stable_release VARCHAR, name VARCHAR)
SELECT creator FROM table_name_33 WHERE latest_stable_release = "unknown" AND name = "myeclipse"
### Context: CREATE TABLE table_name_33 (creator VARCHAR, latest_stable_release VARCHAR, name VARCHAR) ### Question: Which Creator has the Latest stable release of unknown, and a Name of myeclipse? ### Answer: SELECT creator FROM table_name_33 WHERE latest_stable_release = "unknown" AND name = "myeclipse"
Which Platform / OS has a Name of altova umodel?
CREATE TABLE table_name_97 (platform___os VARCHAR, name VARCHAR)
SELECT platform___os FROM table_name_97 WHERE name = "altova umodel"
### Context: CREATE TABLE table_name_97 (platform___os VARCHAR, name VARCHAR) ### Question: Which Platform / OS has a Name of altova umodel? ### Answer: SELECT platform___os FROM table_name_97 WHERE name = "altova umodel"
Which Programming language used has a First public release of 1997?
CREATE TABLE table_name_52 (programming_language_used VARCHAR, first_public_release VARCHAR)
SELECT programming_language_used FROM table_name_52 WHERE first_public_release = "1997"
### Context: CREATE TABLE table_name_52 (programming_language_used VARCHAR, first_public_release VARCHAR) ### Question: Which Programming language used has a First public release of 1997? ### Answer: SELECT programming_language_used FROM table_name_52 WHERE first_public_release = "1997"
Which First public release has a Name of rational software modeler?
CREATE TABLE table_name_25 (first_public_release VARCHAR, name VARCHAR)
SELECT first_public_release FROM table_name_25 WHERE name = "rational software modeler"
### Context: CREATE TABLE table_name_25 (first_public_release VARCHAR, name VARCHAR) ### Question: Which First public release has a Name of rational software modeler? ### Answer: SELECT first_public_release FROM table_name_25 WHERE name = "rational software modeler"
What is the College of Rice's highest overall for the guard position?
CREATE TABLE table_name_62 (overall INTEGER, position VARCHAR, college VARCHAR)
SELECT MAX(overall) FROM table_name_62 WHERE position = "guard" AND college = "rice"
### Context: CREATE TABLE table_name_62 (overall INTEGER, position VARCHAR, college VARCHAR) ### Question: What is the College of Rice's highest overall for the guard position? ### Answer: SELECT MAX(overall) FROM table_name_62 WHERE position = "guard" AND college = "rice"
What is Tommy Nobis' position that has fewer than 16 picks?
CREATE TABLE table_name_80 (position VARCHAR, pick__number VARCHAR, name VARCHAR)
SELECT position FROM table_name_80 WHERE pick__number < 16 AND name = "tommy nobis"
### Context: CREATE TABLE table_name_80 (position VARCHAR, pick__number VARCHAR, name VARCHAR) ### Question: What is Tommy Nobis' position that has fewer than 16 picks? ### Answer: SELECT position FROM table_name_80 WHERE pick__number < 16 AND name = "tommy nobis"
What was the score when the Rangers were playing against the Vancouver Canucks?
CREATE TABLE table_name_99 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_99 WHERE opponent = "vancouver canucks"
### Context: CREATE TABLE table_name_99 (score VARCHAR, opponent VARCHAR) ### Question: What was the score when the Rangers were playing against the Vancouver Canucks? ### Answer: SELECT score FROM table_name_99 WHERE opponent = "vancouver canucks"
Who were the opponents on January 27?
CREATE TABLE table_name_34 (opponent VARCHAR, january VARCHAR)
SELECT opponent FROM table_name_34 WHERE january = 27
### Context: CREATE TABLE table_name_34 (opponent VARCHAR, january VARCHAR) ### Question: Who were the opponents on January 27? ### Answer: SELECT opponent FROM table_name_34 WHERE january = 27
Who was the opponent for game number less than 47 and a record of 24-13-4?
CREATE TABLE table_name_34 (opponent VARCHAR, game VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_34 WHERE game < 47 AND record = "24-13-4"
### Context: CREATE TABLE table_name_34 (opponent VARCHAR, game VARCHAR, record VARCHAR) ### Question: Who was the opponent for game number less than 47 and a record of 24-13-4? ### Answer: SELECT opponent FROM table_name_34 WHERE game < 47 AND record = "24-13-4"
What is the average january number when the game number was higher than 39 and the opponent was the Vancouver Canucks?
CREATE TABLE table_name_72 (january INTEGER, opponent VARCHAR, game VARCHAR)
SELECT AVG(january) FROM table_name_72 WHERE opponent = "vancouver canucks" AND game > 39
### Context: CREATE TABLE table_name_72 (january INTEGER, opponent VARCHAR, game VARCHAR) ### Question: What is the average january number when the game number was higher than 39 and the opponent was the Vancouver Canucks? ### Answer: SELECT AVG(january) FROM table_name_72 WHERE opponent = "vancouver canucks" AND game > 39
What is the Drawn number with a Points against of correct as of 08:50 10 may 2009?
CREATE TABLE table_name_11 (drawn VARCHAR, points_against VARCHAR)
SELECT drawn FROM table_name_11 WHERE points_against = "correct as of 08:50 10 may 2009"
### Context: CREATE TABLE table_name_11 (drawn VARCHAR, points_against VARCHAR) ### Question: What is the Drawn number with a Points against of correct as of 08:50 10 may 2009? ### Answer: SELECT drawn FROM table_name_11 WHERE points_against = "correct as of 08:50 10 may 2009"
What is the Tries against when lost shows 12 for pontycymmer rfc?
CREATE TABLE table_name_79 (tries_against VARCHAR, lost VARCHAR, club VARCHAR)
SELECT tries_against FROM table_name_79 WHERE lost = "12" AND club = "pontycymmer rfc"
### Context: CREATE TABLE table_name_79 (tries_against VARCHAR, lost VARCHAR, club VARCHAR) ### Question: What is the Tries against when lost shows 12 for pontycymmer rfc? ### Answer: SELECT tries_against FROM table_name_79 WHERE lost = "12" AND club = "pontycymmer rfc"
What is the Points against for the ystradgynlais rfc club?
CREATE TABLE table_name_58 (points_against VARCHAR, club VARCHAR)
SELECT points_against FROM table_name_58 WHERE club = "ystradgynlais rfc"
### Context: CREATE TABLE table_name_58 (points_against VARCHAR, club VARCHAR) ### Question: What is the Points against for the ystradgynlais rfc club? ### Answer: SELECT points_against FROM table_name_58 WHERE club = "ystradgynlais rfc"
What is the Club name what shows 405 for the Points against?
CREATE TABLE table_name_11 (club VARCHAR, points_against VARCHAR)
SELECT club FROM table_name_11 WHERE points_against = "405"
### Context: CREATE TABLE table_name_11 (club VARCHAR, points_against VARCHAR) ### Question: What is the Club name what shows 405 for the Points against? ### Answer: SELECT club FROM table_name_11 WHERE points_against = "405"
What shows for Try bonus when the points against are 451?
CREATE TABLE table_name_37 (try_bonus VARCHAR, points_against VARCHAR)
SELECT try_bonus FROM table_name_37 WHERE points_against = "451"
### Context: CREATE TABLE table_name_37 (try_bonus VARCHAR, points_against VARCHAR) ### Question: What shows for Try bonus when the points against are 451? ### Answer: SELECT try_bonus FROM table_name_37 WHERE points_against = "451"
Which Pos has a Make of chevrolet, and a Driver of jack sprague, and a Car # smaller than 2?
CREATE TABLE table_name_41 (pos INTEGER, car__number VARCHAR, make VARCHAR, driver VARCHAR)
SELECT SUM(pos) FROM table_name_41 WHERE make = "chevrolet" AND driver = "jack sprague" AND car__number < 2
### Context: CREATE TABLE table_name_41 (pos INTEGER, car__number VARCHAR, make VARCHAR, driver VARCHAR) ### Question: Which Pos has a Make of chevrolet, and a Driver of jack sprague, and a Car # smaller than 2? ### Answer: SELECT SUM(pos) FROM table_name_41 WHERE make = "chevrolet" AND driver = "jack sprague" AND car__number < 2
How many Car numbers have a Driver of erik darnell, and a Pos smaller than 2?
CREATE TABLE table_name_93 (car__number VARCHAR, driver VARCHAR, pos VARCHAR)
SELECT COUNT(car__number) FROM table_name_93 WHERE driver = "erik darnell" AND pos < 2
### Context: CREATE TABLE table_name_93 (car__number VARCHAR, driver VARCHAR, pos VARCHAR) ### Question: How many Car numbers have a Driver of erik darnell, and a Pos smaller than 2? ### Answer: SELECT COUNT(car__number) FROM table_name_93 WHERE driver = "erik darnell" AND pos < 2
Which Pos has a Car # of 33?
CREATE TABLE table_name_72 (pos INTEGER, car__number VARCHAR)
SELECT SUM(pos) FROM table_name_72 WHERE car__number = 33
### Context: CREATE TABLE table_name_72 (pos INTEGER, car__number VARCHAR) ### Question: Which Pos has a Car # of 33? ### Answer: SELECT SUM(pos) FROM table_name_72 WHERE car__number = 33
Which Pos has a Team of circle bar racing, and a Car # smaller than 14?
CREATE TABLE table_name_64 (pos INTEGER, team VARCHAR, car__number VARCHAR)
SELECT MAX(pos) FROM table_name_64 WHERE team = "circle bar racing" AND car__number < 14
### Context: CREATE TABLE table_name_64 (pos INTEGER, team VARCHAR, car__number VARCHAR) ### Question: Which Pos has a Team of circle bar racing, and a Car # smaller than 14? ### Answer: SELECT MAX(pos) FROM table_name_64 WHERE team = "circle bar racing" AND car__number < 14
Which Pos has a Car # larger than 2, and a Team of billy ballew motorsports?
CREATE TABLE table_name_38 (pos INTEGER, car__number VARCHAR, team VARCHAR)
SELECT AVG(pos) FROM table_name_38 WHERE car__number > 2 AND team = "billy ballew motorsports"
### Context: CREATE TABLE table_name_38 (pos INTEGER, car__number VARCHAR, team VARCHAR) ### Question: Which Pos has a Car # larger than 2, and a Team of billy ballew motorsports? ### Answer: SELECT AVG(pos) FROM table_name_38 WHERE car__number > 2 AND team = "billy ballew motorsports"
What Rank is the Director(s) of satoko okita?
CREATE TABLE table_name_42 (rank VARCHAR, director_s_ VARCHAR)
SELECT rank FROM table_name_42 WHERE director_s_ = "satoko okita"
### Context: CREATE TABLE table_name_42 (rank VARCHAR, director_s_ VARCHAR) ### Question: What Rank is the Director(s) of satoko okita? ### Answer: SELECT rank FROM table_name_42 WHERE director_s_ = "satoko okita"
What country is the film hi no tsugi ha rekishi from?
CREATE TABLE table_name_21 (country VARCHAR, film VARCHAR)
SELECT country FROM table_name_21 WHERE film = "hi no tsugi ha rekishi"
### Context: CREATE TABLE table_name_21 (country VARCHAR, film VARCHAR) ### Question: What country is the film hi no tsugi ha rekishi from? ### Answer: SELECT country FROM table_name_21 WHERE film = "hi no tsugi ha rekishi"
Which Director(s) made the film hanzubon no ojisan and received a prize of ¥300,000?
CREATE TABLE table_name_21 (director_s_ VARCHAR, prize VARCHAR, film VARCHAR)
SELECT director_s_ FROM table_name_21 WHERE prize = "¥300,000" AND film = "hanzubon no ojisan"
### Context: CREATE TABLE table_name_21 (director_s_ VARCHAR, prize VARCHAR, film VARCHAR) ### Question: Which Director(s) made the film hanzubon no ojisan and received a prize of ¥300,000? ### Answer: SELECT director_s_ FROM table_name_21 WHERE prize = "¥300,000" AND film = "hanzubon no ojisan"
Which country did the Director(s) of kota nagaoka come from and win ¥300,000?
CREATE TABLE table_name_59 (country VARCHAR, prize VARCHAR, director_s_ VARCHAR)
SELECT country FROM table_name_59 WHERE prize = "¥300,000" AND director_s_ = "kota nagaoka"
### Context: CREATE TABLE table_name_59 (country VARCHAR, prize VARCHAR, director_s_ VARCHAR) ### Question: Which country did the Director(s) of kota nagaoka come from and win ¥300,000? ### Answer: SELECT country FROM table_name_59 WHERE prize = "¥300,000" AND director_s_ = "kota nagaoka"
What Director won a prize of ¥2,000,000?
CREATE TABLE table_name_42 (director_s_ VARCHAR, prize VARCHAR)
SELECT director_s_ FROM table_name_42 WHERE prize = "¥2,000,000"
### Context: CREATE TABLE table_name_42 (director_s_ VARCHAR, prize VARCHAR) ### Question: What Director won a prize of ¥2,000,000? ### Answer: SELECT director_s_ FROM table_name_42 WHERE prize = "¥2,000,000"
What Rank is the director of maximilian jezo-parovsky?
CREATE TABLE table_name_95 (rank VARCHAR, director_s_ VARCHAR)
SELECT rank FROM table_name_95 WHERE director_s_ = "maximilian jezo-parovsky"
### Context: CREATE TABLE table_name_95 (rank VARCHAR, director_s_ VARCHAR) ### Question: What Rank is the director of maximilian jezo-parovsky? ### Answer: SELECT rank FROM table_name_95 WHERE director_s_ = "maximilian jezo-parovsky"
Who had the most high assists from Milwaukee?
CREATE TABLE table_name_73 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_name_73 WHERE team = "milwaukee"
### Context: CREATE TABLE table_name_73 (high_assists VARCHAR, team VARCHAR) ### Question: Who had the most high assists from Milwaukee? ### Answer: SELECT high_assists FROM table_name_73 WHERE team = "milwaukee"
Who scored the most point on December 13?
CREATE TABLE table_name_28 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_name_28 WHERE date = "december 13"
### Context: CREATE TABLE table_name_28 (high_points VARCHAR, date VARCHAR) ### Question: Who scored the most point on December 13? ### Answer: SELECT high_points FROM table_name_28 WHERE date = "december 13"
What's the Loss for the game that had a 22-24 record?
CREATE TABLE table_name_24 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_24 WHERE record = "22-24"
### Context: CREATE TABLE table_name_24 (loss VARCHAR, record VARCHAR) ### Question: What's the Loss for the game that had a 22-24 record? ### Answer: SELECT loss FROM table_name_24 WHERE record = "22-24"
What was the date that Elvir Krehmic made a high jump record?
CREATE TABLE table_name_78 (date VARCHAR, athlete VARCHAR)
SELECT date FROM table_name_78 WHERE athlete = "elvir krehmic"
### Context: CREATE TABLE table_name_78 (date VARCHAR, athlete VARCHAR) ### Question: What was the date that Elvir Krehmic made a high jump record? ### Answer: SELECT date FROM table_name_78 WHERE athlete = "elvir krehmic"
Which spine has 12 issues?
CREATE TABLE table_name_99 (spine VARCHAR, number_of_issues VARCHAR)
SELECT spine FROM table_name_99 WHERE number_of_issues = 12
### Context: CREATE TABLE table_name_99 (spine VARCHAR, number_of_issues VARCHAR) ### Question: Which spine has 12 issues? ### Answer: SELECT spine FROM table_name_99 WHERE number_of_issues = 12
How many issues end on jan–72?
CREATE TABLE table_name_82 (number_of_issues INTEGER, end_month VARCHAR)
SELECT SUM(number_of_issues) FROM table_name_82 WHERE end_month = "jan–72"
### Context: CREATE TABLE table_name_82 (number_of_issues INTEGER, end_month VARCHAR) ### Question: How many issues end on jan–72? ### Answer: SELECT SUM(number_of_issues) FROM table_name_82 WHERE end_month = "jan–72"
Which masthead ends on oct–69?
CREATE TABLE table_name_15 (masthead VARCHAR, end_month VARCHAR)
SELECT masthead FROM table_name_15 WHERE end_month = "oct–69"
### Context: CREATE TABLE table_name_15 (masthead VARCHAR, end_month VARCHAR) ### Question: Which masthead ends on oct–69? ### Answer: SELECT masthead FROM table_name_15 WHERE end_month = "oct–69"
What is the game number held on May 2?
CREATE TABLE table_name_51 (game INTEGER, date VARCHAR)
SELECT AVG(game) FROM table_name_51 WHERE date = "may 2"
### Context: CREATE TABLE table_name_51 (game INTEGER, date VARCHAR) ### Question: What is the game number held on May 2? ### Answer: SELECT AVG(game) FROM table_name_51 WHERE date = "may 2"
Which Season has a Postseason of promoted runner-up?
CREATE TABLE table_name_33 (season VARCHAR, postseason VARCHAR)
SELECT season FROM table_name_33 WHERE postseason = "promoted runner-up"
### Context: CREATE TABLE table_name_33 (season VARCHAR, postseason VARCHAR) ### Question: Which Season has a Postseason of promoted runner-up? ### Answer: SELECT season FROM table_name_33 WHERE postseason = "promoted runner-up"
What is the attendance of the match with a record 20-11?
CREATE TABLE table_name_97 (attendance VARCHAR, record VARCHAR)
SELECT attendance FROM table_name_97 WHERE record = "20-11"
### Context: CREATE TABLE table_name_97 (attendance VARCHAR, record VARCHAR) ### Question: What is the attendance of the match with a record 20-11? ### Answer: SELECT attendance FROM table_name_97 WHERE record = "20-11"
What is the date of the match with a 28-15 record?
CREATE TABLE table_name_24 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_24 WHERE record = "28-15"
### Context: CREATE TABLE table_name_24 (date VARCHAR, record VARCHAR) ### Question: What is the date of the match with a 28-15 record? ### Answer: SELECT date FROM table_name_24 WHERE record = "28-15"
Which opponent did they play against on April 16?
CREATE TABLE table_name_79 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_79 WHERE date = "april 16"
### Context: CREATE TABLE table_name_79 (opponent VARCHAR, date VARCHAR) ### Question: Which opponent did they play against on April 16? ### Answer: SELECT opponent FROM table_name_79 WHERE date = "april 16"
What circuit was after round 2 in Victoria?
CREATE TABLE table_name_64 (circuit VARCHAR, round VARCHAR, state_territory VARCHAR)
SELECT circuit FROM table_name_64 WHERE round > 2 AND state_territory = "victoria"
### Context: CREATE TABLE table_name_64 (circuit VARCHAR, round VARCHAR, state_territory VARCHAR) ### Question: What circuit was after round 2 in Victoria? ### Answer: SELECT circuit FROM table_name_64 WHERE round > 2 AND state_territory = "victoria"
What is the state the winning driver Jamie Whincup from in round 2?
CREATE TABLE table_name_8 (state_territory VARCHAR, winning_driver VARCHAR, round VARCHAR)
SELECT state_territory FROM table_name_8 WHERE winning_driver = "jamie whincup" AND round = 2
### Context: CREATE TABLE table_name_8 (state_territory VARCHAR, winning_driver VARCHAR, round VARCHAR) ### Question: What is the state the winning driver Jamie Whincup from in round 2? ### Answer: SELECT state_territory FROM table_name_8 WHERE winning_driver = "jamie whincup" AND round = 2
What date in October did the Flyers play against the Toronto Maple Leafs?
CREATE TABLE table_name_11 (october VARCHAR, opponent VARCHAR)
SELECT october FROM table_name_11 WHERE opponent = "toronto maple leafs"
### Context: CREATE TABLE table_name_11 (october VARCHAR, opponent VARCHAR) ### Question: What date in October did the Flyers play against the Toronto Maple Leafs? ### Answer: SELECT october FROM table_name_11 WHERE opponent = "toronto maple leafs"
What was the score of the game that had more than 8 points?
CREATE TABLE table_name_17 (score VARCHAR, points INTEGER)
SELECT score FROM table_name_17 WHERE points > 8
### Context: CREATE TABLE table_name_17 (score VARCHAR, points INTEGER) ### Question: What was the score of the game that had more than 8 points? ### Answer: SELECT score FROM table_name_17 WHERE points > 8
The round that had the final, what was the result?
CREATE TABLE table_name_11 (result VARCHAR, round VARCHAR)
SELECT result FROM table_name_11 WHERE round = "final"
### Context: CREATE TABLE table_name_11 (result VARCHAR, round VARCHAR) ### Question: The round that had the final, what was the result? ### Answer: SELECT result FROM table_name_11 WHERE round = "final"
Opponent of andry laffita had what score?
CREATE TABLE table_name_7 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_7 WHERE opponent = "andry laffita"
### Context: CREATE TABLE table_name_7 (score VARCHAR, opponent VARCHAR) ### Question: Opponent of andry laffita had what score? ### Answer: SELECT score FROM table_name_7 WHERE opponent = "andry laffita"
Opponent of igor samoilenco had what result?
CREATE TABLE table_name_11 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_11 WHERE opponent = "igor samoilenco"
### Context: CREATE TABLE table_name_11 (result VARCHAR, opponent VARCHAR) ### Question: Opponent of igor samoilenco had what result? ### Answer: SELECT result FROM table_name_11 WHERE opponent = "igor samoilenco"
Score of 33-22 had what round?
CREATE TABLE table_name_14 (round VARCHAR, score VARCHAR)
SELECT round FROM table_name_14 WHERE score = "33-22"
### Context: CREATE TABLE table_name_14 (round VARCHAR, score VARCHAR) ### Question: Score of 33-22 had what round? ### Answer: SELECT round FROM table_name_14 WHERE score = "33-22"
Round of first had what opponent?
CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR)
SELECT opponent FROM table_name_75 WHERE round = "first"
### Context: CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR) ### Question: Round of first had what opponent? ### Answer: SELECT opponent FROM table_name_75 WHERE round = "first"
Result of win, and a Score of 33-22 involved what event?
CREATE TABLE table_name_4 (event VARCHAR, result VARCHAR, score VARCHAR)
SELECT event FROM table_name_4 WHERE result = "win" AND score = "33-22"
### Context: CREATE TABLE table_name_4 (event VARCHAR, result VARCHAR, score VARCHAR) ### Question: Result of win, and a Score of 33-22 involved what event? ### Answer: SELECT event FROM table_name_4 WHERE result = "win" AND score = "33-22"
What were the lowest points of game 60?
CREATE TABLE table_name_99 (points INTEGER, game VARCHAR)
SELECT MIN(points) FROM table_name_99 WHERE game = 60
### Context: CREATE TABLE table_name_99 (points INTEGER, game VARCHAR) ### Question: What were the lowest points of game 60? ### Answer: SELECT MIN(points) FROM table_name_99 WHERE game = 60
What championship had Francesca Schiavone in the finals?
CREATE TABLE table_name_81 (championship VARCHAR, opponent_in_the_final VARCHAR)
SELECT championship FROM table_name_81 WHERE opponent_in_the_final = "francesca schiavone"
### Context: CREATE TABLE table_name_81 (championship VARCHAR, opponent_in_the_final VARCHAR) ### Question: What championship had Francesca Schiavone in the finals? ### Answer: SELECT championship FROM table_name_81 WHERE opponent_in_the_final = "francesca schiavone"
What is the total number of national titles for the team with doane tigers as the mascot?
CREATE TABLE table_name_2 (national_titles VARCHAR, mascot VARCHAR)
SELECT COUNT(national_titles) FROM table_name_2 WHERE mascot = "doane tigers"
### Context: CREATE TABLE table_name_2 (national_titles VARCHAR, mascot VARCHAR) ### Question: What is the total number of national titles for the team with doane tigers as the mascot? ### Answer: SELECT COUNT(national_titles) FROM table_name_2 WHERE mascot = "doane tigers"
Which year's crew is varsity 8+ when the record is 7-3?
CREATE TABLE table_name_63 (year VARCHAR, crew VARCHAR, record VARCHAR)
SELECT year FROM table_name_63 WHERE crew = "varsity 8+" AND record = "7-3"
### Context: CREATE TABLE table_name_63 (year VARCHAR, crew VARCHAR, record VARCHAR) ### Question: Which year's crew is varsity 8+ when the record is 7-3? ### Answer: SELECT year FROM table_name_63 WHERE crew = "varsity 8+" AND record = "7-3"
What is the total number of win % when John Gartin is coach, the crew is varsity 8+, and the year is 2005?
CREATE TABLE table_name_78 (win__percentage INTEGER, year VARCHAR, coach VARCHAR, crew VARCHAR)
SELECT SUM(win__percentage) FROM table_name_78 WHERE coach = "john gartin" AND crew = "varsity 8+" AND year = "2005"
### Context: CREATE TABLE table_name_78 (win__percentage INTEGER, year VARCHAR, coach VARCHAR, crew VARCHAR) ### Question: What is the total number of win % when John Gartin is coach, the crew is varsity 8+, and the year is 2005? ### Answer: SELECT SUM(win__percentage) FROM table_name_78 WHERE coach = "john gartin" AND crew = "varsity 8+" AND year = "2005"
What is the largest win percentage when John Gartin is coach, the record is 11-0, and the year is 2009?
CREATE TABLE table_name_80 (win__percentage INTEGER, year VARCHAR, coach VARCHAR, record VARCHAR)
SELECT MAX(win__percentage) FROM table_name_80 WHERE coach = "john gartin" AND record = "11-0" AND year = "2009"
### Context: CREATE TABLE table_name_80 (win__percentage INTEGER, year VARCHAR, coach VARCHAR, record VARCHAR) ### Question: What is the largest win percentage when John Gartin is coach, the record is 11-0, and the year is 2009? ### Answer: SELECT MAX(win__percentage) FROM table_name_80 WHERE coach = "john gartin" AND record = "11-0" AND year = "2009"
What is the total of win percentages when the year is 2008 and the crew is varsity 8+?
CREATE TABLE table_name_74 (win__percentage INTEGER, year VARCHAR, crew VARCHAR)
SELECT SUM(win__percentage) FROM table_name_74 WHERE year = "2008" AND crew = "varsity 8+"
### Context: CREATE TABLE table_name_74 (win__percentage INTEGER, year VARCHAR, crew VARCHAR) ### Question: What is the total of win percentages when the year is 2008 and the crew is varsity 8+? ### Answer: SELECT SUM(win__percentage) FROM table_name_74 WHERE year = "2008" AND crew = "varsity 8+"
What is the pick number for the tight end who was picked after round 6?
CREATE TABLE table_name_67 (pick VARCHAR, round VARCHAR, position VARCHAR)
SELECT COUNT(pick) FROM table_name_67 WHERE round > 6 AND position = "tight end"
### Context: CREATE TABLE table_name_67 (pick VARCHAR, round VARCHAR, position VARCHAR) ### Question: What is the pick number for the tight end who was picked after round 6? ### Answer: SELECT COUNT(pick) FROM table_name_67 WHERE round > 6 AND position = "tight end"