answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT college FROM table_15817998_5 WHERE player = "Jeffrey Simmer"
CREATE TABLE table_15817998_5 (college VARCHAR, player VARCHAR)
What is the college that Jeffrey Simmer plays for?
SELECT MIN(matches) FROM table_15829930_5 WHERE year = 2008
CREATE TABLE table_15829930_5 (matches INTEGER, year VARCHAR)
Name the least matches for year 2008
SELECT MAX(wins) FROM table_15829930_5 WHERE success_rate = "68.75%"
CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR)
Name the maximum wins for 68.75%
SELECT summary FROM table_15829930_5 WHERE success_rate = "68.75%"
CREATE TABLE table_15829930_5 (summary VARCHAR, success_rate VARCHAR)
Name the summary for the success rate for 68.75%
SELECT MIN(tied) FROM table_15829930_5
CREATE TABLE table_15829930_5 (tied INTEGER)
Name the least tied
SELECT MIN(wins) FROM table_15829930_5 WHERE success_rate = "56.25%"
CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR)
Name the least wins of 56.25%
SELECT COUNT(no) FROM table_15827397_1 WHERE name = "City of Birmingham"
CREATE TABLE table_15827397_1 (no VARCHAR, name VARCHAR)
How many locomotives have a name of City of Birmingham
SELECT COUNT(name) FROM table_15827397_1 WHERE livery = "Highland Railway green"
CREATE TABLE table_15827397_1 (name VARCHAR, livery VARCHAR)
How many locomotives have a livery that is highland railway green
SELECT locomotive_type FROM table_15827397_1 WHERE status = "Static display"
CREATE TABLE table_15827397_1 (locomotive_type VARCHAR, status VARCHAR)
Which locomotive type has a status in static display
SELECT MAX(points_against) FROM table_15847691_2 WHERE attendance = 47678
CREATE TABLE table_15847691_2 (points_against INTEGER, attendance VARCHAR)
What is the maximum number of points against when the attendance was 47678?
SELECT COUNT(first_downs) FROM table_15847691_2 WHERE date = "October 23"
CREATE TABLE table_15847691_2 (first_downs VARCHAR, date VARCHAR)
What was the total number of first down on October 23?
SELECT MAX(series__number) FROM table_15838081_3 WHERE writer_s_ = "Giula Sandler"
CREATE TABLE table_15838081_3 (series__number INTEGER, writer_s_ VARCHAR)
Name the most series number for giula sandler
SELECT COUNT(season__number) FROM table_15838081_3 WHERE writer_s_ = "Jeff Truman"
CREATE TABLE table_15838081_3 (season__number VARCHAR, writer_s_ VARCHAR)
Name the number of season number for jeff truman
SELECT MIN(enrollment) FROM table_15851155_1 WHERE school = "Montana Tech of the University of Montana"
CREATE TABLE table_15851155_1 (enrollment INTEGER, school VARCHAR)
Name the minimum enrollment for montana tech of the university of montana
SELECT location FROM table_15851155_1 WHERE control = "Private" AND founded = 1870
CREATE TABLE table_15851155_1 (location VARCHAR, control VARCHAR, founded VARCHAR)
Name the location when control is private and founded is 1870
SELECT directed_by FROM table_15861776_1 WHERE tv_broadcast = "S03E19"
CREATE TABLE table_15861776_1 (directed_by VARCHAR, tv_broadcast VARCHAR)
Who directed the TV broadcast s03e19?
SELECT no_in_series FROM table_15861776_1 WHERE tv_broadcast = "S03E20"
CREATE TABLE table_15861776_1 (no_in_series VARCHAR, tv_broadcast VARCHAR)
What episode in the series is TV broadcast s03e20?
SELECT score FROM table_15869204_6 WHERE game = 31
CREATE TABLE table_15869204_6 (score VARCHAR, game VARCHAR)
WHAT WAS THE SCORE FOR GAME 31?
SELECT team FROM table_15869204_6 WHERE date = "January 9"
CREATE TABLE table_15869204_6 (team VARCHAR, date VARCHAR)
WHO DID THE RAPTORS PLAY ON JANUARY 9?
SELECT name FROM table_1585609_2 WHERE date_of_designation = "2002-04-01"
CREATE TABLE table_1585609_2 (name VARCHAR, date_of_designation VARCHAR)
Name thenames for 2002-04-01
SELECT date_of_designation FROM table_1585609_2 WHERE name = "Kurume"
CREATE TABLE table_1585609_2 (date_of_designation VARCHAR, name VARCHAR)
Name all the date of designations for kurume
SELECT COUNT(japanese) FROM table_1585609_2 WHERE name = "Amagasaki"
CREATE TABLE table_1585609_2 (japanese VARCHAR, name VARCHAR)
Name the total number of japanese for amagasaki
SELECT region FROM table_1585609_2 WHERE prefecture = "Iwate"
CREATE TABLE table_1585609_2 (region VARCHAR, prefecture VARCHAR)
Name the region for iwate
SELECT high_rebounds FROM table_15869204_9 WHERE team = "Chicago"
CREATE TABLE table_15869204_9 (high_rebounds VARCHAR, team VARCHAR)
Who scored the most rebounds in the game against Chicago?
SELECT date FROM table_15872814_5 WHERE high_points = "Jalen Rose (32)"
CREATE TABLE table_15872814_5 (date VARCHAR, high_points VARCHAR)
What were the dates of the games where Jalen Rose (32) had the highest points?
SELECT location_attendance FROM table_15872814_5 WHERE team = "New Orleans"
CREATE TABLE table_15872814_5 (location_attendance VARCHAR, team VARCHAR)
What is the location and total attendance for games played against New Orleans?
SELECT COUNT(team) FROM table_15869204_7 WHERE date = "February 18"
CREATE TABLE table_15869204_7 (team VARCHAR, date VARCHAR)
How many teams are listed for February 18?
SELECT high_rebounds FROM table_15869204_7 WHERE date = "February 24"
CREATE TABLE table_15869204_7 (high_rebounds VARCHAR, date VARCHAR)
What were the high rebounds on February 24?
SELECT score FROM table_15869204_7 WHERE game = 51
CREATE TABLE table_15869204_7 (score VARCHAR, game VARCHAR)
What was the score in game 51?
SELECT score FROM table_15869204_7 WHERE team = "San Antonio"
CREATE TABLE table_15869204_7 (score VARCHAR, team VARCHAR)
What was the score when they played against San Antonio?
SELECT high_points FROM table_15869204_8 WHERE game = 68
CREATE TABLE table_15869204_8 (high_points VARCHAR, game VARCHAR)
Who was the high point scorer in game number 68?
SELECT COUNT(high_assists) FROM table_15873014_3 WHERE team = "New Jersey"
CREATE TABLE table_15873014_3 (high_assists VARCHAR, team VARCHAR)
How many players had the most assists against New Jersey?
SELECT MAX(game) FROM table_15873014_3
CREATE TABLE table_15873014_3 (game INTEGER)
How many games were played in the season?
SELECT team FROM table_15872814_7 WHERE high_assists = "Rafer Alston (5)"
CREATE TABLE table_15872814_7 (team VARCHAR, high_assists VARCHAR)
What team had high assists Rafer Alston (5)?
SELECT high_assists FROM table_15873014_5 WHERE date = "January 3"
CREATE TABLE table_15873014_5 (high_assists VARCHAR, date VARCHAR)
Who has the most assists on January 3?
SELECT rector FROM table_15873547_1 WHERE mascot = "Phoxes"
CREATE TABLE table_15873547_1 (rector VARCHAR, mascot VARCHAR)
Who is the rector of the residence hall who's mascot is the phoxes?
SELECT mascot FROM table_15873547_1 WHERE colors = "Green and Navy"
CREATE TABLE table_15873547_1 (mascot VARCHAR, colors VARCHAR)
What is the mascot with the colors green and navy?
SELECT residence_hall FROM table_15873547_1 WHERE mascot = "Vermin"
CREATE TABLE table_15873547_1 (residence_hall VARCHAR, mascot VARCHAR)
What residence hall has the vermin mascot?
SELECT colors FROM table_15873547_1 WHERE residence_hall = "Howard Hall"
CREATE TABLE table_15873547_1 (colors VARCHAR, residence_hall VARCHAR)
What are the colors of Howard Hall?
SELECT content FROM table_15887683_1 WHERE television_service = "LA7"
CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR)
What is the content of la7 television service?
SELECT content FROM table_15887683_1 WHERE television_service = "Rai 1"
CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR)
What is the content of the rai 1 television service?
SELECT package_option FROM table_15887683_1 WHERE television_service = "Rai 3"
CREATE TABLE table_15887683_1 (package_option VARCHAR, television_service VARCHAR)
What are the package/options when the TV service is rai 3?
SELECT hdtv FROM table_15887683_1 WHERE television_service = "Italia 1"
CREATE TABLE table_15887683_1 (hdtv VARCHAR, television_service VARCHAR)
What high definition television options are available for Italia 1?
SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = "Elite Shopping TV"
CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR)
How many values of HDTV apply when television service is elite shopping tv?
SELECT COUNT(country) FROM table_15887683_16 WHERE content = "arte"
CREATE TABLE table_15887683_16 (country VARCHAR, content VARCHAR)
How many countries have content of arte?
SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = "La Sorgente Sat 1"
CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR)
How many values of HDTV correspond to television service of la sorgente sat 1?
SELECT hdtv FROM table_15887683_16 WHERE n° = 862
CREATE TABLE table_15887683_16 (hdtv VARCHAR, n° VARCHAR)
What values of HDTV correspond to n° of 862?
SELECT content FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND language = "Italian" AND dar = "16:9" AND television_service = "MTV Hits"
CREATE TABLE table_15887683_10 (content VARCHAR, television_service VARCHAR, dar VARCHAR, package_option VARCHAR, language VARCHAR)
Name the content for sky famiglia for italian and dar 16:9 for mtv hits
SELECT MIN(n) AS ° FROM table_15887683_10 WHERE television_service = "myDeejay"
CREATE TABLE table_15887683_10 (n INTEGER, television_service VARCHAR)
Name the least number for mydeejay
SELECT COUNT(package_option) FROM table_15887683_10 WHERE television_service = "Music Box Italia"
CREATE TABLE table_15887683_10 (package_option VARCHAR, television_service VARCHAR)
Name the number of package options for music box italia
SELECT hdtv FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND dar = "16:9" AND television_service = "myDeejay"
CREATE TABLE table_15887683_10 (hdtv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR)
Name the hdtv for sky famiglia and dar 16:9 for mydeejay
SELECT dar FROM table_15887683_10 WHERE television_service = "MTV Rocks"
CREATE TABLE table_15887683_10 (dar VARCHAR, television_service VARCHAR)
Name the dar for mtv rocks
SELECT ppv FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND dar = "16:9" AND television_service = "MTV Dance"
CREATE TABLE table_15887683_10 (ppv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR)
Name the ppv for sky famiglia and dar 16:9 for mtv dance
SELECT dar FROM table_15887683_17 WHERE television_service = "Telenord"
CREATE TABLE table_15887683_17 (dar VARCHAR, television_service VARCHAR)
Name the dar for telenord
SELECT COUNT(hdtv) FROM table_15887683_17 WHERE television_service = "Eurotic TV"
CREATE TABLE table_15887683_17 (hdtv VARCHAR, television_service VARCHAR)
Name the total number of hdtv for eurotic tv
SELECT dar FROM table_15887683_17 WHERE n° = 912
CREATE TABLE table_15887683_17 (dar VARCHAR, n° VARCHAR)
Name the dar for 912
SELECT COUNT(content) FROM table_15887683_19 WHERE television_service = "R-LIGHT"
CREATE TABLE table_15887683_19 (content VARCHAR, television_service VARCHAR)
How many times was something listed under content when the television was R-light?
SELECT ppv FROM table_15887683_19 WHERE television_service = "SCT"
CREATE TABLE table_15887683_19 (ppv VARCHAR, television_service VARCHAR)
Was there PPV when the service was SCT?
SELECT hdtv FROM table_15887683_19 WHERE television_service = "PRIVÈ"
CREATE TABLE table_15887683_19 (hdtv VARCHAR, television_service VARCHAR)
Was there HDTV when the service was Privè?
SELECT language FROM table_15887683_19 WHERE television_service = "ContoTV 5"
CREATE TABLE table_15887683_19 (language VARCHAR, television_service VARCHAR)
In what laguage was Contotv 5?
SELECT content FROM table_15887683_3 WHERE package_option = "Tutti i pacchetti + Sky HD"
CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR)
What's the content of the Tutti i Pacchetti + Sky HD package?
SELECT package_option FROM table_15887683_3 WHERE television_service = "FOX Sports HD"
CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR)
What package offers Fox Sports HD?
SELECT package_option FROM table_15887683_3 WHERE television_service = "Cartello promozionale Sky HD"
CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR)
What packages offer the Cartello Promozionale Sky HD service?
SELECT COUNT(content) FROM table_15887683_3 WHERE package_option = "qualsiasi tranne Sky HD"
CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR)
How many different contents are offered by the Qualsiasi Tranne Sky HD package?
SELECT content FROM table_15887683_3 WHERE n° = 204
CREATE TABLE table_15887683_3 (content VARCHAR, n° VARCHAR)
What's the content offered by the package number 204?
SELECT COUNT(ppv) FROM table_15887683_5 WHERE television_service = "Sky Cinema 1"
CREATE TABLE table_15887683_5 (ppv VARCHAR, television_service VARCHAR)
How many PPV values are listed for when television service Sky Cinema 1?
SELECT dar FROM table_15887683_5 WHERE n° = "336" AND language = "Italian"
CREATE TABLE table_15887683_5 (dar VARCHAR, n° VARCHAR, language VARCHAR)
What DAR is available for n. 336 in Italian?
SELECT n° FROM table_15887683_5 WHERE package_option = "Sky Cinema" AND content = "cinema" AND television_service = "Sky Cinema" + 24
CREATE TABLE table_15887683_5 (n° VARCHAR, television_service VARCHAR, package_option VARCHAR, content VARCHAR)
What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package?
SELECT language FROM table_15887683_5 WHERE television_service = "Sky Cinema Passion" AND n° = "308"
CREATE TABLE table_15887683_5 (language VARCHAR, television_service VARCHAR, n° VARCHAR)
What language is Sky Cinema Passion television service n. 308?
SELECT package_option FROM table_15887683_5 WHERE content = "cinema" AND n° = "333"
CREATE TABLE table_15887683_5 (package_option VARCHAR, content VARCHAR, n° VARCHAR)
What package offers cinema content and is n. 333?
SELECT COUNT(dar) FROM table_15887683_9 WHERE television_service = "Disney Channel" AND n° = 613
CREATE TABLE table_15887683_9 (dar VARCHAR, television_service VARCHAR, n° VARCHAR)
Name the total number of dar for disney channel and number is 613
SELECT country FROM table_15887683_9 WHERE dar = "16:9" AND language = "Italian English" AND television_service = "Disney XD +2"
CREATE TABLE table_15887683_9 (country VARCHAR, television_service VARCHAR, dar VARCHAR, language VARCHAR)
Name the country when dar is 16:9 for italian english for disney xd +2
SELECT player FROM table_15893020_2 WHERE best_bowling = "2/43"
CREATE TABLE table_15893020_2 (player VARCHAR, best_bowling VARCHAR)
Who was the player with a bowling best of 2/43?
SELECT MAX(maidens) FROM table_15893020_2 WHERE best_bowling = "1/13"
CREATE TABLE table_15893020_2 (maidens INTEGER, best_bowling VARCHAR)
What is the highest number of maidens when the bowling best was 1/13?
SELECT overs FROM table_15893020_2 WHERE player = "Oliver Hannon-Dalby"
CREATE TABLE table_15893020_2 (overs VARCHAR, player VARCHAR)
How many overs did Oliver Hannon-Dalby have?
SELECT MAX(5 AS w) FROM table_15893020_2 WHERE average = "21.33"
CREATE TABLE table_15893020_2 (average VARCHAR)
What is the highest number of 5w when there was a 21.33 average?
SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "2040(93%)"
CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)?
SELECT COUNT(country) FROM table_15909409_2 WHERE per_capita_withdrawal__m_3__p_yr_ = 372
CREATE TABLE table_15909409_2 (country VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR)
How many countries had a per capita withdrawal (m 3 /p/yr) of 372?
SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "428(62%)"
CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?
SELECT total_freshwater_withdrawal__km_3__yr_ FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "1029(96%)"
CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
In Pakistan, what was the total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 1029(96%)?
SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "794(86%)"
CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
What was the country in which the agricultural use (m 3 /p/yr)(in %) was 794(86%)?
SELECT COUNT(country) FROM table_15909409_2 WHERE total_freshwater_withdrawal__km_3__yr_ = "169.39"
CREATE TABLE table_15909409_2 (country VARCHAR, total_freshwater_withdrawal__km_3__yr_ VARCHAR)
In how many countries was the total freshwater withdrawal (km 3 /yr) 169.39?
SELECT date FROM table_1590652_4 WHERE winning_score = 67 - 67 - 63 = 197
CREATE TABLE table_1590652_4 (date VARCHAR, winning_score VARCHAR)
Name the date of winning score being 67-67-63=197
SELECT runner_s__up FROM table_1590652_4 WHERE tournament = "WGC-Accenture Match Play Championship"
CREATE TABLE table_1590652_4 (runner_s__up VARCHAR, tournament VARCHAR)
Name the runners up for when tournament is wgc-accenture match play championship
SELECT COUNT(no) FROM table_1590652_4 WHERE date = "30 May 2010"
CREATE TABLE table_1590652_4 (no VARCHAR, date VARCHAR)
Name the total number when date is 30 may 2010
SELECT margin_of_victory FROM table_1590652_4 WHERE date = "10 Jul 2011"
CREATE TABLE table_1590652_4 (margin_of_victory VARCHAR, date VARCHAR)
Name th margin of victory when date is 10 jul 2011
SELECT MAX(no) FROM table_1590652_4 WHERE tournament = "Madrid Masters"
CREATE TABLE table_1590652_4 (no INTEGER, tournament VARCHAR)
Name the most number when tournament is madrid masters
SELECT MAX(episode_number) FROM table_1590967_2 WHERE air_date = "6 January 2006"
CREATE TABLE table_1590967_2 (episode_number INTEGER, air_date VARCHAR)
Name the most episode numbers of 6 january 2006
SELECT COUNT(validation) FROM table_15905399_1 WHERE iin_ranges = "36"
CREATE TABLE table_15905399_1 (validation VARCHAR, iin_ranges VARCHAR)
How many validations are listed for the iin range 36?
SELECT validation FROM table_15905399_1 WHERE iin_ranges = "5610, 560221-560225"
CREATE TABLE table_15905399_1 (validation VARCHAR, iin_ranges VARCHAR)
What is the validation for iin ranges 5610, 560221-560225?
SELECT length FROM table_15905399_1 WHERE iin_ranges = "51-55"
CREATE TABLE table_15905399_1 (length VARCHAR, iin_ranges VARCHAR)
What is the length for iin range 51-55?
SELECT active FROM table_15905399_1 WHERE iin_ranges = "4"
CREATE TABLE table_15905399_1 (active VARCHAR, iin_ranges VARCHAR)
Is the iin range 4 active?
SELECT COUNT(episode_number) FROM table_1590967_7 WHERE guest_host = "Pamela Anderson"
CREATE TABLE table_1590967_7 (episode_number VARCHAR, guest_host VARCHAR)
What episode did Pamela Anderson guest host.
SELECT musical_guest__song_performed_ FROM table_1590967_7 WHERE guest_host = "Barbara Windsor"
CREATE TABLE table_1590967_7 (musical_guest__song_performed_ VARCHAR, guest_host VARCHAR)
What song was performed when Barbara Windsor was the guest host?
SELECT weight__kg_ FROM table_15926991_1 WHERE jockey = "D. Nikolic"
CREATE TABLE table_15926991_1 (weight__kg_ VARCHAR, jockey VARCHAR)
What is the entry for weight in kilograms of jockey D. Nikolic?
SELECT group FROM table_15926991_1 WHERE time = "1:11.65"
CREATE TABLE table_15926991_1 (group VARCHAR, time VARCHAR)
Which group had the time 1:11.65?
SELECT winner_2nd FROM table_15926991_1 WHERE time = "1:35.98"
CREATE TABLE table_15926991_1 (winner_2nd VARCHAR, time VARCHAR)
Which horse won with a time of 1:35.98 and what was their position?
SELECT engine_type FROM table_15944_5 WHERE scenario = "Space shuttle vacuum"
CREATE TABLE table_15944_5 (engine_type VARCHAR, scenario VARCHAR)
What engine type is used in a Space Shuttle Vacuum scenario?
SELECT COUNT(effective_exhaust_velocity__m_s_) FROM table_15944_5 WHERE scenario = "Space shuttle vacuum"
CREATE TABLE table_15944_5 (effective_exhaust_velocity__m_s_ VARCHAR, scenario VARCHAR)
What is the effective exhaust velocity in a Space Shuttle Vacuum?
SELECT MAX(specific_impulse__s_) FROM table_15944_5 WHERE effective_exhaust_velocity__m_s_ = 4423
CREATE TABLE table_15944_5 (specific_impulse__s_ INTEGER, effective_exhaust_velocity__m_s_ VARCHAR)
What is the maximum specific impulse with a 4423 m/s effective exhaust velocity?