question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Who were the winner and nominees in 2001?
CREATE TABLE table_name_27 (winner_nominee_s_ VARCHAR, year VARCHAR)
SELECT winner_nominee_s_ FROM table_name_27 WHERE year = 2001
### Context: CREATE TABLE table_name_27 (winner_nominee_s_ VARCHAR, year VARCHAR) ### Question: Who were the winner and nominees in 2001? ### Answer: SELECT winner_nominee_s_ FROM table_name_27 WHERE year = 2001
Who is nominated for the film Rugrats Go Wild?
CREATE TABLE table_name_44 (winner_nominee_s_ VARCHAR, result VARCHAR, film VARCHAR)
SELECT winner_nominee_s_ FROM table_name_44 WHERE result = "nominated" AND film = "rugrats go wild"
### Context: CREATE TABLE table_name_44 (winner_nominee_s_ VARCHAR, result VARCHAR, film VARCHAR) ### Question: Who is nominated for the film Rugrats Go Wild? ### Answer: SELECT winner_nominee_s_ FROM table_name_44 WHERE result = "nominated" AND film = "rugrats go wild"
How many goals did he score with under 26 appearances for werder bremen?
CREATE TABLE table_name_87 (goals VARCHAR, apps VARCHAR, club VARCHAR)
SELECT COUNT(goals) FROM table_name_87 WHERE apps < 26 AND club = "werder bremen"
### Context: CREATE TABLE table_name_87 (goals VARCHAR, apps VARCHAR, club VARCHAR) ### Question: How many goals did he score with under 26 appearances for werder bremen? ### Answer: SELECT COUNT(goals) FROM table_name_87 WHERE apps < 26 AND club = "werder bremen"
How many goals did he have in the bundesliga with under 7 appearances?
CREATE TABLE table_name_32 (goals INTEGER, competition VARCHAR, apps VARCHAR)
SELECT AVG(goals) FROM table_name_32 WHERE competition = "bundesliga" AND apps < 7
### Context: CREATE TABLE table_name_32 (goals INTEGER, competition VARCHAR, apps VARCHAR) ### Question: How many goals did he have in the bundesliga with under 7 appearances? ### Answer: SELECT AVG(goals) FROM table_name_32 WHERE competition = "bundesliga" AND apps < 7
What season did he have 7 appearances?
CREATE TABLE table_name_91 (season VARCHAR, apps VARCHAR)
SELECT season FROM table_name_91 WHERE apps = 7
### Context: CREATE TABLE table_name_91 (season VARCHAR, apps VARCHAR) ### Question: What season did he have 7 appearances? ### Answer: SELECT season FROM table_name_91 WHERE apps = 7
What is the to par for the score 73-71=144?
CREATE TABLE table_name_71 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_71 WHERE score = 73 - 71 = 144
### Context: CREATE TABLE table_name_71 (to_par VARCHAR, score VARCHAR) ### Question: What is the to par for the score 73-71=144? ### Answer: SELECT to_par FROM table_name_71 WHERE score = 73 - 71 = 144
What area did Julius Boros play at?
CREATE TABLE table_name_92 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_92 WHERE player = "julius boros"
### Context: CREATE TABLE table_name_92 (place VARCHAR, player VARCHAR) ### Question: What area did Julius Boros play at? ### Answer: SELECT place FROM table_name_92 WHERE player = "julius boros"
What country has a score of 74-70=144
CREATE TABLE table_name_2 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_2 WHERE score = 74 - 70 = 144
### Context: CREATE TABLE table_name_2 (country VARCHAR, score VARCHAR) ### Question: What country has a score of 74-70=144 ### Answer: SELECT country FROM table_name_2 WHERE score = 74 - 70 = 144
Which of the Canterbury has a Central District of 276* M.D. Crowe & P.S. Briasco V (C) 1986/87?
CREATE TABLE table_name_67 (canterbury VARCHAR, central_districts VARCHAR)
SELECT canterbury FROM table_name_67 WHERE central_districts = "276* m.d. crowe & p.s. briasco v (c) 1986/87"
### Context: CREATE TABLE table_name_67 (canterbury VARCHAR, central_districts VARCHAR) ### Question: Which of the Canterbury has a Central District of 276* M.D. Crowe & P.S. Briasco V (C) 1986/87? ### Answer: SELECT canterbury FROM table_name_67 WHERE central_districts = "276* m.d. crowe & p.s. briasco v (c) 1986/87"
What is Auckland thats got Otago of 184 R.C. Blunt & W. Hawksworth V (C) 1931/32?
CREATE TABLE table_name_5 (auckland VARCHAR, otago VARCHAR)
SELECT auckland FROM table_name_5 WHERE otago = "184 r.c. blunt & w. hawksworth v (c) 1931/32"
### Context: CREATE TABLE table_name_5 (auckland VARCHAR, otago VARCHAR) ### Question: What is Auckland thats got Otago of 184 R.C. Blunt & W. Hawksworth V (C) 1931/32? ### Answer: SELECT auckland FROM table_name_5 WHERE otago = "184 r.c. blunt & w. hawksworth v (c) 1931/32"
What tournament was after 2009?
CREATE TABLE table_name_8 (tournament VARCHAR, year INTEGER)
SELECT tournament FROM table_name_8 WHERE year > 2009
### Context: CREATE TABLE table_name_8 (tournament VARCHAR, year INTEGER) ### Question: What tournament was after 2009? ### Answer: SELECT tournament FROM table_name_8 WHERE year > 2009
What event was held in Chihuahua, Mexico?
CREATE TABLE table_name_16 (event VARCHAR, venue VARCHAR)
SELECT event FROM table_name_16 WHERE venue = "chihuahua, mexico"
### Context: CREATE TABLE table_name_16 (event VARCHAR, venue VARCHAR) ### Question: What event was held in Chihuahua, Mexico? ### Answer: SELECT event FROM table_name_16 WHERE venue = "chihuahua, mexico"
Can you tell me the sun of Population that has the Country/Region of hong kong, and the Rank smaller than 2?
CREATE TABLE table_name_45 (population INTEGER, country_region VARCHAR, rank VARCHAR)
SELECT SUM(population) FROM table_name_45 WHERE country_region = "hong kong" AND rank < 2
### Context: CREATE TABLE table_name_45 (population INTEGER, country_region VARCHAR, rank VARCHAR) ### Question: Can you tell me the sun of Population that has the Country/Region of hong kong, and the Rank smaller than 2? ### Answer: SELECT SUM(population) FROM table_name_45 WHERE country_region = "hong kong" AND rank < 2
Who is the manager with the Hewlett-Packard shirt sponsor?
CREATE TABLE table_name_72 (manager_1 VARCHAR, shirt_sponsor VARCHAR)
SELECT manager_1 FROM table_name_72 WHERE shirt_sponsor = "hewlett-packard"
### Context: CREATE TABLE table_name_72 (manager_1 VARCHAR, shirt_sponsor VARCHAR) ### Question: Who is the manager with the Hewlett-Packard shirt sponsor? ### Answer: SELECT manager_1 FROM table_name_72 WHERE shirt_sponsor = "hewlett-packard"
Who is the captain of the team that has a kit manufacturer of Fox Leisure?
CREATE TABLE table_name_30 (captain VARCHAR, kit_manufacturer VARCHAR)
SELECT captain FROM table_name_30 WHERE kit_manufacturer = "fox leisure"
### Context: CREATE TABLE table_name_30 (captain VARCHAR, kit_manufacturer VARCHAR) ### Question: Who is the captain of the team that has a kit manufacturer of Fox Leisure? ### Answer: SELECT captain FROM table_name_30 WHERE kit_manufacturer = "fox leisure"
One2one is the shirt sponsor for the captain of what team?
CREATE TABLE table_name_79 (captain VARCHAR, shirt_sponsor VARCHAR)
SELECT captain FROM table_name_79 WHERE shirt_sponsor = "one2one"
### Context: CREATE TABLE table_name_79 (captain VARCHAR, shirt_sponsor VARCHAR) ### Question: One2one is the shirt sponsor for the captain of what team? ### Answer: SELECT captain FROM table_name_79 WHERE shirt_sponsor = "one2one"
What company is the kit manufacturer that Gareth Southgate belongs to?
CREATE TABLE table_name_50 (kit_manufacturer VARCHAR, captain VARCHAR)
SELECT kit_manufacturer FROM table_name_50 WHERE captain = "gareth southgate"
### Context: CREATE TABLE table_name_50 (kit_manufacturer VARCHAR, captain VARCHAR) ### Question: What company is the kit manufacturer that Gareth Southgate belongs to? ### Answer: SELECT kit_manufacturer FROM table_name_50 WHERE captain = "gareth southgate"
for the tournament of world amateur championship what was the result in 2010?
CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR)
SELECT result FROM table_name_81 WHERE year = 2010 AND tournament = "world amateur championship"
### Context: CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR) ### Question: for the tournament of world amateur championship what was the result in 2010? ### Answer: SELECT result FROM table_name_81 WHERE year = 2010 AND tournament = "world amateur championship"
Which location had a race that took place on 22 July 2011 and has a rank greater than 8?
CREATE TABLE table_name_45 (location VARCHAR, rank VARCHAR, date VARCHAR)
SELECT location FROM table_name_45 WHERE rank > 8 AND date = "22 july 2011"
### Context: CREATE TABLE table_name_45 (location VARCHAR, rank VARCHAR, date VARCHAR) ### Question: Which location had a race that took place on 22 July 2011 and has a rank greater than 8? ### Answer: SELECT location FROM table_name_45 WHERE rank > 8 AND date = "22 july 2011"
How many gold medals for the school with 2 total medals and under 0 bronzes?
CREATE TABLE table_name_27 (gold_medals VARCHAR, total_medals VARCHAR, bronze_medals VARCHAR)
SELECT COUNT(gold_medals) FROM table_name_27 WHERE total_medals = 2 AND bronze_medals < 0
### Context: CREATE TABLE table_name_27 (gold_medals VARCHAR, total_medals VARCHAR, bronze_medals VARCHAR) ### Question: How many gold medals for the school with 2 total medals and under 0 bronzes? ### Answer: SELECT COUNT(gold_medals) FROM table_name_27 WHERE total_medals = 2 AND bronze_medals < 0
How many gold medals for bellbrook HS with less than 1 silver?
CREATE TABLE table_name_73 (gold_medals VARCHAR, ensemble VARCHAR, silver_medals VARCHAR)
SELECT COUNT(gold_medals) FROM table_name_73 WHERE ensemble = "bellbrook hs" AND silver_medals < 1
### Context: CREATE TABLE table_name_73 (gold_medals VARCHAR, ensemble VARCHAR, silver_medals VARCHAR) ### Question: How many gold medals for bellbrook HS with less than 1 silver? ### Answer: SELECT COUNT(gold_medals) FROM table_name_73 WHERE ensemble = "bellbrook hs" AND silver_medals < 1
How many silvers for a school with 2 golds and over 2 total?
CREATE TABLE table_name_57 (silver_medals VARCHAR, gold_medals VARCHAR, total_medals VARCHAR)
SELECT silver_medals FROM table_name_57 WHERE gold_medals = 2 AND total_medals > 2
### Context: CREATE TABLE table_name_57 (silver_medals VARCHAR, gold_medals VARCHAR, total_medals VARCHAR) ### Question: How many silvers for a school with 2 golds and over 2 total? ### Answer: SELECT silver_medals FROM table_name_57 WHERE gold_medals = 2 AND total_medals > 2
How many gold medals for the school with less than 1 total?
CREATE TABLE table_name_43 (gold_medals VARCHAR, total_medals INTEGER)
SELECT COUNT(gold_medals) FROM table_name_43 WHERE total_medals < 1
### Context: CREATE TABLE table_name_43 (gold_medals VARCHAR, total_medals INTEGER) ### Question: How many gold medals for the school with less than 1 total? ### Answer: SELECT COUNT(gold_medals) FROM table_name_43 WHERE total_medals < 1
What is the entrant for 1967?
CREATE TABLE table_name_76 (entrant VARCHAR, year VARCHAR)
SELECT entrant FROM table_name_76 WHERE year = 1967
### Context: CREATE TABLE table_name_76 (entrant VARCHAR, year VARCHAR) ### Question: What is the entrant for 1967? ### Answer: SELECT entrant FROM table_name_76 WHERE year = 1967
What ist he entrant later than 1963 with an eagle MK1 chassis?
CREATE TABLE table_name_11 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_11 WHERE year > 1963 AND chassis = "eagle mk1"
### Context: CREATE TABLE table_name_11 (entrant VARCHAR, year VARCHAR, chassis VARCHAR) ### Question: What ist he entrant later than 1963 with an eagle MK1 chassis? ### Answer: SELECT entrant FROM table_name_11 WHERE year > 1963 AND chassis = "eagle mk1"
What is the entrant that has 0 points?
CREATE TABLE table_name_65 (entrant VARCHAR, pts VARCHAR)
SELECT entrant FROM table_name_65 WHERE pts = "0"
### Context: CREATE TABLE table_name_65 (entrant VARCHAR, pts VARCHAR) ### Question: What is the entrant that has 0 points? ### Answer: SELECT entrant FROM table_name_65 WHERE pts = "0"
What is the earliest year with 16 points?
CREATE TABLE table_name_33 (year INTEGER, pts VARCHAR)
SELECT MIN(year) FROM table_name_33 WHERE pts = "16"
### Context: CREATE TABLE table_name_33 (year INTEGER, pts VARCHAR) ### Question: What is the earliest year with 16 points? ### Answer: SELECT MIN(year) FROM table_name_33 WHERE pts = "16"
Name the venue for margin less than 66 and opponent of north queensland cowboys
CREATE TABLE table_name_60 (venue VARCHAR, margin VARCHAR, opponent VARCHAR)
SELECT venue FROM table_name_60 WHERE margin < 66 AND opponent = "north queensland cowboys"
### Context: CREATE TABLE table_name_60 (venue VARCHAR, margin VARCHAR, opponent VARCHAR) ### Question: Name the venue for margin less than 66 and opponent of north queensland cowboys ### Answer: SELECT venue FROM table_name_60 WHERE margin < 66 AND opponent = "north queensland cowboys"
Name the sum of year for penrith panthers opponent
CREATE TABLE table_name_93 (year INTEGER, opponent VARCHAR)
SELECT SUM(year) FROM table_name_93 WHERE opponent = "penrith panthers"
### Context: CREATE TABLE table_name_93 (year INTEGER, opponent VARCHAR) ### Question: Name the sum of year for penrith panthers opponent ### Answer: SELECT SUM(year) FROM table_name_93 WHERE opponent = "penrith panthers"
Name the opponent for 1996 at the mt smart stadium venue
CREATE TABLE table_name_52 (opponent VARCHAR, venue VARCHAR, year VARCHAR)
SELECT opponent FROM table_name_52 WHERE venue = "mt smart stadium" AND year = 1996
### Context: CREATE TABLE table_name_52 (opponent VARCHAR, venue VARCHAR, year VARCHAR) ### Question: Name the opponent for 1996 at the mt smart stadium venue ### Answer: SELECT opponent FROM table_name_52 WHERE venue = "mt smart stadium" AND year = 1996
Name the average year for 46 margin
CREATE TABLE table_name_95 (year INTEGER, margin VARCHAR)
SELECT AVG(year) FROM table_name_95 WHERE margin = 46
### Context: CREATE TABLE table_name_95 (year INTEGER, margin VARCHAR) ### Question: Name the average year for 46 margin ### Answer: SELECT AVG(year) FROM table_name_95 WHERE margin = 46
Name the margin for 2002
CREATE TABLE table_name_89 (margin VARCHAR, year VARCHAR)
SELECT margin FROM table_name_89 WHERE year = 2002
### Context: CREATE TABLE table_name_89 (margin VARCHAR, year VARCHAR) ### Question: Name the margin for 2002 ### Answer: SELECT margin FROM table_name_89 WHERE year = 2002
Which Affiliation has an Enrollement larger than 502?
CREATE TABLE table_name_54 (affiliation VARCHAR, enrollment INTEGER)
SELECT affiliation FROM table_name_54 WHERE enrollment > 502
### Context: CREATE TABLE table_name_54 (affiliation VARCHAR, enrollment INTEGER) ### Question: Which Affiliation has an Enrollement larger than 502? ### Answer: SELECT affiliation FROM table_name_54 WHERE enrollment > 502
What School has an Enrollement smaller than 301?
CREATE TABLE table_name_76 (school VARCHAR, enrollment INTEGER)
SELECT school FROM table_name_76 WHERE enrollment < 301
### Context: CREATE TABLE table_name_76 (school VARCHAR, enrollment INTEGER) ### Question: What School has an Enrollement smaller than 301? ### Answer: SELECT school FROM table_name_76 WHERE enrollment < 301
Which Grades has an Enrollment larger htan 443 with a Student body of Co-ed?
CREATE TABLE table_name_36 (grades VARCHAR, enrollment VARCHAR, student_body VARCHAR)
SELECT grades FROM table_name_36 WHERE enrollment > 443 AND student_body = "co-ed"
### Context: CREATE TABLE table_name_36 (grades VARCHAR, enrollment VARCHAR, student_body VARCHAR) ### Question: Which Grades has an Enrollment larger htan 443 with a Student body of Co-ed? ### Answer: SELECT grades FROM table_name_36 WHERE enrollment > 443 AND student_body = "co-ed"
What's the Student Body with an Affiliation of Roman Catholic and has an Enrollment of 502?
CREATE TABLE table_name_27 (student_body VARCHAR, affiliation VARCHAR, enrollment VARCHAR)
SELECT student_body FROM table_name_27 WHERE affiliation = "roman catholic" AND enrollment = 502
### Context: CREATE TABLE table_name_27 (student_body VARCHAR, affiliation VARCHAR, enrollment VARCHAR) ### Question: What's the Student Body with an Affiliation of Roman Catholic and has an Enrollment of 502? ### Answer: SELECT student_body FROM table_name_27 WHERE affiliation = "roman catholic" AND enrollment = 502
What is the average year that has a final Tour position of 54 and a final Vuelta position over 55?
CREATE TABLE table_name_67 (year INTEGER, final_position___tour VARCHAR, final_position___vuelta VARCHAR)
SELECT AVG(year) FROM table_name_67 WHERE final_position___tour = 54 AND final_position___vuelta > 55
### Context: CREATE TABLE table_name_67 (year INTEGER, final_position___tour VARCHAR, final_position___vuelta VARCHAR) ### Question: What is the average year that has a final Tour position of 54 and a final Vuelta position over 55? ### Answer: SELECT AVG(year) FROM table_name_67 WHERE final_position___tour = 54 AND final_position___vuelta > 55
What is the final Vuelta position associated with a final Giro position over 39 and a final Tour position of 90?
CREATE TABLE table_name_26 (final_position___vuelta VARCHAR, final_position___giro VARCHAR, final_position___tour VARCHAR)
SELECT final_position___vuelta FROM table_name_26 WHERE final_position___giro > 39 AND final_position___tour = 90
### Context: CREATE TABLE table_name_26 (final_position___vuelta VARCHAR, final_position___giro VARCHAR, final_position___tour VARCHAR) ### Question: What is the final Vuelta position associated with a final Giro position over 39 and a final Tour position of 90? ### Answer: SELECT final_position___vuelta FROM table_name_26 WHERE final_position___giro > 39 AND final_position___tour = 90
How many Giro positions are associated with the year 1971 and Tour final positions over 50?
CREATE TABLE table_name_45 (final_position___giro VARCHAR, year VARCHAR, final_position___tour VARCHAR)
SELECT COUNT(final_position___giro) FROM table_name_45 WHERE year = 1971 AND final_position___tour > 50
### Context: CREATE TABLE table_name_45 (final_position___giro VARCHAR, year VARCHAR, final_position___tour VARCHAR) ### Question: How many Giro positions are associated with the year 1971 and Tour final positions over 50? ### Answer: SELECT COUNT(final_position___giro) FROM table_name_45 WHERE year = 1971 AND final_position___tour > 50
How many laps did the rider Alex Baldolini take?
CREATE TABLE table_name_94 (laps INTEGER, rider VARCHAR)
SELECT SUM(laps) FROM table_name_94 WHERE rider = "alex baldolini"
### Context: CREATE TABLE table_name_94 (laps INTEGER, rider VARCHAR) ### Question: How many laps did the rider Alex Baldolini take? ### Answer: SELECT SUM(laps) FROM table_name_94 WHERE rider = "alex baldolini"
How many laps were completed in the time of +7.213 with a grid number larger than 7?
CREATE TABLE table_name_85 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR)
SELECT COUNT(laps) FROM table_name_85 WHERE time_retired = "+7.213" AND grid > 7
### Context: CREATE TABLE table_name_85 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR) ### Question: How many laps were completed in the time of +7.213 with a grid number larger than 7? ### Answer: SELECT COUNT(laps) FROM table_name_85 WHERE time_retired = "+7.213" AND grid > 7
What is total number of laps for bikes manufactured by KTM with a time of +3.578 and a grid number larger than 4?
CREATE TABLE table_name_22 (laps VARCHAR, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)
SELECT COUNT(laps) FROM table_name_22 WHERE manufacturer = "ktm" AND time_retired = "+3.578" AND grid > 4
### Context: CREATE TABLE table_name_22 (laps VARCHAR, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR) ### Question: What is total number of laps for bikes manufactured by KTM with a time of +3.578 and a grid number larger than 4? ### Answer: SELECT COUNT(laps) FROM table_name_22 WHERE manufacturer = "ktm" AND time_retired = "+3.578" AND grid > 4
What was the surface for the May 10, 2009 tournament?
CREATE TABLE table_name_91 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_91 WHERE date = "may 10, 2009"
### Context: CREATE TABLE table_name_91 (surface VARCHAR, date VARCHAR) ### Question: What was the surface for the May 10, 2009 tournament? ### Answer: SELECT surface FROM table_name_91 WHERE date = "may 10, 2009"
Which co-driver has fewer than 282 laps and type P tyres?
CREATE TABLE table_name_44 (co_drivers VARCHAR, laps VARCHAR, tyres VARCHAR)
SELECT co_drivers FROM table_name_44 WHERE laps < 282 AND tyres = "p"
### Context: CREATE TABLE table_name_44 (co_drivers VARCHAR, laps VARCHAR, tyres VARCHAR) ### Question: Which co-driver has fewer than 282 laps and type P tyres? ### Answer: SELECT co_drivers FROM table_name_44 WHERE laps < 282 AND tyres = "p"
Which class more recent than 1988 has G tyres?
CREATE TABLE table_name_24 (class VARCHAR, tyres VARCHAR, year VARCHAR)
SELECT class FROM table_name_24 WHERE tyres = "g" AND year > 1988
### Context: CREATE TABLE table_name_24 (class VARCHAR, tyres VARCHAR, year VARCHAR) ### Question: Which class more recent than 1988 has G tyres? ### Answer: SELECT class FROM table_name_24 WHERE tyres = "g" AND year > 1988
What is the greatest number of caps for Bruce Djite?
CREATE TABLE table_name_54 (caps INTEGER, player VARCHAR)
SELECT MAX(caps) FROM table_name_54 WHERE player = "bruce djite"
### Context: CREATE TABLE table_name_54 (caps INTEGER, player VARCHAR) ### Question: What is the greatest number of caps for Bruce Djite? ### Answer: SELECT MAX(caps) FROM table_name_54 WHERE player = "bruce djite"
How many goals were scored by Eugene Galeković?
CREATE TABLE table_name_54 (goals VARCHAR, player VARCHAR)
SELECT goals FROM table_name_54 WHERE player = "eugene galeković"
### Context: CREATE TABLE table_name_54 (goals VARCHAR, player VARCHAR) ### Question: How many goals were scored by Eugene Galeković? ### Answer: SELECT goals FROM table_name_54 WHERE player = "eugene galeković"
How many goals were scored by players with more than 16 caps?
CREATE TABLE table_name_45 (goals VARCHAR, caps INTEGER)
SELECT goals FROM table_name_45 WHERE caps > 16
### Context: CREATE TABLE table_name_45 (goals VARCHAR, caps INTEGER) ### Question: How many goals were scored by players with more than 16 caps? ### Answer: SELECT goals FROM table_name_45 WHERE caps > 16
What is the highest place of a swimmer from the Netherlands?
CREATE TABLE table_name_75 (rank INTEGER, nationality VARCHAR)
SELECT MAX(rank) FROM table_name_75 WHERE nationality = "netherlands"
### Context: CREATE TABLE table_name_75 (rank INTEGER, nationality VARCHAR) ### Question: What is the highest place of a swimmer from the Netherlands? ### Answer: SELECT MAX(rank) FROM table_name_75 WHERE nationality = "netherlands"
Name the authority for te akau with roll less than 254 and decile of 8
CREATE TABLE table_name_64 (authority VARCHAR, area VARCHAR, roll VARCHAR, decile VARCHAR)
SELECT authority FROM table_name_64 WHERE roll < 254 AND decile = "8" AND area = "te akau"
### Context: CREATE TABLE table_name_64 (authority VARCHAR, area VARCHAR, roll VARCHAR, decile VARCHAR) ### Question: Name the authority for te akau with roll less than 254 and decile of 8 ### Answer: SELECT authority FROM table_name_64 WHERE roll < 254 AND decile = "8" AND area = "te akau"
Tell me the name with decile of 6 and roll of 93
CREATE TABLE table_name_63 (name VARCHAR, decile VARCHAR, roll VARCHAR)
SELECT name FROM table_name_63 WHERE decile = "6" AND roll = 93
### Context: CREATE TABLE table_name_63 (name VARCHAR, decile VARCHAR, roll VARCHAR) ### Question: Tell me the name with decile of 6 and roll of 93 ### Answer: SELECT name FROM table_name_63 WHERE decile = "6" AND roll = 93
What is the result of the match on January 26, 2006?
CREATE TABLE table_name_44 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_44 WHERE date = "january 26, 2006"
### Context: CREATE TABLE table_name_44 (result VARCHAR, date VARCHAR) ### Question: What is the result of the match on January 26, 2006? ### Answer: SELECT result FROM table_name_44 WHERE date = "january 26, 2006"
What was the status of Bluetooth for the model that launched after 2004 with a ROM (MiB) of 128 and a Wifi of 802.11b?
CREATE TABLE table_name_5 (bluetooth VARCHAR, wifi VARCHAR, launch_year VARCHAR, rom___mib__ VARCHAR)
SELECT bluetooth FROM table_name_5 WHERE launch_year > 2004 AND rom___mib__ = 128 AND wifi = "802.11b"
### Context: CREATE TABLE table_name_5 (bluetooth VARCHAR, wifi VARCHAR, launch_year VARCHAR, rom___mib__ VARCHAR) ### Question: What was the status of Bluetooth for the model that launched after 2004 with a ROM (MiB) of 128 and a Wifi of 802.11b? ### Answer: SELECT bluetooth FROM table_name_5 WHERE launch_year > 2004 AND rom___mib__ = 128 AND wifi = "802.11b"
What is the RAM (MiB) value for the X30 Mid-Range model?
CREATE TABLE table_name_71 (ram___mib__ VARCHAR, model VARCHAR)
SELECT ram___mib__ FROM table_name_71 WHERE model = "x30 mid-range"
### Context: CREATE TABLE table_name_71 (ram___mib__ VARCHAR, model VARCHAR) ### Question: What is the RAM (MiB) value for the X30 Mid-Range model? ### Answer: SELECT ram___mib__ FROM table_name_71 WHERE model = "x30 mid-range"
How many points did the team with more than 68 games, 4 ties, and more than 272 goals against have?
CREATE TABLE table_name_14 (points INTEGER, goals_against VARCHAR, games VARCHAR, tied VARCHAR)
SELECT SUM(points) FROM table_name_14 WHERE games > 68 AND tied = "4" AND goals_against > 272
### Context: CREATE TABLE table_name_14 (points INTEGER, goals_against VARCHAR, games VARCHAR, tied VARCHAR) ### Question: How many points did the team with more than 68 games, 4 ties, and more than 272 goals against have? ### Answer: SELECT SUM(points) FROM table_name_14 WHERE games > 68 AND tied = "4" AND goals_against > 272
Which event had the time 45.74?
CREATE TABLE table_name_42 (event VARCHAR, time VARCHAR)
SELECT event FROM table_name_42 WHERE time = "45.74"
### Context: CREATE TABLE table_name_42 (event VARCHAR, time VARCHAR) ### Question: Which event had the time 45.74? ### Answer: SELECT event FROM table_name_42 WHERE time = "45.74"
What was the time of December 15, 2010?
CREATE TABLE table_name_3 (time VARCHAR, date VARCHAR)
SELECT time FROM table_name_3 WHERE date = "december 15, 2010"
### Context: CREATE TABLE table_name_3 (time VARCHAR, date VARCHAR) ### Question: What was the time of December 15, 2010? ### Answer: SELECT time FROM table_name_3 WHERE date = "december 15, 2010"
What were the notes for the time 45.74?
CREATE TABLE table_name_89 (notes VARCHAR, time VARCHAR)
SELECT notes FROM table_name_89 WHERE time = "45.74"
### Context: CREATE TABLE table_name_89 (notes VARCHAR, time VARCHAR) ### Question: What were the notes for the time 45.74? ### Answer: SELECT notes FROM table_name_89 WHERE time = "45.74"
What Player has 23 Tries?
CREATE TABLE table_name_61 (player VARCHAR, tries VARCHAR)
SELECT player FROM table_name_61 WHERE tries = 23
### Context: CREATE TABLE table_name_61 (player VARCHAR, tries VARCHAR) ### Question: What Player has 23 Tries? ### Answer: SELECT player FROM table_name_61 WHERE tries = 23
How many Goals did Matt Cook have?
CREATE TABLE table_name_89 (goals VARCHAR, player VARCHAR)
SELECT goals FROM table_name_89 WHERE player = "matt cook"
### Context: CREATE TABLE table_name_89 (goals VARCHAR, player VARCHAR) ### Question: How many Goals did Matt Cook have? ### Answer: SELECT goals FROM table_name_89 WHERE player = "matt cook"
What Full Back Player has 0 Apps?
CREATE TABLE table_name_32 (player VARCHAR, position VARCHAR, apps VARCHAR)
SELECT player FROM table_name_32 WHERE position = "full back" AND apps = 0
### Context: CREATE TABLE table_name_32 (player VARCHAR, position VARCHAR, apps VARCHAR) ### Question: What Full Back Player has 0 Apps? ### Answer: SELECT player FROM table_name_32 WHERE position = "full back" AND apps = 0
With 0 Goals and less than 1 Tries, what is Matt James position?
CREATE TABLE table_name_38 (position VARCHAR, player VARCHAR, goals VARCHAR, tries VARCHAR)
SELECT position FROM table_name_38 WHERE goals = "0" AND tries < 1 AND player = "matt james"
### Context: CREATE TABLE table_name_38 (position VARCHAR, player VARCHAR, goals VARCHAR, tries VARCHAR) ### Question: With 0 Goals and less than 1 Tries, what is Matt James position? ### Answer: SELECT position FROM table_name_38 WHERE goals = "0" AND tries < 1 AND player = "matt james"
What is the earliest round drafted for a University of Southern California player?
CREATE TABLE table_name_91 (round INTEGER, school VARCHAR)
SELECT MIN(round) FROM table_name_91 WHERE school = "university of southern california"
### Context: CREATE TABLE table_name_91 (round INTEGER, school VARCHAR) ### Question: What is the earliest round drafted for a University of Southern California player? ### Answer: SELECT MIN(round) FROM table_name_91 WHERE school = "university of southern california"
What round drafted was the 1b and a Signed of no cardinals - 1969 june?
CREATE TABLE table_name_24 (round VARCHAR, position VARCHAR, signed VARCHAR)
SELECT COUNT(round) FROM table_name_24 WHERE position = "1b" AND signed = "no cardinals - 1969 june"
### Context: CREATE TABLE table_name_24 (round VARCHAR, position VARCHAR, signed VARCHAR) ### Question: What round drafted was the 1b and a Signed of no cardinals - 1969 june? ### Answer: SELECT COUNT(round) FROM table_name_24 WHERE position = "1b" AND signed = "no cardinals - 1969 june"
Which event has an Opponent of akihiro gono, and a Method of decision?
CREATE TABLE table_name_60 (event VARCHAR, opponent VARCHAR, method VARCHAR)
SELECT event FROM table_name_60 WHERE opponent = "akihiro gono" AND method = "decision"
### Context: CREATE TABLE table_name_60 (event VARCHAR, opponent VARCHAR, method VARCHAR) ### Question: Which event has an Opponent of akihiro gono, and a Method of decision? ### Answer: SELECT event FROM table_name_60 WHERE opponent = "akihiro gono" AND method = "decision"
Which location has an Opponent of masanori suda?
CREATE TABLE table_name_84 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_84 WHERE opponent = "masanori suda"
### Context: CREATE TABLE table_name_84 (location VARCHAR, opponent VARCHAR) ### Question: Which location has an Opponent of masanori suda? ### Answer: SELECT location FROM table_name_84 WHERE opponent = "masanori suda"
Which opponent has a Time of 1:34?
CREATE TABLE table_name_46 (opponent VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_46 WHERE time = "1:34"
### Context: CREATE TABLE table_name_46 (opponent VARCHAR, time VARCHAR) ### Question: Which opponent has a Time of 1:34? ### Answer: SELECT opponent FROM table_name_46 WHERE time = "1:34"
Which event resulted in loss with an Opponent of maurice smith?
CREATE TABLE table_name_52 (event VARCHAR, res VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_52 WHERE res = "loss" AND opponent = "maurice smith"
### Context: CREATE TABLE table_name_52 (event VARCHAR, res VARCHAR, opponent VARCHAR) ### Question: Which event resulted in loss with an Opponent of maurice smith? ### Answer: SELECT event FROM table_name_52 WHERE res = "loss" AND opponent = "maurice smith"
What is the winner of gold that also has ↓ 1 in the sport of cycling?
CREATE TABLE table_name_97 (gold VARCHAR, bronze VARCHAR, sport VARCHAR)
SELECT gold FROM table_name_97 WHERE bronze = "↓ 1" AND sport = "cycling"
### Context: CREATE TABLE table_name_97 (gold VARCHAR, bronze VARCHAR, sport VARCHAR) ### Question: What is the winner of gold that also has ↓ 1 in the sport of cycling? ### Answer: SELECT gold FROM table_name_97 WHERE bronze = "↓ 1" AND sport = "cycling"
What is the most recent year that Gulf Racing Middle East won?
CREATE TABLE table_name_91 (year INTEGER, team VARCHAR)
SELECT MAX(year) FROM table_name_91 WHERE team = "gulf racing middle east"
### Context: CREATE TABLE table_name_91 (year INTEGER, team VARCHAR) ### Question: What is the most recent year that Gulf Racing Middle East won? ### Answer: SELECT MAX(year) FROM table_name_91 WHERE team = "gulf racing middle east"
What is the class of the co-driver emanuele pirro jj lehto?
CREATE TABLE table_name_58 (class VARCHAR, co_drivers VARCHAR)
SELECT class FROM table_name_58 WHERE co_drivers = "emanuele pirro jj lehto"
### Context: CREATE TABLE table_name_58 (class VARCHAR, co_drivers VARCHAR) ### Question: What is the class of the co-driver emanuele pirro jj lehto? ### Answer: SELECT class FROM table_name_58 WHERE co_drivers = "emanuele pirro jj lehto"
What was the final position of Arena Motorsports International?
CREATE TABLE table_name_95 (pos VARCHAR, team VARCHAR)
SELECT pos FROM table_name_95 WHERE team = "arena motorsports international"
### Context: CREATE TABLE table_name_95 (pos VARCHAR, team VARCHAR) ### Question: What was the final position of Arena Motorsports International? ### Answer: SELECT pos FROM table_name_95 WHERE team = "arena motorsports international"
Who was the Co-Driver of the winner of 1992's race?
CREATE TABLE table_name_24 (co_drivers VARCHAR, year VARCHAR)
SELECT co_drivers FROM table_name_24 WHERE year = 1992
### Context: CREATE TABLE table_name_24 (co_drivers VARCHAR, year VARCHAR) ### Question: Who was the Co-Driver of the winner of 1992's race? ### Answer: SELECT co_drivers FROM table_name_24 WHERE year = 1992
What is the score in the final with runner-up as the outcome and hard (i) as the surface?
CREATE TABLE table_name_38 (score_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT score_in_the_final FROM table_name_38 WHERE outcome = "runner-up" AND surface = "hard (i)"
### Context: CREATE TABLE table_name_38 (score_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR) ### Question: What is the score in the final with runner-up as the outcome and hard (i) as the surface? ### Answer: SELECT score_in_the_final FROM table_name_38 WHERE outcome = "runner-up" AND surface = "hard (i)"
What is the 1st leg score when US Mbila Nzambi is team 1?
CREATE TABLE table_name_3 (team_1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = "us mbila nzambi"
### Context: CREATE TABLE table_name_3 (team_1 VARCHAR) ### Question: What is the 1st leg score when US Mbila Nzambi is team 1? ### Answer: SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = "us mbila nzambi"
Who was the opponent on May 20?
CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_16 WHERE date = "may 20"
### Context: CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on May 20? ### Answer: SELECT opponent FROM table_name_16 WHERE date = "may 20"
Who took the loss on May 25?
CREATE TABLE table_name_85 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_85 WHERE date = "may 25"
### Context: CREATE TABLE table_name_85 (loss VARCHAR, date VARCHAR) ### Question: Who took the loss on May 25? ### Answer: SELECT loss FROM table_name_85 WHERE date = "may 25"
What was the record after the game that ended in a 2-3 loss?
CREATE TABLE table_name_74 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_74 WHERE score = "2-3"
### Context: CREATE TABLE table_name_74 (record VARCHAR, score VARCHAR) ### Question: What was the record after the game that ended in a 2-3 loss? ### Answer: SELECT record FROM table_name_74 WHERE score = "2-3"
What was the date of the game that had a loss of Politte (0-2)?
CREATE TABLE table_name_25 (date VARCHAR, loss VARCHAR)
SELECT date FROM table_name_25 WHERE loss = "politte (0-2)"
### Context: CREATE TABLE table_name_25 (date VARCHAR, loss VARCHAR) ### Question: What was the date of the game that had a loss of Politte (0-2)? ### Answer: SELECT date FROM table_name_25 WHERE loss = "politte (0-2)"
Who was the opponent at the game that had a loss of Hendrickson (0-1)?
CREATE TABLE table_name_93 (opponent VARCHAR, loss VARCHAR)
SELECT opponent FROM table_name_93 WHERE loss = "hendrickson (0-1)"
### Context: CREATE TABLE table_name_93 (opponent VARCHAR, loss VARCHAR) ### Question: Who was the opponent at the game that had a loss of Hendrickson (0-1)? ### Answer: SELECT opponent FROM table_name_93 WHERE loss = "hendrickson (0-1)"
What was the smallest attendance at a game when the record was 7-15?
CREATE TABLE table_name_7 (attendance INTEGER, record VARCHAR)
SELECT MIN(attendance) FROM table_name_7 WHERE record = "7-15"
### Context: CREATE TABLE table_name_7 (attendance INTEGER, record VARCHAR) ### Question: What was the smallest attendance at a game when the record was 7-15? ### Answer: SELECT MIN(attendance) FROM table_name_7 WHERE record = "7-15"
What was the average attendance at a game when the record was 6-13?
CREATE TABLE table_name_71 (attendance INTEGER, record VARCHAR)
SELECT AVG(attendance) FROM table_name_71 WHERE record = "6-13"
### Context: CREATE TABLE table_name_71 (attendance INTEGER, record VARCHAR) ### Question: What was the average attendance at a game when the record was 6-13? ### Answer: SELECT AVG(attendance) FROM table_name_71 WHERE record = "6-13"
What is the yield, neutrons per fission of the group with decay constants less than 0.301, a half-life of 22.72, and a group number larger than 2?
CREATE TABLE table_name_77 (_neutrons_per_fission VARCHAR, yield INTEGER, group VARCHAR, decay_constant__s_−1__ VARCHAR, half_life__s_ VARCHAR)
SELECT SUM(yield), _neutrons_per_fission FROM table_name_77 WHERE decay_constant__s_−1__ < 0.301 AND half_life__s_ = 22.72 AND group > 2
### Context: CREATE TABLE table_name_77 (_neutrons_per_fission VARCHAR, yield INTEGER, group VARCHAR, decay_constant__s_−1__ VARCHAR, half_life__s_ VARCHAR) ### Question: What is the yield, neutrons per fission of the group with decay constants less than 0.301, a half-life of 22.72, and a group number larger than 2? ### Answer: SELECT SUM(yield), _neutrons_per_fission FROM table_name_77 WHERE decay_constant__s_−1__ < 0.301 AND half_life__s_ = 22.72 AND group > 2
With Round 3 and Pick # over 10, what is the higher Overall number?
CREATE TABLE table_name_38 (overall INTEGER, round VARCHAR, pick__number VARCHAR)
SELECT MAX(overall) FROM table_name_38 WHERE round = 3 AND pick__number > 10
### Context: CREATE TABLE table_name_38 (overall INTEGER, round VARCHAR, pick__number VARCHAR) ### Question: With Round 3 and Pick # over 10, what is the higher Overall number? ### Answer: SELECT MAX(overall) FROM table_name_38 WHERE round = 3 AND pick__number > 10
What is the highest round for College of Nebraska if the Overall is under 190?
CREATE TABLE table_name_18 (round INTEGER, college VARCHAR, overall VARCHAR)
SELECT MAX(round) FROM table_name_18 WHERE college = "nebraska" AND overall < 190
### Context: CREATE TABLE table_name_18 (round INTEGER, college VARCHAR, overall VARCHAR) ### Question: What is the highest round for College of Nebraska if the Overall is under 190? ### Answer: SELECT MAX(round) FROM table_name_18 WHERE college = "nebraska" AND overall < 190
Which college has a Pick # 1, Overall more than one, and Round is 7?
CREATE TABLE table_name_34 (college VARCHAR, round VARCHAR, pick__number VARCHAR, overall VARCHAR)
SELECT college FROM table_name_34 WHERE pick__number = 1 AND overall > 1 AND round = 7
### Context: CREATE TABLE table_name_34 (college VARCHAR, round VARCHAR, pick__number VARCHAR, overall VARCHAR) ### Question: Which college has a Pick # 1, Overall more than one, and Round is 7? ### Answer: SELECT college FROM table_name_34 WHERE pick__number = 1 AND overall > 1 AND round = 7
What was the attendance on 21 August 2004?
CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_43 WHERE date = "21 august 2004"
### Context: CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR) ### Question: What was the attendance on 21 August 2004? ### Answer: SELECT SUM(attendance) FROM table_name_43 WHERE date = "21 august 2004"
What is the average rank of an athlete that holds a time higher than 53.38?
CREATE TABLE table_name_76 (rank INTEGER, time INTEGER)
SELECT AVG(rank) FROM table_name_76 WHERE time > 53.38
### Context: CREATE TABLE table_name_76 (rank INTEGER, time INTEGER) ### Question: What is the average rank of an athlete that holds a time higher than 53.38? ### Answer: SELECT AVG(rank) FROM table_name_76 WHERE time > 53.38
What lane did the swimmer with a time of 52.84 have?
CREATE TABLE table_name_43 (lane INTEGER, time VARCHAR)
SELECT MAX(lane) FROM table_name_43 WHERE time = 52.84
### Context: CREATE TABLE table_name_43 (lane INTEGER, time VARCHAR) ### Question: What lane did the swimmer with a time of 52.84 have? ### Answer: SELECT MAX(lane) FROM table_name_43 WHERE time = 52.84
What lane did the rank 3 swimmer use?
CREATE TABLE table_name_57 (lane INTEGER, rank VARCHAR)
SELECT MAX(lane) FROM table_name_57 WHERE rank = 3
### Context: CREATE TABLE table_name_57 (lane INTEGER, rank VARCHAR) ### Question: What lane did the rank 3 swimmer use? ### Answer: SELECT MAX(lane) FROM table_name_57 WHERE rank = 3
Which opponent played on July 15?
CREATE TABLE table_name_3 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_3 WHERE date = "july 15"
### Context: CREATE TABLE table_name_3 (opponent VARCHAR, date VARCHAR) ### Question: Which opponent played on July 15? ### Answer: SELECT opponent FROM table_name_3 WHERE date = "july 15"
Where has Jimmy Demaret as a player?
CREATE TABLE table_name_94 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_94 WHERE player = "jimmy demaret"
### Context: CREATE TABLE table_name_94 (place VARCHAR, player VARCHAR) ### Question: Where has Jimmy Demaret as a player? ### Answer: SELECT place FROM table_name_94 WHERE player = "jimmy demaret"
How much does it cost for United States and Byron nelson?
CREATE TABLE table_name_94 (money___ VARCHAR, country VARCHAR, player VARCHAR)
SELECT COUNT(money___) AS $__ FROM table_name_94 WHERE country = "united states" AND player = "byron nelson"
### Context: CREATE TABLE table_name_94 (money___ VARCHAR, country VARCHAR, player VARCHAR) ### Question: How much does it cost for United States and Byron nelson? ### Answer: SELECT COUNT(money___) AS $__ FROM table_name_94 WHERE country = "united states" AND player = "byron nelson"
Which Country has a Place of t8 and byron nelson?
CREATE TABLE table_name_11 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT country FROM table_name_11 WHERE place = "t8" AND player = "byron nelson"
### Context: CREATE TABLE table_name_11 (country VARCHAR, place VARCHAR, player VARCHAR) ### Question: Which Country has a Place of t8 and byron nelson? ### Answer: SELECT country FROM table_name_11 WHERE place = "t8" AND player = "byron nelson"
Name the average pop for chūgoku and prefecture of okayama
CREATE TABLE table_name_75 (pop_¹ INTEGER, region VARCHAR, prefecture VARCHAR)
SELECT AVG(pop_¹) FROM table_name_75 WHERE region = "chūgoku" AND prefecture = "okayama"
### Context: CREATE TABLE table_name_75 (pop_¹ INTEGER, region VARCHAR, prefecture VARCHAR) ### Question: Name the average pop for chūgoku and prefecture of okayama ### Answer: SELECT AVG(pop_¹) FROM table_name_75 WHERE region = "chūgoku" AND prefecture = "okayama"
Name the highest pop for tottori
CREATE TABLE table_name_11 (pop_¹ INTEGER, prefecture VARCHAR)
SELECT MAX(pop_¹) FROM table_name_11 WHERE prefecture = "tottori"
### Context: CREATE TABLE table_name_11 (pop_¹ INTEGER, prefecture VARCHAR) ### Question: Name the highest pop for tottori ### Answer: SELECT MAX(pop_¹) FROM table_name_11 WHERE prefecture = "tottori"
Name the sum of pop for shizuoka
CREATE TABLE table_name_13 (pop_¹ INTEGER, prefecture VARCHAR)
SELECT SUM(pop_¹) FROM table_name_13 WHERE prefecture = "shizuoka"
### Context: CREATE TABLE table_name_13 (pop_¹ INTEGER, prefecture VARCHAR) ### Question: Name the sum of pop for shizuoka ### Answer: SELECT SUM(pop_¹) FROM table_name_13 WHERE prefecture = "shizuoka"
Name the total number of pop for ibaraki
CREATE TABLE table_name_10 (pop_¹ VARCHAR, prefecture VARCHAR)
SELECT COUNT(pop_¹) FROM table_name_10 WHERE prefecture = "ibaraki"
### Context: CREATE TABLE table_name_10 (pop_¹ VARCHAR, prefecture VARCHAR) ### Question: Name the total number of pop for ibaraki ### Answer: SELECT COUNT(pop_¹) FROM table_name_10 WHERE prefecture = "ibaraki"
Who is the mascot for Mishawaka?
CREATE TABLE table_name_16 (mascot VARCHAR, location VARCHAR)
SELECT mascot FROM table_name_16 WHERE location = "mishawaka"
### Context: CREATE TABLE table_name_16 (mascot VARCHAR, location VARCHAR) ### Question: Who is the mascot for Mishawaka? ### Answer: SELECT mascot FROM table_name_16 WHERE location = "mishawaka"
Which previous conference is associated with Penn school?
CREATE TABLE table_name_67 (previous_conference VARCHAR, school VARCHAR)
SELECT previous_conference FROM table_name_67 WHERE school = "penn"
### Context: CREATE TABLE table_name_67 (previous_conference VARCHAR, school VARCHAR) ### Question: Which previous conference is associated with Penn school? ### Answer: SELECT previous_conference FROM table_name_67 WHERE school = "penn"