question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the lowest round for the player whose position is guard and had a pick number smaller than 144?
CREATE TABLE table_name_84 (round INTEGER, position VARCHAR, pick VARCHAR)
SELECT MIN(round) FROM table_name_84 WHERE position = "guard" AND pick < 144
### Context: CREATE TABLE table_name_84 (round INTEGER, position VARCHAR, pick VARCHAR) ### Question: What is the lowest round for the player whose position is guard and had a pick number smaller than 144? ### Answer: SELECT MIN(round) FROM table_name_84 WHERE position = "guard" AND pick < 144
What was the position of terry jones whose pick number was after 256?
CREATE TABLE table_name_59 (position VARCHAR, pick VARCHAR, player VARCHAR)
SELECT position FROM table_name_59 WHERE pick > 256 AND player = "terry jones"
### Context: CREATE TABLE table_name_59 (position VARCHAR, pick VARCHAR, player VARCHAR) ### Question: What was the position of terry jones whose pick number was after 256? ### Answer: SELECT position FROM table_name_59 WHERE pick > 256 AND player = "terry jones"
Which Loss has a Record of 30-32?
CREATE TABLE table_name_85 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_85 WHERE record = "30-32"
### Context: CREATE TABLE table_name_85 (loss VARCHAR, record VARCHAR) ### Question: Which Loss has a Record of 30-32? ### Answer: SELECT loss FROM table_name_85 WHERE record = "30-32"
Which Attendance is the highest one that has a Record of 37-38?
CREATE TABLE table_name_45 (attendance INTEGER, record VARCHAR)
SELECT MAX(attendance) FROM table_name_45 WHERE record = "37-38"
### Context: CREATE TABLE table_name_45 (attendance INTEGER, record VARCHAR) ### Question: Which Attendance is the highest one that has a Record of 37-38? ### Answer: SELECT MAX(attendance) FROM table_name_45 WHERE record = "37-38"
Which Score has a Loss of buehrle (7-2)?
CREATE TABLE table_name_91 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_91 WHERE loss = "buehrle (7-2)"
### Context: CREATE TABLE table_name_91 (score VARCHAR, loss VARCHAR) ### Question: Which Score has a Loss of buehrle (7-2)? ### Answer: SELECT score FROM table_name_91 WHERE loss = "buehrle (7-2)"
Which Overall is the average one that has a Pick # larger than 7, and a Round larger than 4, and a Name of glen howe?
CREATE TABLE table_name_30 (overall INTEGER, name VARCHAR, pick__number VARCHAR, round VARCHAR)
SELECT AVG(overall) FROM table_name_30 WHERE pick__number > 7 AND round > 4 AND name = "glen howe"
### Context: CREATE TABLE table_name_30 (overall INTEGER, name VARCHAR, pick__number VARCHAR, round VARCHAR) ### Question: Which Overall is the average one that has a Pick # larger than 7, and a Round larger than 4, and a Name of glen howe? ### Answer: SELECT AVG(overall) FROM table_name_30 WHERE pick__number > 7 AND round > 4 AND name = "glen howe"
Which Round is the lowest one that has a Pick # larger than 10, and a Position of tight end, and an Overall smaller than 132?
CREATE TABLE table_name_97 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR)
SELECT MIN(round) FROM table_name_97 WHERE pick__number > 10 AND position = "tight end" AND overall < 132
### Context: CREATE TABLE table_name_97 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR) ### Question: Which Round is the lowest one that has a Pick # larger than 10, and a Position of tight end, and an Overall smaller than 132? ### Answer: SELECT MIN(round) FROM table_name_97 WHERE pick__number > 10 AND position = "tight end" AND overall < 132
Which Round is the highest one that has an Overall of 32, and a Pick # smaller than 4?
CREATE TABLE table_name_85 (round INTEGER, overall VARCHAR, pick__number VARCHAR)
SELECT MAX(round) FROM table_name_85 WHERE overall = 32 AND pick__number < 4
### Context: CREATE TABLE table_name_85 (round INTEGER, overall VARCHAR, pick__number VARCHAR) ### Question: Which Round is the highest one that has an Overall of 32, and a Pick # smaller than 4? ### Answer: SELECT MAX(round) FROM table_name_85 WHERE overall = 32 AND pick__number < 4
How many Picks have a Round larger than 8, and a College of fresno state?
CREATE TABLE table_name_4 (pick__number VARCHAR, round VARCHAR, college VARCHAR)
SELECT COUNT(pick__number) FROM table_name_4 WHERE round > 8 AND college = "fresno state"
### Context: CREATE TABLE table_name_4 (pick__number VARCHAR, round VARCHAR, college VARCHAR) ### Question: How many Picks have a Round larger than 8, and a College of fresno state? ### Answer: SELECT COUNT(pick__number) FROM table_name_4 WHERE round > 8 AND college = "fresno state"
Which Overall is the highest one that has a College of oklahoma, and a Pick # smaller than 4?
CREATE TABLE table_name_19 (overall INTEGER, college VARCHAR, pick__number VARCHAR)
SELECT MAX(overall) FROM table_name_19 WHERE college = "oklahoma" AND pick__number < 4
### Context: CREATE TABLE table_name_19 (overall INTEGER, college VARCHAR, pick__number VARCHAR) ### Question: Which Overall is the highest one that has a College of oklahoma, and a Pick # smaller than 4? ### Answer: SELECT MAX(overall) FROM table_name_19 WHERE college = "oklahoma" AND pick__number < 4
What is the result of the match on 30 July 2004?
CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_78 WHERE date = "30 july 2004"
### Context: CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR) ### Question: What is the result of the match on 30 July 2004? ### Answer: SELECT result FROM table_name_78 WHERE date = "30 july 2004"
What is the result of the match on 3 March 2004?
CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_60 WHERE date = "3 march 2004"
### Context: CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR) ### Question: What is the result of the match on 3 March 2004? ### Answer: SELECT result FROM table_name_60 WHERE date = "3 march 2004"
What is the score of the friendly match?
CREATE TABLE table_name_63 (score VARCHAR, competition VARCHAR)
SELECT score FROM table_name_63 WHERE competition = "friendly match"
### Context: CREATE TABLE table_name_63 (score VARCHAR, competition VARCHAR) ### Question: What is the score of the friendly match? ### Answer: SELECT score FROM table_name_63 WHERE competition = "friendly match"
Which Week had a Result of w 10-0, and an Attendance smaller than 58,571?
CREATE TABLE table_name_5 (week VARCHAR, result VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_5 WHERE result = "w 10-0" AND attendance < 58 OFFSET 571
### Context: CREATE TABLE table_name_5 (week VARCHAR, result VARCHAR, attendance VARCHAR) ### Question: Which Week had a Result of w 10-0, and an Attendance smaller than 58,571? ### Answer: SELECT COUNT(week) FROM table_name_5 WHERE result = "w 10-0" AND attendance < 58 OFFSET 571
Which Week had a Result of w 23-17?
CREATE TABLE table_name_58 (week INTEGER, result VARCHAR)
SELECT SUM(week) FROM table_name_58 WHERE result = "w 23-17"
### Context: CREATE TABLE table_name_58 (week INTEGER, result VARCHAR) ### Question: Which Week had a Result of w 23-17? ### Answer: SELECT SUM(week) FROM table_name_58 WHERE result = "w 23-17"
What was the Attendance on october 2, 1977?
CREATE TABLE table_name_48 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_48 WHERE date = "october 2, 1977"
### Context: CREATE TABLE table_name_48 (attendance VARCHAR, date VARCHAR) ### Question: What was the Attendance on october 2, 1977? ### Answer: SELECT attendance FROM table_name_48 WHERE date = "october 2, 1977"
Bronze of 2, and a Silver smaller than 0 then what is the sum of the gold?
CREATE TABLE table_name_99 (gold INTEGER, bronze VARCHAR, silver VARCHAR)
SELECT SUM(gold) FROM table_name_99 WHERE bronze = 2 AND silver < 0
### Context: CREATE TABLE table_name_99 (gold INTEGER, bronze VARCHAR, silver VARCHAR) ### Question: Bronze of 2, and a Silver smaller than 0 then what is the sum of the gold? ### Answer: SELECT SUM(gold) FROM table_name_99 WHERE bronze = 2 AND silver < 0
Smaller than 4, and a Silver larger than 0, and a Rank of 3, and a Bronze smaller than 6 then what is the sum of the gold?
CREATE TABLE table_name_77 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)
SELECT SUM(total) FROM table_name_77 WHERE gold < 4 AND silver > 0 AND rank = "3" AND bronze < 6
### Context: CREATE TABLE table_name_77 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR) ### Question: Smaller than 4, and a Silver larger than 0, and a Rank of 3, and a Bronze smaller than 6 then what is the sum of the gold? ### Answer: SELECT SUM(total) FROM table_name_77 WHERE gold < 4 AND silver > 0 AND rank = "3" AND bronze < 6
Total larger than 3, and a Rank of 4, and a Silver larger than 0 has what average gold?
CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR)
SELECT AVG(gold) FROM table_name_2 WHERE total > 3 AND rank = "4" AND silver > 0
### Context: CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR) ### Question: Total larger than 3, and a Rank of 4, and a Silver larger than 0 has what average gold? ### Answer: SELECT AVG(gold) FROM table_name_2 WHERE total > 3 AND rank = "4" AND silver > 0
Total smaller than 10, and a Gold larger than 1 then what is the lowest silver?
CREATE TABLE table_name_86 (silver INTEGER, total VARCHAR, gold VARCHAR)
SELECT MIN(silver) FROM table_name_86 WHERE total < 10 AND gold > 1
### Context: CREATE TABLE table_name_86 (silver INTEGER, total VARCHAR, gold VARCHAR) ### Question: Total smaller than 10, and a Gold larger than 1 then what is the lowest silver? ### Answer: SELECT MIN(silver) FROM table_name_86 WHERE total < 10 AND gold > 1
What was the date of the week 9 game?
CREATE TABLE table_name_76 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_76 WHERE week = 9
### Context: CREATE TABLE table_name_76 (date VARCHAR, week VARCHAR) ### Question: What was the date of the week 9 game? ### Answer: SELECT date FROM table_name_76 WHERE week = 9
What class has over 0 wins and 42 points?
CREATE TABLE table_name_13 (class VARCHAR, wins VARCHAR, points VARCHAR)
SELECT class FROM table_name_13 WHERE wins > 0 AND points = 42
### Context: CREATE TABLE table_name_13 (class VARCHAR, wins VARCHAR, points VARCHAR) ### Question: What class has over 0 wins and 42 points? ### Answer: SELECT class FROM table_name_13 WHERE wins > 0 AND points = 42
What team was the bike with a 350cc class, over 2 points, and 1 win?
CREATE TABLE table_name_47 (team VARCHAR, wins VARCHAR, class VARCHAR, points VARCHAR)
SELECT team FROM table_name_47 WHERE class = "350cc" AND points > 2 AND wins = 1
### Context: CREATE TABLE table_name_47 (team VARCHAR, wins VARCHAR, class VARCHAR, points VARCHAR) ### Question: What team was the bike with a 350cc class, over 2 points, and 1 win? ### Answer: SELECT team FROM table_name_47 WHERE class = "350cc" AND points > 2 AND wins = 1
What is the earliest year associated with 0 wins and 42 points?
CREATE TABLE table_name_22 (year INTEGER, wins VARCHAR, points VARCHAR)
SELECT MIN(year) FROM table_name_22 WHERE wins > 0 AND points = 42
### Context: CREATE TABLE table_name_22 (year INTEGER, wins VARCHAR, points VARCHAR) ### Question: What is the earliest year associated with 0 wins and 42 points? ### Answer: SELECT MIN(year) FROM table_name_22 WHERE wins > 0 AND points = 42
What Nationality has the Player of Marcus Walker?
CREATE TABLE table_name_19 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_19 WHERE player = "marcus walker"
### Context: CREATE TABLE table_name_19 (nationality VARCHAR, player VARCHAR) ### Question: What Nationality has the Player of Marcus Walker? ### Answer: SELECT nationality FROM table_name_19 WHERE player = "marcus walker"
What Season is listed for the Player of Jon Stefansson?
CREATE TABLE table_name_82 (season VARCHAR, player VARCHAR)
SELECT season FROM table_name_82 WHERE player = "jon stefansson"
### Context: CREATE TABLE table_name_82 (season VARCHAR, player VARCHAR) ### Question: What Season is listed for the Player of Jon Stefansson? ### Answer: SELECT season FROM table_name_82 WHERE player = "jon stefansson"
Which Team has the Player of A.J. Moye?
CREATE TABLE table_name_81 (team VARCHAR, player VARCHAR)
SELECT team FROM table_name_81 WHERE player = "a.j. moye"
### Context: CREATE TABLE table_name_81 (team VARCHAR, player VARCHAR) ### Question: Which Team has the Player of A.J. Moye? ### Answer: SELECT team FROM table_name_81 WHERE player = "a.j. moye"
What Position does the Team of KR and the Player of Marcus Walker have listed?
CREATE TABLE table_name_8 (position VARCHAR, team VARCHAR, player VARCHAR)
SELECT position FROM table_name_8 WHERE team = "kr" AND player = "marcus walker"
### Context: CREATE TABLE table_name_8 (position VARCHAR, team VARCHAR, player VARCHAR) ### Question: What Position does the Team of KR and the Player of Marcus Walker have listed? ### Answer: SELECT position FROM table_name_8 WHERE team = "kr" AND player = "marcus walker"
What building is in ljubljana, proposed in 2010, and has 15 floors?
CREATE TABLE table_name_21 (name VARCHAR, floors VARCHAR, location VARCHAR, year_proposed VARCHAR)
SELECT name FROM table_name_21 WHERE location = "ljubljana" AND year_proposed = "2010" AND floors = "15"
### Context: CREATE TABLE table_name_21 (name VARCHAR, floors VARCHAR, location VARCHAR, year_proposed VARCHAR) ### Question: What building is in ljubljana, proposed in 2010, and has 15 floors? ### Answer: SELECT name FROM table_name_21 WHERE location = "ljubljana" AND year_proposed = "2010" AND floors = "15"
What is the Revenue per capita for Vermont?
CREATE TABLE table_name_2 (revenue_per_capita VARCHAR, state VARCHAR)
SELECT revenue_per_capita FROM table_name_2 WHERE state = "vermont"
### Context: CREATE TABLE table_name_2 (revenue_per_capita VARCHAR, state VARCHAR) ### Question: What is the Revenue per capita for Vermont? ### Answer: SELECT revenue_per_capita FROM table_name_2 WHERE state = "vermont"
What state has a Net contribution per capita of $-171?
CREATE TABLE table_name_67 (state VARCHAR, net_contribution_per_capita VARCHAR)
SELECT state FROM table_name_67 WHERE net_contribution_per_capita = "$-171"
### Context: CREATE TABLE table_name_67 (state VARCHAR, net_contribution_per_capita VARCHAR) ### Question: What state has a Net contribution per capita of $-171? ### Answer: SELECT state FROM table_name_67 WHERE net_contribution_per_capita = "$-171"
Who is the PBA team with Mlqu college?
CREATE TABLE table_name_68 (pba_team VARCHAR, college VARCHAR)
SELECT pba_team FROM table_name_68 WHERE college = "mlqu"
### Context: CREATE TABLE table_name_68 (pba_team VARCHAR, college VARCHAR) ### Question: Who is the PBA team with Mlqu college? ### Answer: SELECT pba_team FROM table_name_68 WHERE college = "mlqu"
Who is the player with the PBA team of Barangay Ginebra Kings?
CREATE TABLE table_name_11 (player VARCHAR, pba_team VARCHAR)
SELECT player FROM table_name_11 WHERE pba_team = "barangay ginebra kings"
### Context: CREATE TABLE table_name_11 (player VARCHAR, pba_team VARCHAR) ### Question: Who is the player with the PBA team of Barangay Ginebra Kings? ### Answer: SELECT player FROM table_name_11 WHERE pba_team = "barangay ginebra kings"
Who was the opponent on April 28?
CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_60 WHERE date = "april 28"
### Context: CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on April 28? ### Answer: SELECT opponent FROM table_name_60 WHERE date = "april 28"
What is the highest position the album Where we belong, which had an issue date higher than 9, had?
CREATE TABLE table_name_14 (highest_position VARCHAR, issue_date VARCHAR, album_title VARCHAR)
SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = "where we belong"
### Context: CREATE TABLE table_name_14 (highest_position VARCHAR, issue_date VARCHAR, album_title VARCHAR) ### Question: What is the highest position the album Where we belong, which had an issue date higher than 9, had? ### Answer: SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = "where we belong"
What is the highest position Talk on Corners, which had an issue date greater than 1, had?
CREATE TABLE table_name_29 (highest_position VARCHAR, album_title VARCHAR, issue_date VARCHAR)
SELECT COUNT(highest_position) FROM table_name_29 WHERE album_title = "talk on corners" AND issue_date > 1
### Context: CREATE TABLE table_name_29 (highest_position VARCHAR, album_title VARCHAR, issue_date VARCHAR) ### Question: What is the highest position Talk on Corners, which had an issue date greater than 1, had? ### Answer: SELECT COUNT(highest_position) FROM table_name_29 WHERE album_title = "talk on corners" AND issue_date > 1
What is the highest sales All Saints had?
CREATE TABLE table_name_51 (sales INTEGER, album_title VARCHAR)
SELECT MAX(sales) FROM table_name_51 WHERE album_title = "all saints"
### Context: CREATE TABLE table_name_51 (sales INTEGER, album_title VARCHAR) ### Question: What is the highest sales All Saints had? ### Answer: SELECT MAX(sales) FROM table_name_51 WHERE album_title = "all saints"
Who is the Driver that has Car Model Commodore VS?
CREATE TABLE table_name_26 (driver VARCHAR, car_model VARCHAR)
SELECT driver FROM table_name_26 WHERE car_model = "commodore vs"
### Context: CREATE TABLE table_name_26 (driver VARCHAR, car_model VARCHAR) ### Question: Who is the Driver that has Car Model Commodore VS? ### Answer: SELECT driver FROM table_name_26 WHERE car_model = "commodore vs"
What Car Model has the Manufacturer of Saab, and Driver Dean Randle?
CREATE TABLE table_name_35 (car_model VARCHAR, manufacturer VARCHAR, driver VARCHAR)
SELECT car_model FROM table_name_35 WHERE manufacturer = "saab" AND driver = "dean randle"
### Context: CREATE TABLE table_name_35 (car_model VARCHAR, manufacturer VARCHAR, driver VARCHAR) ### Question: What Car Model has the Manufacturer of Saab, and Driver Dean Randle? ### Answer: SELECT car_model FROM table_name_35 WHERE manufacturer = "saab" AND driver = "dean randle"
Who is the Driver with the Team of P & L Mechanical Services?
CREATE TABLE table_name_1 (driver VARCHAR, team VARCHAR)
SELECT driver FROM table_name_1 WHERE team = "p & l mechanical services"
### Context: CREATE TABLE table_name_1 (driver VARCHAR, team VARCHAR) ### Question: Who is the Driver with the Team of P & L Mechanical Services? ### Answer: SELECT driver FROM table_name_1 WHERE team = "p & l mechanical services"
What Car Model has the Engine of Ford 6.0 V8?
CREATE TABLE table_name_19 (car_model VARCHAR, engine VARCHAR)
SELECT car_model FROM table_name_19 WHERE engine = "ford 6.0 v8"
### Context: CREATE TABLE table_name_19 (car_model VARCHAR, engine VARCHAR) ### Question: What Car Model has the Engine of Ford 6.0 V8? ### Answer: SELECT car_model FROM table_name_19 WHERE engine = "ford 6.0 v8"
What Team has the Engine of Chevrolet 6.0 V8, the Manufacturer of Opel, and the Driver Chris Jackson?
CREATE TABLE table_name_51 (team VARCHAR, driver VARCHAR, engine VARCHAR, manufacturer VARCHAR)
SELECT team FROM table_name_51 WHERE engine = "chevrolet 6.0 v8" AND manufacturer = "opel" AND driver = "chris jackson"
### Context: CREATE TABLE table_name_51 (team VARCHAR, driver VARCHAR, engine VARCHAR, manufacturer VARCHAR) ### Question: What Team has the Engine of Chevrolet 6.0 V8, the Manufacturer of Opel, and the Driver Chris Jackson? ### Answer: SELECT team FROM table_name_51 WHERE engine = "chevrolet 6.0 v8" AND manufacturer = "opel" AND driver = "chris jackson"
What is the Segment A entry for the episode that has an entry of Diesel filters for Segment D?
CREATE TABLE table_name_91 (segment_a VARCHAR, segment_d VARCHAR)
SELECT segment_a FROM table_name_91 WHERE segment_d = "diesel filters"
### Context: CREATE TABLE table_name_91 (segment_a VARCHAR, segment_d VARCHAR) ### Question: What is the Segment A entry for the episode that has an entry of Diesel filters for Segment D? ### Answer: SELECT segment_a FROM table_name_91 WHERE segment_d = "diesel filters"
What is the series episode number that is larger than 262 and has a Segment A entry of Aluminium s canoe?
CREATE TABLE table_name_60 (series_ep VARCHAR, episode VARCHAR, segment_a VARCHAR)
SELECT series_ep FROM table_name_60 WHERE episode > 262 AND segment_a = "aluminium s canoe"
### Context: CREATE TABLE table_name_60 (series_ep VARCHAR, episode VARCHAR, segment_a VARCHAR) ### Question: What is the series episode number that is larger than 262 and has a Segment A entry of Aluminium s canoe? ### Answer: SELECT series_ep FROM table_name_60 WHERE episode > 262 AND segment_a = "aluminium s canoe"
Which First elected has a District of south carolina 2?
CREATE TABLE table_name_53 (first_elected INTEGER, district VARCHAR)
SELECT MIN(first_elected) FROM table_name_53 WHERE district = "south carolina 2"
### Context: CREATE TABLE table_name_53 (first_elected INTEGER, district VARCHAR) ### Question: Which First elected has a District of south carolina 2? ### Answer: SELECT MIN(first_elected) FROM table_name_53 WHERE district = "south carolina 2"
Which Incumbent has a First elected larger than 1884?
CREATE TABLE table_name_58 (incumbent VARCHAR, first_elected INTEGER)
SELECT incumbent FROM table_name_58 WHERE first_elected > 1884
### Context: CREATE TABLE table_name_58 (incumbent VARCHAR, first_elected INTEGER) ### Question: Which Incumbent has a First elected larger than 1884? ### Answer: SELECT incumbent FROM table_name_58 WHERE first_elected > 1884
What is the English title with a Director named ang lee?
CREATE TABLE table_name_30 (english_title VARCHAR, director VARCHAR)
SELECT english_title FROM table_name_30 WHERE director = "ang lee"
### Context: CREATE TABLE table_name_30 (english_title VARCHAR, director VARCHAR) ### Question: What is the English title with a Director named ang lee? ### Answer: SELECT english_title FROM table_name_30 WHERE director = "ang lee"
What is the Original title with a Country that is canada?
CREATE TABLE table_name_55 (original_title VARCHAR, country VARCHAR)
SELECT original_title FROM table_name_55 WHERE country = "canada"
### Context: CREATE TABLE table_name_55 (original_title VARCHAR, country VARCHAR) ### Question: What is the Original title with a Country that is canada? ### Answer: SELECT original_title FROM table_name_55 WHERE country = "canada"
Which Architecture and modelling has a Unit test of no, and a Projects templates of limited?
CREATE TABLE table_name_5 (architecture_and_modelling VARCHAR, unit_test VARCHAR, projects_templates VARCHAR)
SELECT architecture_and_modelling FROM table_name_5 WHERE unit_test = "no" AND projects_templates = "limited"
### Context: CREATE TABLE table_name_5 (architecture_and_modelling VARCHAR, unit_test VARCHAR, projects_templates VARCHAR) ### Question: Which Architecture and modelling has a Unit test of no, and a Projects templates of limited? ### Answer: SELECT architecture_and_modelling FROM table_name_5 WHERE unit_test = "no" AND projects_templates = "limited"
which MSDN integration has a Load testing of no, and a Test impact analysis of no?
CREATE TABLE table_name_16 (msdn_integration VARCHAR, load_testing VARCHAR, test_impact_analysis VARCHAR)
SELECT msdn_integration FROM table_name_16 WHERE load_testing = "no" AND test_impact_analysis = "no"
### Context: CREATE TABLE table_name_16 (msdn_integration VARCHAR, load_testing VARCHAR, test_impact_analysis VARCHAR) ### Question: which MSDN integration has a Load testing of no, and a Test impact analysis of no? ### Answer: SELECT msdn_integration FROM table_name_16 WHERE load_testing = "no" AND test_impact_analysis = "no"
Which Unit test has a MSDN integration of full, and a Projects templates of yes?
CREATE TABLE table_name_76 (unit_test VARCHAR, msdn_integration VARCHAR, projects_templates VARCHAR)
SELECT unit_test FROM table_name_76 WHERE msdn_integration = "full" AND projects_templates = "yes"
### Context: CREATE TABLE table_name_76 (unit_test VARCHAR, msdn_integration VARCHAR, projects_templates VARCHAR) ### Question: Which Unit test has a MSDN integration of full, and a Projects templates of yes? ### Answer: SELECT unit_test FROM table_name_76 WHERE msdn_integration = "full" AND projects_templates = "yes"
Which Intelli Trace has a No Extension and Windows Phone development of no?
CREATE TABLE table_name_10 (intellitrace VARCHAR, extensions VARCHAR, windows_phone_development VARCHAR)
SELECT intellitrace FROM table_name_10 WHERE extensions = "no" AND windows_phone_development = "no"
### Context: CREATE TABLE table_name_10 (intellitrace VARCHAR, extensions VARCHAR, windows_phone_development VARCHAR) ### Question: Which Intelli Trace has a No Extension and Windows Phone development of no? ### Answer: SELECT intellitrace FROM table_name_10 WHERE extensions = "no" AND windows_phone_development = "no"
Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no?
CREATE TABLE table_name_39 (projects_templates VARCHAR, test_impact_analysis VARCHAR, intellitrace VARCHAR, windows_phone_development VARCHAR)
SELECT projects_templates FROM table_name_39 WHERE intellitrace = "no" AND windows_phone_development = "yes" AND test_impact_analysis = "no"
### Context: CREATE TABLE table_name_39 (projects_templates VARCHAR, test_impact_analysis VARCHAR, intellitrace VARCHAR, windows_phone_development VARCHAR) ### Question: Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no? ### Answer: SELECT projects_templates FROM table_name_39 WHERE intellitrace = "no" AND windows_phone_development = "yes" AND test_impact_analysis = "no"
Which MSDN integration has a IntelliTrace of yes?
CREATE TABLE table_name_12 (msdn_integration VARCHAR, intellitrace VARCHAR)
SELECT msdn_integration FROM table_name_12 WHERE intellitrace = "yes"
### Context: CREATE TABLE table_name_12 (msdn_integration VARCHAR, intellitrace VARCHAR) ### Question: Which MSDN integration has a IntelliTrace of yes? ### Answer: SELECT msdn_integration FROM table_name_12 WHERE intellitrace = "yes"
During what Years of Operation was the location prospect 33 prospect ave?
CREATE TABLE table_name_35 (years_of_operation VARCHAR, location VARCHAR)
SELECT years_of_operation FROM table_name_35 WHERE location = "prospect 33 prospect ave"
### Context: CREATE TABLE table_name_35 (years_of_operation VARCHAR, location VARCHAR) ### Question: During what Years of Operation was the location prospect 33 prospect ave? ### Answer: SELECT years_of_operation FROM table_name_35 WHERE location = "prospect 33 prospect ave"
What is the location of the ivy club?
CREATE TABLE table_name_82 (location VARCHAR, name VARCHAR)
SELECT location FROM table_name_82 WHERE name = "the ivy club"
### Context: CREATE TABLE table_name_82 (location VARCHAR, name VARCHAR) ### Question: What is the location of the ivy club? ### Answer: SELECT location FROM table_name_82 WHERE name = "the ivy club"
What is the Sign-in/Bicker at wash50 on washington rd?
CREATE TABLE table_name_27 (sign_in_bicker VARCHAR, location VARCHAR)
SELECT sign_in_bicker FROM table_name_27 WHERE location = "wash50 on washington rd"
### Context: CREATE TABLE table_name_27 (sign_in_bicker VARCHAR, location VARCHAR) ### Question: What is the Sign-in/Bicker at wash50 on washington rd? ### Answer: SELECT sign_in_bicker FROM table_name_27 WHERE location = "wash50 on washington rd"
When was the Clubhouse built with a Sign-in/Bicker of bicker, and Named cannon club?
CREATE TABLE table_name_3 (year_clubhouse_constructed VARCHAR, sign_in_bicker VARCHAR, name VARCHAR)
SELECT year_clubhouse_constructed FROM table_name_3 WHERE sign_in_bicker = "bicker" AND name = "cannon club"
### Context: CREATE TABLE table_name_3 (year_clubhouse_constructed VARCHAR, sign_in_bicker VARCHAR, name VARCHAR) ### Question: When was the Clubhouse built with a Sign-in/Bicker of bicker, and Named cannon club? ### Answer: SELECT year_clubhouse_constructed FROM table_name_3 WHERE sign_in_bicker = "bicker" AND name = "cannon club"
Which Sign-in/Bicker is at of wash50 on washington rd?
CREATE TABLE table_name_56 (sign_in_bicker VARCHAR, location VARCHAR)
SELECT sign_in_bicker FROM table_name_56 WHERE location = "wash50 on washington rd"
### Context: CREATE TABLE table_name_56 (sign_in_bicker VARCHAR, location VARCHAR) ### Question: Which Sign-in/Bicker is at of wash50 on washington rd? ### Answer: SELECT sign_in_bicker FROM table_name_56 WHERE location = "wash50 on washington rd"
Which Historical Photos were taken at prospect 43 prospect ave?
CREATE TABLE table_name_46 (historical_photos VARCHAR, location VARCHAR)
SELECT historical_photos FROM table_name_46 WHERE location = "prospect 43 prospect ave"
### Context: CREATE TABLE table_name_46 (historical_photos VARCHAR, location VARCHAR) ### Question: Which Historical Photos were taken at prospect 43 prospect ave? ### Answer: SELECT historical_photos FROM table_name_46 WHERE location = "prospect 43 prospect ave"
What is the 1st leg of team 1 Lyon?
CREATE TABLE table_name_26 (team_1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_26 WHERE team_1 = "lyon"
### Context: CREATE TABLE table_name_26 (team_1 VARCHAR) ### Question: What is the 1st leg of team 1 Lyon? ### Answer: SELECT 1 AS st_leg FROM table_name_26 WHERE team_1 = "lyon"
What is the 1st leg of team 1 Liverpool?
CREATE TABLE table_name_24 (team_1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_24 WHERE team_1 = "liverpool"
### Context: CREATE TABLE table_name_24 (team_1 VARCHAR) ### Question: What is the 1st leg of team 1 Liverpool? ### Answer: SELECT 1 AS st_leg FROM table_name_24 WHERE team_1 = "liverpool"
How many events resulted in a top-25 less than 2?
CREATE TABLE table_name_13 (events VARCHAR, top_25 INTEGER)
SELECT COUNT(events) FROM table_name_13 WHERE top_25 < 2
### Context: CREATE TABLE table_name_13 (events VARCHAR, top_25 INTEGER) ### Question: How many events resulted in a top-25 less than 2? ### Answer: SELECT COUNT(events) FROM table_name_13 WHERE top_25 < 2
What is the smallest number of wins for a top-25 value greater than 5 and more than 38 cuts?
CREATE TABLE table_name_52 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR)
SELECT MIN(wins) FROM table_name_52 WHERE top_25 > 5 AND cuts_made > 38
### Context: CREATE TABLE table_name_52 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR) ### Question: What is the smallest number of wins for a top-25 value greater than 5 and more than 38 cuts? ### Answer: SELECT MIN(wins) FROM table_name_52 WHERE top_25 > 5 AND cuts_made > 38
How many bronze medals did Chinese Taipei win with less than 0 gold?
CREATE TABLE table_name_29 (bronze VARCHAR, nation VARCHAR, gold VARCHAR)
SELECT COUNT(bronze) FROM table_name_29 WHERE nation = "chinese taipei" AND gold < 0
### Context: CREATE TABLE table_name_29 (bronze VARCHAR, nation VARCHAR, gold VARCHAR) ### Question: How many bronze medals did Chinese Taipei win with less than 0 gold? ### Answer: SELECT COUNT(bronze) FROM table_name_29 WHERE nation = "chinese taipei" AND gold < 0
How many silver medals had a rank of 3 with bronze larger than 0?
CREATE TABLE table_name_90 (silver VARCHAR, rank VARCHAR, bronze VARCHAR)
SELECT COUNT(silver) FROM table_name_90 WHERE rank = 3 AND bronze > 0
### Context: CREATE TABLE table_name_90 (silver VARCHAR, rank VARCHAR, bronze VARCHAR) ### Question: How many silver medals had a rank of 3 with bronze larger than 0? ### Answer: SELECT COUNT(silver) FROM table_name_90 WHERE rank = 3 AND bronze > 0
How many silver medals does China have?
CREATE TABLE table_name_93 (silver VARCHAR, nation VARCHAR)
SELECT COUNT(silver) FROM table_name_93 WHERE nation = "china"
### Context: CREATE TABLE table_name_93 (silver VARCHAR, nation VARCHAR) ### Question: How many silver medals does China have? ### Answer: SELECT COUNT(silver) FROM table_name_93 WHERE nation = "china"
Which Position has Losses of 11, and a Played larger than 22?
CREATE TABLE table_name_45 (position INTEGER, losses VARCHAR, played VARCHAR)
SELECT SUM(position) FROM table_name_45 WHERE losses = 11 AND played > 22
### Context: CREATE TABLE table_name_45 (position INTEGER, losses VARCHAR, played VARCHAR) ### Question: Which Position has Losses of 11, and a Played larger than 22? ### Answer: SELECT SUM(position) FROM table_name_45 WHERE losses = 11 AND played > 22
How many Wins have a Scored smaller than 24, and a Conceded larger than 25, and Draws larger than 5, and a Position smaller than 9?
CREATE TABLE table_name_89 (wins VARCHAR, position VARCHAR, draws VARCHAR, scored VARCHAR, conceded VARCHAR)
SELECT COUNT(wins) FROM table_name_89 WHERE scored < 24 AND conceded > 25 AND draws > 5 AND position < 9
### Context: CREATE TABLE table_name_89 (wins VARCHAR, position VARCHAR, draws VARCHAR, scored VARCHAR, conceded VARCHAR) ### Question: How many Wins have a Scored smaller than 24, and a Conceded larger than 25, and Draws larger than 5, and a Position smaller than 9? ### Answer: SELECT COUNT(wins) FROM table_name_89 WHERE scored < 24 AND conceded > 25 AND draws > 5 AND position < 9
How many Points has a Position of 8?
CREATE TABLE table_name_45 (points INTEGER, position VARCHAR)
SELECT AVG(points) FROM table_name_45 WHERE position = 8
### Context: CREATE TABLE table_name_45 (points INTEGER, position VARCHAR) ### Question: How many Points has a Position of 8? ### Answer: SELECT AVG(points) FROM table_name_45 WHERE position = 8
How many Wins has a Scored of 27 and Draws smaller than 5?
CREATE TABLE table_name_61 (wins VARCHAR, scored VARCHAR, draws VARCHAR)
SELECT COUNT(wins) FROM table_name_61 WHERE scored = 27 AND draws < 5
### Context: CREATE TABLE table_name_61 (wins VARCHAR, scored VARCHAR, draws VARCHAR) ### Question: How many Wins has a Scored of 27 and Draws smaller than 5? ### Answer: SELECT COUNT(wins) FROM table_name_61 WHERE scored = 27 AND draws < 5
Which Position has Draws smaller than 7 and a Played larger than 22?
CREATE TABLE table_name_16 (position INTEGER, draws VARCHAR, played VARCHAR)
SELECT AVG(position) FROM table_name_16 WHERE draws < 7 AND played > 22
### Context: CREATE TABLE table_name_16 (position INTEGER, draws VARCHAR, played VARCHAR) ### Question: Which Position has Draws smaller than 7 and a Played larger than 22? ### Answer: SELECT AVG(position) FROM table_name_16 WHERE draws < 7 AND played > 22
Which Played has a Scored larger than 25 and a Position of 1, and Draws smaller than 5?
CREATE TABLE table_name_85 (played INTEGER, draws VARCHAR, scored VARCHAR, position VARCHAR)
SELECT MAX(played) FROM table_name_85 WHERE scored > 25 AND position = 1 AND draws < 5
### Context: CREATE TABLE table_name_85 (played INTEGER, draws VARCHAR, scored VARCHAR, position VARCHAR) ### Question: Which Played has a Scored larger than 25 and a Position of 1, and Draws smaller than 5? ### Answer: SELECT MAX(played) FROM table_name_85 WHERE scored > 25 AND position = 1 AND draws < 5
When was the player with 51 caps from a Club/province of clermont born?
CREATE TABLE table_name_4 (date_of_birth__age_ VARCHAR, caps VARCHAR, club_province VARCHAR)
SELECT date_of_birth__age_ FROM table_name_4 WHERE caps = 51 AND club_province = "clermont"
### Context: CREATE TABLE table_name_4 (date_of_birth__age_ VARCHAR, caps VARCHAR, club_province VARCHAR) ### Question: When was the player with 51 caps from a Club/province of clermont born? ### Answer: SELECT date_of_birth__age_ FROM table_name_4 WHERE caps = 51 AND club_province = "clermont"
How many Episode Counts have an Actor of liz carr?
CREATE TABLE table_name_13 (episode_count VARCHAR, actor VARCHAR)
SELECT COUNT(episode_count) FROM table_name_13 WHERE actor = "liz carr"
### Context: CREATE TABLE table_name_13 (episode_count VARCHAR, actor VARCHAR) ### Question: How many Episode Counts have an Actor of liz carr? ### Answer: SELECT COUNT(episode_count) FROM table_name_13 WHERE actor = "liz carr"
Which Years have a Character of dr trevor stewart?
CREATE TABLE table_name_54 (years VARCHAR, character VARCHAR)
SELECT years FROM table_name_54 WHERE character = "dr trevor stewart"
### Context: CREATE TABLE table_name_54 (years VARCHAR, character VARCHAR) ### Question: Which Years have a Character of dr trevor stewart? ### Answer: SELECT years FROM table_name_54 WHERE character = "dr trevor stewart"
Which Series has an Actor of tom ward?
CREATE TABLE table_name_92 (series VARCHAR, actor VARCHAR)
SELECT series FROM table_name_92 WHERE actor = "tom ward"
### Context: CREATE TABLE table_name_92 (series VARCHAR, actor VARCHAR) ### Question: Which Series has an Actor of tom ward? ### Answer: SELECT series FROM table_name_92 WHERE actor = "tom ward"
How many picks involved the player Joe Germanese?
CREATE TABLE table_name_59 (pick__number INTEGER, player VARCHAR)
SELECT SUM(pick__number) FROM table_name_59 WHERE player = "joe germanese"
### Context: CREATE TABLE table_name_59 (pick__number INTEGER, player VARCHAR) ### Question: How many picks involved the player Joe Germanese? ### Answer: SELECT SUM(pick__number) FROM table_name_59 WHERE player = "joe germanese"
Which player's pick number was 25?
CREATE TABLE table_name_79 (player VARCHAR, pick__number VARCHAR)
SELECT player FROM table_name_79 WHERE pick__number = 25
### Context: CREATE TABLE table_name_79 (player VARCHAR, pick__number VARCHAR) ### Question: Which player's pick number was 25? ### Answer: SELECT player FROM table_name_79 WHERE pick__number = 25
What team did the Montreal Canadiens visit when the record was 0-3?
CREATE TABLE table_name_3 (home VARCHAR, visitor VARCHAR, record VARCHAR)
SELECT home FROM table_name_3 WHERE visitor = "montreal canadiens" AND record = "0-3"
### Context: CREATE TABLE table_name_3 (home VARCHAR, visitor VARCHAR, record VARCHAR) ### Question: What team did the Montreal Canadiens visit when the record was 0-3? ### Answer: SELECT home FROM table_name_3 WHERE visitor = "montreal canadiens" AND record = "0-3"
What was the score on April 23?
CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_5 WHERE date = "april 23"
### Context: CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR) ### Question: What was the score on April 23? ### Answer: SELECT score FROM table_name_5 WHERE date = "april 23"
What team did the Chicago Black Hawks visit on April 20?
CREATE TABLE table_name_92 (home VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT home FROM table_name_92 WHERE visitor = "chicago black hawks" AND date = "april 20"
### Context: CREATE TABLE table_name_92 (home VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What team did the Chicago Black Hawks visit on April 20? ### Answer: SELECT home FROM table_name_92 WHERE visitor = "chicago black hawks" AND date = "april 20"
How many Games have a Drawn larger than 0, and a Lost of 1?
CREATE TABLE table_name_94 (games VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT COUNT(games) FROM table_name_94 WHERE drawn > 0 AND lost = 1
### Context: CREATE TABLE table_name_94 (games VARCHAR, drawn VARCHAR, lost VARCHAR) ### Question: How many Games have a Drawn larger than 0, and a Lost of 1? ### Answer: SELECT COUNT(games) FROM table_name_94 WHERE drawn > 0 AND lost = 1
Which Points have a Drawn larger than 0, and a Lost larger than 1?
CREATE TABLE table_name_38 (points INTEGER, drawn VARCHAR, lost VARCHAR)
SELECT AVG(points) FROM table_name_38 WHERE drawn > 0 AND lost > 1
### Context: CREATE TABLE table_name_38 (points INTEGER, drawn VARCHAR, lost VARCHAR) ### Question: Which Points have a Drawn larger than 0, and a Lost larger than 1? ### Answer: SELECT AVG(points) FROM table_name_38 WHERE drawn > 0 AND lost > 1
Which Drawn has a Lost larger than 0, and Points smaller than 11, and Games smaller than 7?
CREATE TABLE table_name_98 (drawn INTEGER, games VARCHAR, lost VARCHAR, points VARCHAR)
SELECT AVG(drawn) FROM table_name_98 WHERE lost > 0 AND points < 11 AND games < 7
### Context: CREATE TABLE table_name_98 (drawn INTEGER, games VARCHAR, lost VARCHAR, points VARCHAR) ### Question: Which Drawn has a Lost larger than 0, and Points smaller than 11, and Games smaller than 7? ### Answer: SELECT AVG(drawn) FROM table_name_98 WHERE lost > 0 AND points < 11 AND games < 7
What is the percentage of the liberal party with less than 25 percent of seats?
CREATE TABLE table_name_20 (percentage VARCHAR, party VARCHAR, percent_of_seats VARCHAR)
SELECT COUNT(percentage) FROM table_name_20 WHERE party = "liberal" AND percent_of_seats < 25
### Context: CREATE TABLE table_name_20 (percentage VARCHAR, party VARCHAR, percent_of_seats VARCHAR) ### Question: What is the percentage of the liberal party with less than 25 percent of seats? ### Answer: SELECT COUNT(percentage) FROM table_name_20 WHERE party = "liberal" AND percent_of_seats < 25
Which party won less than 21 seats, has 0 percent of seats, and 69757 votes cast?
CREATE TABLE table_name_94 (party VARCHAR, votes_cast VARCHAR, seats_won VARCHAR, percent_of_seats VARCHAR)
SELECT party FROM table_name_94 WHERE seats_won < 21 AND percent_of_seats = 0 AND votes_cast = 69757
### Context: CREATE TABLE table_name_94 (party VARCHAR, votes_cast VARCHAR, seats_won VARCHAR, percent_of_seats VARCHAR) ### Question: Which party won less than 21 seats, has 0 percent of seats, and 69757 votes cast? ### Answer: SELECT party FROM table_name_94 WHERE seats_won < 21 AND percent_of_seats = 0 AND votes_cast = 69757
Can you tell me the Date that has the Game of 2?
CREATE TABLE table_name_51 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_51 WHERE game = 2
### Context: CREATE TABLE table_name_51 (date VARCHAR, game VARCHAR) ### Question: Can you tell me the Date that has the Game of 2? ### Answer: SELECT date FROM table_name_51 WHERE game = 2
When the date is July 8, and the score is 8-12, who is the opponent?
CREATE TABLE table_name_78 (opponent VARCHAR, date VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_78 WHERE date = "july 8" AND score = "8-12"
### Context: CREATE TABLE table_name_78 (opponent VARCHAR, date VARCHAR, score VARCHAR) ### Question: When the date is July 8, and the score is 8-12, who is the opponent? ### Answer: SELECT opponent FROM table_name_78 WHERE date = "july 8" AND score = "8-12"
When the Loss is Johnson (4-12), what is the date?
CREATE TABLE table_name_9 (date VARCHAR, loss VARCHAR)
SELECT date FROM table_name_9 WHERE loss = "johnson (4-12)"
### Context: CREATE TABLE table_name_9 (date VARCHAR, loss VARCHAR) ### Question: When the Loss is Johnson (4-12), what is the date? ### Answer: SELECT date FROM table_name_9 WHERE loss = "johnson (4-12)"
What date is associated with the Loss of Farrell (6-13)?
CREATE TABLE table_name_20 (date VARCHAR, loss VARCHAR)
SELECT date FROM table_name_20 WHERE loss = "farrell (6-13)"
### Context: CREATE TABLE table_name_20 (date VARCHAR, loss VARCHAR) ### Question: What date is associated with the Loss of Farrell (6-13)? ### Answer: SELECT date FROM table_name_20 WHERE loss = "farrell (6-13)"
Which opponent has the score of 0-3?
CREATE TABLE table_name_55 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_55 WHERE score = "0-3"
### Context: CREATE TABLE table_name_55 (opponent VARCHAR, score VARCHAR) ### Question: Which opponent has the score of 0-3? ### Answer: SELECT opponent FROM table_name_55 WHERE score = "0-3"
What is the Total of kyrgyzstan with a Silver smaller than 0?
CREATE TABLE table_name_97 (total INTEGER, nation VARCHAR, silver VARCHAR)
SELECT AVG(total) FROM table_name_97 WHERE nation = "kyrgyzstan" AND silver < 0
### Context: CREATE TABLE table_name_97 (total INTEGER, nation VARCHAR, silver VARCHAR) ### Question: What is the Total of kyrgyzstan with a Silver smaller than 0? ### Answer: SELECT AVG(total) FROM table_name_97 WHERE nation = "kyrgyzstan" AND silver < 0
What is the Total that has a number of Nation and a Gold smaller than 16?
CREATE TABLE table_name_96 (total INTEGER, nation VARCHAR, gold VARCHAR)
SELECT MIN(total) FROM table_name_96 WHERE nation = "total" AND gold < 16
### Context: CREATE TABLE table_name_96 (total INTEGER, nation VARCHAR, gold VARCHAR) ### Question: What is the Total that has a number of Nation and a Gold smaller than 16? ### Answer: SELECT MIN(total) FROM table_name_96 WHERE nation = "total" AND gold < 16
Which Rank has a Silver larger than 1 and a Total larger than 13?
CREATE TABLE table_name_95 (rank VARCHAR, silver VARCHAR, total VARCHAR)
SELECT rank FROM table_name_95 WHERE silver > 1 AND total > 13
### Context: CREATE TABLE table_name_95 (rank VARCHAR, silver VARCHAR, total VARCHAR) ### Question: Which Rank has a Silver larger than 1 and a Total larger than 13? ### Answer: SELECT rank FROM table_name_95 WHERE silver > 1 AND total > 13
How many Silvers that have a Rank of 2?
CREATE TABLE table_name_2 (silver VARCHAR, rank VARCHAR)
SELECT COUNT(silver) FROM table_name_2 WHERE rank = "2"
### Context: CREATE TABLE table_name_2 (silver VARCHAR, rank VARCHAR) ### Question: How many Silvers that have a Rank of 2? ### Answer: SELECT COUNT(silver) FROM table_name_2 WHERE rank = "2"
What was the previous conference for the school that joined in 2000 with a millers mascot?
CREATE TABLE table_name_93 (previous_conference VARCHAR, year_joined VARCHAR, mascot VARCHAR)
SELECT previous_conference FROM table_name_93 WHERE year_joined = 2000 AND mascot = "millers"
### Context: CREATE TABLE table_name_93 (previous_conference VARCHAR, year_joined VARCHAR, mascot VARCHAR) ### Question: What was the previous conference for the school that joined in 2000 with a millers mascot? ### Answer: SELECT previous_conference FROM table_name_93 WHERE year_joined = 2000 AND mascot = "millers"
What is the name of the college that is from a round greater than 3 with Gillis Wilson playing?
CREATE TABLE table_name_85 (college VARCHAR, round VARCHAR, player VARCHAR)
SELECT college FROM table_name_85 WHERE round > 3 AND player = "gillis wilson"
### Context: CREATE TABLE table_name_85 (college VARCHAR, round VARCHAR, player VARCHAR) ### Question: What is the name of the college that is from a round greater than 3 with Gillis Wilson playing? ### Answer: SELECT college FROM table_name_85 WHERE round > 3 AND player = "gillis wilson"
What is average round of Auburn College?
CREATE TABLE table_name_46 (round INTEGER, college VARCHAR)
SELECT AVG(round) FROM table_name_46 WHERE college = "auburn"
### Context: CREATE TABLE table_name_46 (round INTEGER, college VARCHAR) ### Question: What is average round of Auburn College? ### Answer: SELECT AVG(round) FROM table_name_46 WHERE college = "auburn"
Which Top 10 is the lowest one that has Winnings of $405,300, and an Avg Start smaller than 30?
CREATE TABLE table_name_86 (top_10 INTEGER, winnings VARCHAR, avg_start VARCHAR)
SELECT MIN(top_10) FROM table_name_86 WHERE winnings = "$405,300" AND avg_start < 30
### Context: CREATE TABLE table_name_86 (top_10 INTEGER, winnings VARCHAR, avg_start VARCHAR) ### Question: Which Top 10 is the lowest one that has Winnings of $405,300, and an Avg Start smaller than 30? ### Answer: SELECT MIN(top_10) FROM table_name_86 WHERE winnings = "$405,300" AND avg_start < 30