Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
34,000
<question>: how many formats of books authored by day, martin martin day <context>: CREATE TABLE table_20174050_24 (format VARCHAR, author VARCHAR)
SELECT COUNT(format) FROM table_20174050_24 WHERE author = "Day, Martin Martin Day"
34,001
<question>: How many players were drafted from laval? <context>: CREATE TABLE table_20170644_5 (cfl_team VARCHAR, college VARCHAR)
SELECT COUNT(cfl_team) FROM table_20170644_5 WHERE college = "Laval"
34,002
<question>: What player went to montreal college? <context>: CREATE TABLE table_20170644_5 (player VARCHAR, college VARCHAR)
SELECT player FROM table_20170644_5 WHERE college = "Montreal"
34,003
<question>: What player(s) drafted by the hamilton tiger-cats? <context>: CREATE TABLE table_20170644_5 (player VARCHAR, cfl_team VARCHAR)
SELECT player FROM table_20170644_5 WHERE cfl_team = "Hamilton Tiger-Cats"
34,004
<question>: What position(s) drafted by the montreal alouettes? <context>: CREATE TABLE table_20170644_5 (position VARCHAR, cfl_team VARCHAR)
SELECT position FROM table_20170644_5 WHERE cfl_team = "Montreal Alouettes"
34,005
<question>: which company uses pinborough, sarah sarah pinborough? <context>: CREATE TABLE table_20174050_23 (company VARCHAR, author VARCHAR)
SELECT company FROM table_20174050_23 WHERE author = "Pinborough, Sarah Sarah Pinborough"
34,006
<question>: who the reader of title department x? <context>: CREATE TABLE table_20174050_23 (reader VARCHAR, title VARCHAR)
SELECT reader FROM table_20174050_23 WHERE title = "Department X"
34,007
<question>: how many notes were read by reader varma, idria indira varma? <context>: CREATE TABLE table_20174050_23 (notes VARCHAR, reader VARCHAR)
SELECT COUNT(notes) FROM table_20174050_23 WHERE reader = "Varma, Idria Indira Varma"
34,008
<question>: who is the reader on the download/cd format of the title written by author lidster, joseph joseph lidster? <context>: CREATE TABLE table_20174050_23 (reader VARCHAR, format VARCHAR, author VARCHAR)
SELECT reader FROM table_20174050_23 WHERE format = "Download/CD" AND author = "Lidster, Joseph Joseph Lidster"
34,009
<question>: Name the landesliga mitte for fc gundelfingen and vfl frohnlach <context>: CREATE TABLE table_20181270_3 (landesliga_mitte VARCHAR, landesliga_süd VARCHAR, landesliga_nord VARCHAR)
SELECT landesliga_mitte FROM table_20181270_3 WHERE landesliga_süd = "FC Gundelfingen" AND landesliga_nord = "VfL Frohnlach"
34,010
<question>: Name the landesliga nord for freier tus regensburg <context>: CREATE TABLE table_20181270_3 (landesliga_nord VARCHAR, landesliga_mitte VARCHAR)
SELECT landesliga_nord FROM table_20181270_3 WHERE landesliga_mitte = "Freier TuS Regensburg"
34,011
<question>: Name the landesliga nord for asv neumarkt <context>: CREATE TABLE table_20181270_3 (landesliga_nord VARCHAR, landesliga_mitte VARCHAR)
SELECT landesliga_nord FROM table_20181270_3 WHERE landesliga_mitte = "ASV Neumarkt"
34,012
<question>: Name the landesliga mitte sv türk gücü münchen <context>: CREATE TABLE table_20181270_3 (landesliga_mitte VARCHAR, bayernliga VARCHAR)
SELECT landesliga_mitte FROM table_20181270_3 WHERE bayernliga = "SV Türk Gücü München"
34,013
<question>: Name the landesliga sud for sg quelle fürth <context>: CREATE TABLE table_20181270_3 (landesliga_süd VARCHAR, bayernliga VARCHAR)
SELECT landesliga_süd FROM table_20181270_3 WHERE bayernliga = "SG Quelle Fürth"
34,014
<question>: What's the oil rig of the song that ended on 7th place? <context>: CREATE TABLE table_20183474_1 (oil_rig VARCHAR, place VARCHAR)
SELECT oil_rig FROM table_20183474_1 WHERE place = "7th"
34,015
<question>: What's the oil rig of the song with a draw number 9? <context>: CREATE TABLE table_20183474_1 (oil_rig INTEGER, draw VARCHAR)
SELECT MIN(oil_rig) FROM table_20183474_1 WHERE draw = 9
34,016
<question>: How many press jury points did the song by Frank Aleksandersen get? <context>: CREATE TABLE table_20183474_1 (press_jury INTEGER, artist VARCHAR)
SELECT MIN(press_jury) FROM table_20183474_1 WHERE artist = "Frank Aleksandersen"
34,017
<question>: How many points did the song with a draw number 3 get? <context>: CREATE TABLE table_20183474_1 (total_points VARCHAR, draw VARCHAR)
SELECT total_points FROM table_20183474_1 WHERE draw = 3
34,018
<question>: If the title is Paradox Lost and the reader is Briggs, Nicholas Nicholas Briggs, what are all of the notes? <context>: CREATE TABLE table_20174050_7 (notes VARCHAR, reader VARCHAR, title VARCHAR)
SELECT notes FROM table_20174050_7 WHERE reader = "Briggs, Nicholas Nicholas Briggs" AND title = "Paradox Lost"
34,019
<question>: If the title is The Way Through The Woods, what is the release date? <context>: CREATE TABLE table_20174050_7 (release_date VARCHAR, title VARCHAR)
SELECT release_date FROM table_20174050_7 WHERE title = "The Way Through the Woods"
34,020
<question>: If the reader is Syal, Meera Meera Syal, what was the release date? <context>: CREATE TABLE table_20174050_7 (release_date VARCHAR, reader VARCHAR)
SELECT release_date FROM table_20174050_7 WHERE reader = "Syal, Meera Meera Syal"
34,021
<question>: What is the most divisional titles won by a school with an enrollment of 30049? <context>: CREATE TABLE table_20190834_1 (divisional_titles INTEGER, enrollment VARCHAR)
SELECT MAX(divisional_titles) FROM table_20190834_1 WHERE enrollment = 30049
34,022
<question>: What is the maximum enrollment of the Sooners? <context>: CREATE TABLE table_20190834_1 (enrollment INTEGER, team_name VARCHAR)
SELECT MAX(enrollment) FROM table_20190834_1 WHERE team_name = "Sooners"
34,023
<question>: What is the minimum enrollment of the cyclones? <context>: CREATE TABLE table_20190834_1 (enrollment INTEGER, team_name VARCHAR)
SELECT MIN(enrollment) FROM table_20190834_1 WHERE team_name = "Cyclones"
34,024
<question>: What is the result of the book title firelands? <context>: CREATE TABLE table_20193855_2 (result VARCHAR, book_title VARCHAR)
SELECT result FROM table_20193855_2 WHERE book_title = "Firelands"
34,025
<question>: Which year is the book title the ordinary? <context>: CREATE TABLE table_20193855_2 (year VARCHAR, book_title VARCHAR)
SELECT year FROM table_20193855_2 WHERE book_title = "The Ordinary"
34,026
<question>: Who is the publisher of the book titled daughters of an emerald dusk? <context>: CREATE TABLE table_20193855_2 (publisher VARCHAR, book_title VARCHAR)
SELECT publisher FROM table_20193855_2 WHERE book_title = "Daughters of an Emerald Dusk"
34,027
<question>: In which year were the authors or editors Delia Sherman? <context>: CREATE TABLE table_20193855_2 (year INTEGER, author_s__or_editor_s_ VARCHAR)
SELECT MAX(year) FROM table_20193855_2 WHERE author_s__or_editor_s_ = "Delia Sherman"
34,028
<question>: How many authors or editors are there for the book title elf child? <context>: CREATE TABLE table_20193855_2 (author_s__or_editor_s_ VARCHAR, book_title VARCHAR)
SELECT COUNT(author_s__or_editor_s_) FROM table_20193855_2 WHERE book_title = "Elf Child"
34,029
<question>: What is the title of the book when the publisher is black car publishing? <context>: CREATE TABLE table_20193855_2 (book_title VARCHAR, publisher VARCHAR)
SELECT book_title FROM table_20193855_2 WHERE publisher = "Black Car Publishing"
34,030
<question>: What are the prizes when 1 is the number of winning tickets? <context>: CREATE TABLE table_20195922_3 (prize__eur_ VARCHAR, number_of_winning_tickets VARCHAR)
SELECT prize__eur_ FROM table_20195922_3 WHERE number_of_winning_tickets = 1
34,031
<question>: What are the number of winning tickets that have 180.00 as the prize (eur)? <context>: CREATE TABLE table_20195922_3 (number_of_winning_tickets VARCHAR, prize__eur_ VARCHAR)
SELECT number_of_winning_tickets FROM table_20195922_3 WHERE prize__eur_ = "180.00"
34,032
<question>: How many odd of winning have 6th as the division? <context>: CREATE TABLE table_20195922_3 (odds_of_winning__1in_ VARCHAR, divisions VARCHAR)
SELECT odds_of_winning__1in_ FROM table_20195922_3 WHERE divisions = "6th"
34,033
<question>: What is the prize (eur) for the 6th division? <context>: CREATE TABLE table_20195922_3 (prize__eur_ VARCHAR, divisions VARCHAR)
SELECT prize__eur_ FROM table_20195922_3 WHERE divisions = "6th"
34,034
<question>: Which divisions have 565 as the number of winning tickets? <context>: CREATE TABLE table_20195922_3 (divisions VARCHAR, number_of_winning_tickets VARCHAR)
SELECT divisions FROM table_20195922_3 WHERE number_of_winning_tickets = 565
34,035
<question>: what is гә гә [ɡʷ] when ҕь ҕь [ʁʲ/ɣʲ] is ҭә ҭә [tʷʰ]? <context>: CREATE TABLE table_202365_2 (гә_гә_ VARCHAR, ɡʷ VARCHAR, ҕь_ҕь_ VARCHAR, ʁʲ_ɣʲ VARCHAR)
SELECT гә_гә_[ɡʷ] FROM table_202365_2 WHERE ҕь_ҕь_[ʁʲ_ɣʲ] = "Ҭә ҭә [tʷʰ]"
34,036
<question>: What is гә гә [ɡʷ] when ҕ ҕ [ʁ/ɣ] is ҿ ҿ [t͡ʂʼ]? <context>: CREATE TABLE table_202365_2 (гә_гә_ VARCHAR, ɡʷ VARCHAR, ҕ_ҕ_ VARCHAR, ʁ_ɣ VARCHAR)
SELECT гә_гә_[ɡʷ] FROM table_202365_2 WHERE ҕ_ҕ_[ʁ_ɣ] = "Ҿ ҿ [t͡ʂʼ]"
34,037
<question>: what is г г [ɡ] when а а [a] is ҕә ҕә [ʁʷ/ɣʷ]? <context>: CREATE TABLE table_202365_2 (г_г_ VARCHAR, ɡ VARCHAR, а_а_ VARCHAR, a VARCHAR)
SELECT г_г_[ɡ] FROM table_202365_2 WHERE а_а_[a] = "Ҕә ҕә [ʁʷ/ɣʷ]"
34,038
<question>: what is а а [a] when ҕь ҕь [ʁʲ/ɣʲ] is ш ш [ʂʃ]? <context>: CREATE TABLE table_202365_2 (а_а_ VARCHAR, a VARCHAR, ҕь_ҕь_ VARCHAR, ʁʲ_ɣʲ VARCHAR)
SELECT а_а_[a] FROM table_202365_2 WHERE ҕь_ҕь_[ʁʲ_ɣʲ] = "Ш ш [ʂʃ]"
34,039
<question>: what is а а [a] when гь гь [ɡʲ] is л л [l]? <context>: CREATE TABLE table_202365_2 (а_а_ VARCHAR, a VARCHAR, гь_гь_ VARCHAR, ɡʲ VARCHAR)
SELECT а_а_[a] FROM table_202365_2 WHERE гь_гь_[ɡʲ] = "Л л [l]"
34,040
<question>: what is ҕь ҕь [ʁʲ/ɣʲ] when гь гь [ɡʲ] is ҷ ҷ [t͡ʃʼ]? <context>: CREATE TABLE table_202365_2 (ҕь_ҕь_ VARCHAR, ʁʲ_ɣʲ VARCHAR, гь_гь_ VARCHAR, ɡʲ VARCHAR)
SELECT ҕь_ҕь_[ʁʲ_ɣʲ] FROM table_202365_2 WHERE гь_гь_[ɡʲ] = "Ҷ ҷ [t͡ʃʼ]"
34,041
<question>: Name the green for otaki <context>: CREATE TABLE table_20217811_1 (green VARCHAR, electorate VARCHAR)
SELECT green FROM table_20217811_1 WHERE electorate = "Otaki"
34,042
<question>: Name the national for rimutaka <context>: CREATE TABLE table_20217811_1 (national VARCHAR, electorate VARCHAR)
SELECT national FROM table_20217811_1 WHERE electorate = "Rimutaka"
34,043
<question>: Name the electoraate for united future being 4.47% <context>: CREATE TABLE table_20217811_1 (electorate VARCHAR, united_future VARCHAR)
SELECT electorate FROM table_20217811_1 WHERE united_future = "4.47%"
34,044
<question>: How many different popular vote counts were there for the candidate Rick Perry? <context>: CREATE TABLE table_20246201_9 (popular_vote VARCHAR, candidate VARCHAR)
SELECT COUNT(popular_vote) FROM table_20246201_9 WHERE candidate = "Rick Perry"
34,045
<question>: Which office has 1 New Hampshire as a third place state? <context>: CREATE TABLE table_20246201_9 (office VARCHAR, states___third_place VARCHAR)
SELECT office FROM table_20246201_9 WHERE states___third_place = "1 New Hampshire"
34,046
<question>: What office is Jon Huntsman a candidate for? <context>: CREATE TABLE table_20246201_9 (office VARCHAR, candidate VARCHAR)
SELECT office FROM table_20246201_9 WHERE candidate = "Jon Huntsman"
34,047
<question>: How many states-first place are there for the office of Governor? <context>: CREATE TABLE table_20246201_9 (states___first_place VARCHAR, office VARCHAR)
SELECT COUNT(states___first_place) FROM table_20246201_9 WHERE office = "Governor"
34,048
<question>: Name the competition for australia 13, new zealand 40, drawn 3 <context>: CREATE TABLE table_20251343_4 (competition VARCHAR, head_to_head VARCHAR)
SELECT competition FROM table_20251343_4 WHERE head_to_head = "Australia 13, New Zealand 40, Drawn 3"
34,049
<question>: Name the explanation by rank is 10 <context>: CREATE TABLE table_2026548_1 (explanation VARCHAR, rank_by_time_in_office VARCHAR)
SELECT explanation FROM table_2026548_1 WHERE rank_by_time_in_office = 10
34,050
<question>: Name the order in office for spiro agnew <context>: CREATE TABLE table_2026548_1 (order_in_office VARCHAR, vice_president VARCHAR)
SELECT order_in_office FROM table_2026548_1 WHERE vice_president = "Spiro Agnew"
34,051
<question>: Name the explanation for alben w. barkley <context>: CREATE TABLE table_2026548_1 (explanation VARCHAR, vice_president VARCHAR)
SELECT explanation FROM table_2026548_1 WHERE vice_president = "Alben W. Barkley"
34,052
<question>: What percentage of people voted for Obama in Burlington? <context>: CREATE TABLE table_20278716_2 (obama__percentage VARCHAR, county VARCHAR)
SELECT obama__percentage FROM table_20278716_2 WHERE county = "Burlington"
34,053
<question>: What percentage of voters choise McCain in Burlington? <context>: CREATE TABLE table_20278716_2 (mccain__percentage VARCHAR, county VARCHAR)
SELECT mccain__percentage FROM table_20278716_2 WHERE county = "Burlington"
34,054
<question>: What percentage of voters voted for a third party in the county that had 802 third party voters? <context>: CREATE TABLE table_20278716_2 (others__percentage VARCHAR, others__number VARCHAR)
SELECT others__percentage FROM table_20278716_2 WHERE others__number = 802
34,055
<question>: What percentage of voters chose McCain in the county where 1.1% of voters voted third party? <context>: CREATE TABLE table_20278716_2 (mccain__percentage VARCHAR, others__percentage VARCHAR)
SELECT mccain__percentage FROM table_20278716_2 WHERE others__percentage = "1.1%"
34,056
<question>: What percentage of voters chose McCain in the county where 2.1% of voters voted third party? <context>: CREATE TABLE table_20278716_2 (mccain__percentage VARCHAR, others__percentage VARCHAR)
SELECT mccain__percentage FROM table_20278716_2 WHERE others__percentage = "2.1%"
34,057
<question>: What county had 915 third party voters? <context>: CREATE TABLE table_20278716_2 (county VARCHAR, others__number VARCHAR)
SELECT county FROM table_20278716_2 WHERE others__number = 915
34,058
<question>: Name the ply (uk, nz, au) for fingering <context>: CREATE TABLE table_20297668_1 (ply__uk VARCHAR, _nz VARCHAR, _au_ VARCHAR, yarn_type__us_ VARCHAR)
SELECT ply__uk, _nz, _au_ FROM table_20297668_1 WHERE yarn_type__us_ = "Fingering"
34,059
<question>: Name the wraps per inch for 120-240 <context>: CREATE TABLE table_20297668_1 (wraps_per_inch__wpi_ VARCHAR, m_100g VARCHAR)
SELECT wraps_per_inch__wpi_ FROM table_20297668_1 WHERE m_100g = "120-240"
34,060
<question>: Name the ply uk, nz, au for wraps per inch 7 wpi <context>: CREATE TABLE table_20297668_1 (ply__uk VARCHAR, _nz VARCHAR, _au_ VARCHAR, wraps_per_inch__wpi_ VARCHAR)
SELECT ply__uk, _nz, _au_ FROM table_20297668_1 WHERE wraps_per_inch__wpi_ = "7 wpi"
34,061
<question>: Name the yarn type for standard yarn weight system for 3 or light <context>: CREATE TABLE table_20297668_1 (yarn_type__us_ VARCHAR, standard_yarn_weight_system VARCHAR)
SELECT yarn_type__us_ FROM table_20297668_1 WHERE standard_yarn_weight_system = "3 or Light"
34,062
<question>: Name the standard yarn weight system for 7 wpi <context>: CREATE TABLE table_20297668_1 (standard_yarn_weight_system VARCHAR, wraps_per_inch__wpi_ VARCHAR)
SELECT standard_yarn_weight_system FROM table_20297668_1 WHERE wraps_per_inch__wpi_ = "7 wpi"
34,063
<question>: Name the standard yarn weight system for 9 wpi <context>: CREATE TABLE table_20297668_1 (standard_yarn_weight_system VARCHAR, wraps_per_inch__wpi_ VARCHAR)
SELECT standard_yarn_weight_system FROM table_20297668_1 WHERE wraps_per_inch__wpi_ = "9 wpi"
34,064
<question>: When was the motor gear of the LMS 1946 no. 1901 model fitted? <context>: CREATE TABLE table_2030453_1 (date_motor_gear_fitted VARCHAR, lms_1946_no VARCHAR)
SELECT date_motor_gear_fitted FROM table_2030453_1 WHERE lms_1946_no = 1901
34,065
<question>: how many matches did wayne mardle play <context>: CREATE TABLE table_20301877_2 (played VARCHAR, player VARCHAR)
SELECT COUNT(played) FROM table_20301877_2 WHERE player = "Wayne Mardle"
34,066
<question>: what is the 3-dart average of raymond van barneveld <context>: CREATE TABLE table_20301877_2 (player VARCHAR)
SELECT 3 AS _dart_average FROM table_20301877_2 WHERE player = "Raymond van Barneveld"
34,067
<question>: How many different results are there for the season with a 4-3 conference record? <context>: CREATE TABLE table_20319085_2 (result VARCHAR, conference_record VARCHAR)
SELECT COUNT(result) FROM table_20319085_2 WHERE conference_record = "4-3"
34,068
<question>: Who coached the team in the season with a 6-1 conference record? <context>: CREATE TABLE table_20319085_2 (coach VARCHAR, conference_record VARCHAR)
SELECT coach FROM table_20319085_2 WHERE conference_record = "6-1"
34,069
<question>: How many different conference records are there for season 2006? <context>: CREATE TABLE table_20319085_2 (conference_record VARCHAR, season VARCHAR)
SELECT COUNT(conference_record) FROM table_20319085_2 WHERE season = 2006
34,070
<question>: How did the season with 7-2 conference record ed? <context>: CREATE TABLE table_20319085_2 (result VARCHAR, conference_record VARCHAR)
SELECT result FROM table_20319085_2 WHERE conference_record = "7-2"
34,071
<question>: In what season was the conference record 4-3? <context>: CREATE TABLE table_20319085_2 (season INTEGER, conference_record VARCHAR)
SELECT MIN(season) FROM table_20319085_2 WHERE conference_record = "4-3"
34,072
<question>: What is the highest number of third place runners up held by any of the countries competing in the Mr. International competition?. <context>: CREATE TABLE table_20325360_2 (Id VARCHAR)
SELECT MAX(3 AS rd_runner_up) FROM table_20325360_2
34,073
<question>: The country, competing in the Mr. International competition, that holds a rank of 3, has how many 2nd runners up? <context>: CREATE TABLE table_20325360_2 (rank VARCHAR)
SELECT COUNT(2 AS nd_runner_up) FROM table_20325360_2 WHERE rank = 3
34,074
<question>: For the country that holds a rank of 2, in the Mr. International Competition, what is the total number of competitors listed as 2nd runner ups? <context>: CREATE TABLE table_20325360_2 (rank VARCHAR)
SELECT COUNT(2 AS nd_runner_up) FROM table_20325360_2 WHERE rank = 2
34,075
<question>: How many competitors in total, for the Mr. International competition, does Brazil have? <context>: CREATE TABLE table_20325360_2 (total INTEGER, country_territory VARCHAR)
SELECT MAX(total) FROM table_20325360_2 WHERE country_territory = "Brazil"
34,076
<question>: What's Trina Gulliver's high checkout? <context>: CREATE TABLE table_20351295_2 (high_checkout VARCHAR, player VARCHAR)
SELECT high_checkout FROM table_20351295_2 WHERE player = "Trina Gulliver"
34,077
<question>: How many legs has the player with high checkout of 80 won? <context>: CREATE TABLE table_20351295_2 (legs_won VARCHAR, high_checkout VARCHAR)
SELECT legs_won FROM table_20351295_2 WHERE high_checkout = 80
34,078
<question>: Name the sanskrit word and meaning for aquarius <context>: CREATE TABLE table_20354_7 (sanskrit_word_and_meaning VARCHAR, zodiac_sign VARCHAR)
SELECT sanskrit_word_and_meaning FROM table_20354_7 WHERE zodiac_sign = "Aquarius"
34,079
<question>: Name the zodiac for കന്നി <context>: CREATE TABLE table_20354_7 (zodiac_sign VARCHAR, malayalam_name VARCHAR)
SELECT zodiac_sign FROM table_20354_7 WHERE malayalam_name = "കന്നി"
34,080
<question>: Name the malayalam name for leo <context>: CREATE TABLE table_20354_7 (malayalam_name VARCHAR, zodiac_sign VARCHAR)
SELECT malayalam_name FROM table_20354_7 WHERE zodiac_sign = "Leo"
34,081
<question>: Name the transliteration for ചിങ്ങം <context>: CREATE TABLE table_20354_7 (transliteration VARCHAR, malayalam_name VARCHAR)
SELECT transliteration FROM table_20354_7 WHERE malayalam_name = "ചിങ്ങം"
34,082
<question>: How many votes did McCain get in the county where Obama got 50.7% of the votes? <context>: CREATE TABLE table_20350118_1 (mccain_number INTEGER, obama_percentage VARCHAR)
SELECT MAX(mccain_number) FROM table_20350118_1 WHERE obama_percentage = "50.7%"
34,083
<question>: Where did McCain get 20226 votes? <context>: CREATE TABLE table_20350118_1 (county VARCHAR, mccain_number VARCHAR)
SELECT county FROM table_20350118_1 WHERE mccain_number = 20226
34,084
<question>: How many people voted in Cabarrus county? <context>: CREATE TABLE table_20350118_1 (total INTEGER, county VARCHAR)
SELECT MIN(total) FROM table_20350118_1 WHERE county = "Cabarrus"
34,085
<question>: How many different results were there for the number of votes fro Obama in the county where he got 27.8% of the votes? <context>: CREATE TABLE table_20350118_1 (obama_number VARCHAR, obama_percentage VARCHAR)
SELECT COUNT(obama_number) FROM table_20350118_1 WHERE obama_percentage = "27.8%"
34,086
<question>: How many episodes directed by ben jones and written by paul dini? <context>: CREATE TABLE table_20360535_3 (no VARCHAR, directed_by VARCHAR, written_by VARCHAR)
SELECT COUNT(no) FROM table_20360535_3 WHERE directed_by = "Ben Jones" AND written_by = "Paul Dini"
34,087
<question>: What is the title of S02E01? <context>: CREATE TABLE table_20360535_3 (title VARCHAR, television_order VARCHAR)
SELECT title FROM table_20360535_3 WHERE television_order = "S02E01"
34,088
<question>: What TV order is written by gail simone? <context>: CREATE TABLE table_20360535_3 (television_order VARCHAR, written_by VARCHAR)
SELECT television_order FROM table_20360535_3 WHERE written_by = "Gail Simone"
34,089
<question>: who won mens doubles when zhou mi won womens singles <context>: CREATE TABLE table_20361783_1 (mens_doubles VARCHAR, womens_singles VARCHAR)
SELECT mens_doubles FROM table_20361783_1 WHERE womens_singles = "Zhou Mi"
34,090
<question>: who won mixed doubles when zhou mi won womens singles <context>: CREATE TABLE table_20361783_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)
SELECT mixed_doubles FROM table_20361783_1 WHERE womens_singles = "Zhou Mi"
34,091
<question>: state the earliest year li xuerui won womens singles <context>: CREATE TABLE table_20361783_1 (year INTEGER, womens_singles VARCHAR)
SELECT MIN(year) FROM table_20361783_1 WHERE womens_singles = "Li Xuerui"
34,092
<question>: who won womens doubles in 2010 <context>: CREATE TABLE table_20361783_1 (womens_doubles VARCHAR, year VARCHAR)
SELECT womens_doubles FROM table_20361783_1 WHERE year = 2010
34,093
<question>: who won mixed doubles when wang yihan won womens singles <context>: CREATE TABLE table_20361783_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)
SELECT mixed_doubles FROM table_20361783_1 WHERE womens_singles = "Wang Yihan"
34,094
<question>: How many county councils for the communist party of norway <context>: CREATE TABLE table_203802_2 (county_councils___2011__ INTEGER, english_party_name VARCHAR)
SELECT MAX(county_councils___2011__) FROM table_203802_2 WHERE english_party_name = "Communist Party of Norway"
34,095
<question>: What percent of the parliamentary election did the pensioners party receive <context>: CREATE TABLE table_203802_2 (english_party_name VARCHAR)
SELECT 2013 AS _parliamentary_election FROM table_203802_2 WHERE english_party_name = "Pensioners Party"
34,096
<question>: How many parties are named the Center Alliance <context>: CREATE TABLE table_203802_2 (english_party_name VARCHAR)
SELECT COUNT(2013 AS _parliamentary_election) FROM table_203802_2 WHERE english_party_name = "Center Alliance"
34,097
<question>: Name the most withdrawn for 37 lstr no. <context>: CREATE TABLE table_20391799_1 (withdrawn INTEGER, ltsr_no VARCHAR)
SELECT MAX(withdrawn) FROM table_20391799_1 WHERE ltsr_no = 37
34,098
<question>: how many won 83 points for? <context>: CREATE TABLE table_20396710_1 (won VARCHAR, points_for VARCHAR)
SELECT won FROM table_20396710_1 WHERE points_for = "83"
34,099
<question>: which club is listed when bonus points is bonus points <context>: CREATE TABLE table_20396710_1 (club VARCHAR)
SELECT club FROM table_20396710_1 WHERE "bonus_points" = "bonus_points"