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