combined_text
stringlengths 106
1.05k
|
---|
###question:How many teams have 7th position?###answer:SELECT COUNT(team) FROM table_22056184_1 WHERE position = "7th"###context:CREATE TABLE table_22056184_1 (team VARCHAR, position VARCHAR) |
###question:How many poles when British formula renault 2.0 series and f/laps 1?###answer:SELECT MIN(poles) FROM table_22056184_1 WHERE series = "British Formula Renault 2.0" AND f_laps = 1###context:CREATE TABLE table_22056184_1 (poles INTEGER, series VARCHAR, f_laps VARCHAR) |
###question:How many points when pole are 1?###answer:SELECT points FROM table_22056184_1 WHERE poles = 1###context:CREATE TABLE table_22056184_1 (points VARCHAR, poles VARCHAR) |
###question:how many wiaa classifications does fort vancouver high school have?###answer:SELECT COUNT(wiaa_classification) FROM table_22058547_1 WHERE high_school = "Fort Vancouver"###context:CREATE TABLE table_22058547_1 (wiaa_classification VARCHAR, high_school VARCHAR) |
###question:How many high schools have storm mascots?###answer:SELECT high_school FROM table_22058547_1 WHERE mascot = "Storm"###context:CREATE TABLE table_22058547_1 (high_school VARCHAR, mascot VARCHAR) |
###question:What wiaa classifications does vancouver itech prepratory have?###answer:SELECT wiaa_classification FROM table_22058547_1 WHERE high_school = "Vancouver iTech Prepratory"###context:CREATE TABLE table_22058547_1 (wiaa_classification VARCHAR, high_school VARCHAR) |
###question:What school classifications have trappers as mascot?###answer:SELECT type FROM table_22058547_1 WHERE mascot = "Trappers"###context:CREATE TABLE table_22058547_1 (type VARCHAR, mascot VARCHAR) |
###question:How many games were played in the 1989 season?###answer:SELECT played FROM table_2208838_4 WHERE season = "1989"###context:CREATE TABLE table_2208838_4 (played VARCHAR, season VARCHAR) |
###question:How many games were played by the player with 927 points?###answer:SELECT played FROM table_2208838_4 WHERE points = 927###context:CREATE TABLE table_2208838_4 (played VARCHAR, points VARCHAR) |
###question:Which team had an average of 20.4?###answer:SELECT team FROM table_2208838_4 WHERE average = "20.4"###context:CREATE TABLE table_2208838_4 (team VARCHAR, average VARCHAR) |
###question:What was the date of appointment for the 10th person in position?###answer:SELECT date_of_appointment FROM table_22133191_3 WHERE position_in_table = "10th"###context:CREATE TABLE table_22133191_3 (date_of_appointment VARCHAR, position_in_table VARCHAR) |
###question:What is the date of vacancy for the person that left because of end of caretaker contract?###answer:SELECT date_of_vacancy FROM table_22133191_3 WHERE manner_of_departure = "End of caretaker contract"###context:CREATE TABLE table_22133191_3 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR) |
###question:How many prefectures have an area of 361.719 kilometers squared?###answer:SELECT COUNT(prefecture) FROM table_221398_1 WHERE area__km²_ = "361.719"###context:CREATE TABLE table_221398_1 (prefecture VARCHAR, area__km²_ VARCHAR) |
###question:What prefecture is listed in the map as number 39?###answer:SELECT prefecture FROM table_221398_1 WHERE number_in_map = "39"###context:CREATE TABLE table_221398_1 (prefecture VARCHAR, number_in_map VARCHAR) |
###question:How many prefectures have a population density of 16 people/kilometers squared?###answer:SELECT COUNT(pop_density___km²_) FROM table_221398_1 WHERE number_in_map = "16"###context:CREATE TABLE table_221398_1 (pop_density___km²_ VARCHAR, number_in_map VARCHAR) |
###question:How many wins did he have when he had $95,180 in winnings?###answer:SELECT COUNT(wins) FROM table_2216245_2 WHERE winnings = "$95,180"###context:CREATE TABLE table_2216245_2 (wins VARCHAR, winnings VARCHAR) |
###question:How many top 10s did he have the year he won $80,490?###answer:SELECT COUNT(top_10) FROM table_2216245_2 WHERE winnings = "$80,490"###context:CREATE TABLE table_2216245_2 (top_10 VARCHAR, winnings VARCHAR) |
###question:What is his lowest number of wins?###answer:SELECT MIN(wins) FROM table_2216245_2###context:CREATE TABLE table_2216245_2 (wins INTEGER) |
###question:How many top 5s when he was on team #28/#49 jay robinson racing?###answer:SELECT MAX(top_5) FROM table_2216245_2 WHERE team_s_ = "#28/#49 Jay Robinson Racing"###context:CREATE TABLE table_2216245_2 (top_5 INTEGER, team_s_ VARCHAR) |
###question:What date did episode 258 in the series originally air?###answer:SELECT original_air_date FROM table_2221484_2 WHERE series__number = 258###context:CREATE TABLE table_2221484_2 (original_air_date VARCHAR, series__number VARCHAR) |
###question:Who directed episode 266 in the series?###answer:SELECT directed_by FROM table_2221484_2 WHERE series__number = 266###context:CREATE TABLE table_2221484_2 (directed_by VARCHAR, series__number VARCHAR) |
###question:Name the least season###answer:SELECT MIN(season) FROM table_2223177_3###context:CREATE TABLE table_2223177_3 (season INTEGER) |
###question:What's the BTU/Gal of the fuel whose kWh/Gal is 24.04?###answer:SELECT btu_gal FROM table_2224692_1 WHERE kwh_gal = "24.04"###context:CREATE TABLE table_2224692_1 (btu_gal VARCHAR, kwh_gal VARCHAR) |
###question:What's the HP -hr/gal of the fuel whose GGE is 0.9000?###answer:SELECT hp__hr_gal FROM table_2224692_1 WHERE gge = "0.9000"###context:CREATE TABLE table_2224692_1 (hp__hr_gal VARCHAR, gge VARCHAR) |
###question:What is the percentage yield for a DPMO of 3.4?###answer:SELECT percentage_yield FROM table_222448_1 WHERE dpmo = "3.4"###context:CREATE TABLE table_222448_1 (percentage_yield VARCHAR, dpmo VARCHAR) |
###question:How many percentage yield figures are there when 6.7% are defective?###answer:SELECT COUNT(percentage_yield) FROM table_222448_1 WHERE percent_defective = "6.7%"###context:CREATE TABLE table_222448_1 (percentage_yield VARCHAR, percent_defective VARCHAR) |
###question:What is long-term C PK when the short-term C PK is 2.00?###answer:SELECT long_term_c_pk FROM table_222448_1 WHERE short_term_c_pk = "2.00"###context:CREATE TABLE table_222448_1 (long_term_c_pk VARCHAR, short_term_c_pk VARCHAR) |
###question:What is the sigma (with 1.5σ shift) when there are 69% defective?###answer:SELECT sigma__with_15σ_shift_ FROM table_222448_1 WHERE percent_defective = "69%"###context:CREATE TABLE table_222448_1 (sigma__with_15σ_shift_ VARCHAR, percent_defective VARCHAR) |
###question:When sigma (with 1.5σ shift) is 2.5, what percent is defective?###answer:SELECT percent_defective FROM table_222448_1 WHERE sigma__with_15σ_shift_ = "2.5"###context:CREATE TABLE table_222448_1 (percent_defective VARCHAR, sigma__with_15σ_shift_ VARCHAR) |
###question:How many times was u.s. Viewers listed for episode 36 in the series?###answer:SELECT COUNT(us_viewers__millions_) FROM table_22265225_1 WHERE no_in_series = "36"###context:CREATE TABLE table_22265225_1 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR) |
###question:How many million U.s. Viewers watched episode 12 in the season?###answer:SELECT us_viewers__millions_ FROM table_22265225_1 WHERE no_in_season = "12"###context:CREATE TABLE table_22265225_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) |
###question:What day did the episode with a production code of 218 originally air?###answer:SELECT original_air_date FROM table_22265225_1 WHERE production_code = "218"###context:CREATE TABLE table_22265225_1 (original_air_date VARCHAR, production_code VARCHAR) |
###question:How many episodes were listed as number 29 in the series?###answer:SELECT COUNT(no_in_season) FROM table_22265225_1 WHERE no_in_series = "29"###context:CREATE TABLE table_22265225_1 (no_in_season VARCHAR, no_in_series VARCHAR) |
###question:What was the Sp of the 2nd Position?###answer:SELECT COUNT(sp) FROM table_22265261_1 WHERE position = "2nd"###context:CREATE TABLE table_22265261_1 (sp VARCHAR, position VARCHAR) |
###question:How old was the horse when the SP was 200/1?###answer:SELECT COUNT(age) FROM table_22265261_1 WHERE sp = "200/1"###context:CREATE TABLE table_22265261_1 (age VARCHAR, sp VARCHAR) |
###question:What was the distance for the 11th position?###answer:SELECT distance FROM table_22265261_1 WHERE position = "11th"###context:CREATE TABLE table_22265261_1 (distance VARCHAR, position VARCHAR) |
###question:Who was the jockey in 7th position?###answer:SELECT jockey FROM table_22265261_1 WHERE position = "7th"###context:CREATE TABLE table_22265261_1 (jockey VARCHAR, position VARCHAR) |
###question:What was the distance when the handicap was 11-2?###answer:SELECT distance FROM table_22265261_1 WHERE handicap__st_lb_ = "11-2"###context:CREATE TABLE table_22265261_1 (distance VARCHAR, handicap__st_lb_ VARCHAR) |
###question:If the production code is 6.18, what was the episode title?###answer:SELECT title FROM table_2226817_7 WHERE production_code = "6.18"###context:CREATE TABLE table_2226817_7 (title VARCHAR, production_code VARCHAR) |
###question:If the original air date January 19, 1992, who was the episode directed by?###answer:SELECT directed_by FROM table_2226817_7 WHERE original_air_date = "January 19, 1992"###context:CREATE TABLE table_2226817_7 (directed_by VARCHAR, original_air_date VARCHAR) |
###question:What's the season number of the episode with series number 84?###answer:SELECT MIN(no_in_season) FROM table_2226817_6 WHERE no_in_series = 84###context:CREATE TABLE table_2226817_6 (no_in_season INTEGER, no_in_series VARCHAR) |
###question:How many season numbers are there for the episodes written by Art Everett?###answer:SELECT COUNT(no_in_season) FROM table_2226817_6 WHERE written_by = "Art Everett"###context:CREATE TABLE table_2226817_6 (no_in_season VARCHAR, written_by VARCHAR) |
###question:How many series numbers do the episodes originally aired on October 28, 1990?###answer:SELECT COUNT(no_in_series) FROM table_2226817_6 WHERE original_air_date = "October 28, 1990"###context:CREATE TABLE table_2226817_6 (no_in_series VARCHAR, original_air_date VARCHAR) |
###question:What' the series number of the episode with season number 13?###answer:SELECT MIN(no_in_series) FROM table_2226817_6 WHERE no_in_season = 13###context:CREATE TABLE table_2226817_6 (no_in_series INTEGER, no_in_season VARCHAR) |
###question:What was the report for the Sunday race where the winner had an average speed of 128.27 mph?###answer:SELECT report FROM table_22298383_1 WHERE day = "Sunday" AND average_speed__mph_ = "128.27"###context:CREATE TABLE table_22298383_1 (report VARCHAR, day VARCHAR, average_speed__mph_ VARCHAR) |
###question:On what day was the race that Cale Yarborough won in 364 laps?###answer:SELECT day FROM table_22298383_1 WHERE laps = "364" AND driver = "Cale Yarborough"###context:CREATE TABLE table_22298383_1 (day VARCHAR, laps VARCHAR, driver VARCHAR) |
###question:Who manufactured the car that won with an average speed of 126.259 mph?###answer:SELECT manufacturer FROM table_22298383_1 WHERE average_speed__mph_ = "126.259"###context:CREATE TABLE table_22298383_1 (manufacturer VARCHAR, average_speed__mph_ VARCHAR) |
###question:What year did the Leo Jackson Racing team win?###answer:SELECT year FROM table_22298383_1 WHERE team = "Leo Jackson Racing"###context:CREATE TABLE table_22298383_1 (year VARCHAR, team VARCHAR) |
###question:When was the station WLS-TV owned since?###answer:SELECT owned_since FROM table_22329326_1 WHERE station = "WLS-TV"###context:CREATE TABLE table_22329326_1 (owned_since VARCHAR, station VARCHAR) |
###question:What market rank and city had the station KABC-TV?###answer:SELECT market_rank_ & _city_of_license__market FROM table_22329326_1 WHERE station = "KABC-TV"###context:CREATE TABLE table_22329326_1 (market_rank_ VARCHAR, _city_of_license__market VARCHAR, station VARCHAR) |
###question:What was the earliest year a station was owned since?###answer:SELECT MIN(owned_since) FROM table_22329326_1###context:CREATE TABLE table_22329326_1 (owned_since INTEGER) |
###question:How many episodes had 3.62 million viewers?###answer:SELECT COUNT(share) FROM table_22353769_3 WHERE viewers__millions_ = "3.62"###context:CREATE TABLE table_22353769_3 (share VARCHAR, viewers__millions_ VARCHAR) |
###question:How many episodes have episode #11?###answer:SELECT COUNT(us_air_date) FROM table_22353769_3 WHERE episode__number = 11###context:CREATE TABLE table_22353769_3 (us_air_date VARCHAR, episode__number VARCHAR) |
###question:How many epsidode(s) had 3.63 million viewers?###answer:SELECT COUNT(episode__number) FROM table_22353769_3 WHERE viewers__millions_ = "3.63"###context:CREATE TABLE table_22353769_3 (episode__number VARCHAR, viewers__millions_ VARCHAR) |
###question:What nation had the athlete sebastian coe category:articles with hcards?###answer:SELECT nation FROM table_22355_11 WHERE athlete = "Sebastian Coe Category:Articles with hCards"###context:CREATE TABLE table_22355_11 (nation VARCHAR, athlete VARCHAR) |
###question:What rank did the nation with athlete peter snell category:articles with hcards have?###answer:SELECT COUNT(rank) FROM table_22355_11 WHERE athlete = "Peter Snell Category:Articles with hCards"###context:CREATE TABLE table_22355_11 (rank VARCHAR, athlete VARCHAR) |
###question:how many times was nation counted where athlete is shuhei nishida category:articles with hcards###answer:SELECT COUNT(nation) FROM table_22355_50 WHERE athlete = "Shuhei Nishida Category:Articles with hCards"###context:CREATE TABLE table_22355_50 (nation VARCHAR, athlete VARCHAR) |
###question:What is the least number of silver medals won###answer:SELECT MIN(silver) FROM table_22355_50###context:CREATE TABLE table_22355_50 (silver INTEGER) |
###question:How many silver medalist was won?###answer:SELECT MAX(silver) FROM table_22355_71###context:CREATE TABLE table_22355_71 (silver INTEGER) |
###question:Name the league cup for northern ireland###answer:SELECT league AS Cup FROM table_22357065_1 WHERE nation = "Northern Ireland"###context:CREATE TABLE table_22357065_1 (league VARCHAR, nation VARCHAR) |
###question:If the spacecraft is the Shenzhou 7 Eva 1, what is the start (utc) date and time?###answer:SELECT start___utc__ FROM table_22385461_9 WHERE spacecraft = "Shenzhou 7 EVA 1"###context:CREATE TABLE table_22385461_9 (start___utc__ VARCHAR, spacecraft VARCHAR) |
###question:If the start (utc) is November 18, 2008 18:09, what is the name of the spacecraft?###answer:SELECT spacecraft FROM table_22385461_9 WHERE start___utc__ = "November 18, 2008 18:09"###context:CREATE TABLE table_22385461_9 (spacecraft VARCHAR, start___utc__ VARCHAR) |
###question:What is the end (UTC) for spacecraft STS-114 Eva 3?###answer:SELECT end__utc_ FROM table_22385461_6 WHERE spacecraft = "STS-114 EVA 3"###context:CREATE TABLE table_22385461_6 (end__utc_ VARCHAR, spacecraft VARCHAR) |
###question:What is the start date and time of the walk that ends March 28, 2005, 11:31?###answer:SELECT start___utc__ FROM table_22385461_6 WHERE end__utc_ = "March 28, 2005, 11:31"###context:CREATE TABLE table_22385461_6 (start___utc__ VARCHAR, end__utc_ VARCHAR) |
###question:Which points classification has 4 as the stage?###answer:SELECT points_classification FROM table_22464308_2 WHERE stage = 4###context:CREATE TABLE table_22464308_2 (points_classification VARCHAR, stage VARCHAR) |
###question:Which malaysian team classification had mohd nur rizuan zainal as points classification?###answer:SELECT malaysian_team_classification FROM table_22464308_2 WHERE points_classification = "Mohd Nur Rizuan Zainal"###context:CREATE TABLE table_22464308_2 (malaysian_team_classification VARCHAR, points_classification VARCHAR) |
###question:Which team classification has malaysian team classification of mncf continental team?###answer:SELECT team_classification FROM table_22464308_2 WHERE malaysian_team_classification = "MNCF Continental Team"###context:CREATE TABLE table_22464308_2 (team_classification VARCHAR, malaysian_team_classification VARCHAR) |
###question:When did the term end that began January 3, 2007?###answer:SELECT term_ended FROM table_224672_2 WHERE term_began = "January 3, 2007"###context:CREATE TABLE table_224672_2 (term_ended VARCHAR, term_began VARCHAR) |
###question:When did the term began when the date of election is N/A?###answer:SELECT term_began FROM table_224672_2 WHERE elected = "N/A"###context:CREATE TABLE table_224672_2 (term_began VARCHAR, elected VARCHAR) |
###question:When did the term end that began December 4, 1978?###answer:SELECT term_ended FROM table_224672_2 WHERE term_began = "December 4, 1978"###context:CREATE TABLE table_224672_2 (term_ended VARCHAR, term_began VARCHAR) |
###question:When did the term begin that ended January 3, 1995?###answer:SELECT term_began FROM table_224672_2 WHERE term_ended = "January 3, 1995"###context:CREATE TABLE table_224672_2 (term_began VARCHAR, term_ended VARCHAR) |
###question:What branch of government was the term that ended on January 3, 2001?###answer:SELECT type FROM table_224672_2 WHERE term_ended = "January 3, 2001"###context:CREATE TABLE table_224672_2 (type VARCHAR, term_ended VARCHAR) |
###question:Where is the position when houston, tx is the hometown and worthing is the high school?###answer:SELECT position FROM table_22496344_1 WHERE home_town = "Houston, TX" AND high_school = "Worthing"###context:CREATE TABLE table_22496344_1 (position VARCHAR, home_town VARCHAR, high_school VARCHAR) |
###question:Which highschool has senior (rs) for the year?###answer:SELECT high_school FROM table_22496344_1 WHERE year = "Senior (RS)"###context:CREATE TABLE table_22496344_1 (high_school VARCHAR, year VARCHAR) |
###question:What is the # when conroe, tx is the hometown?###answer:SELECT MIN(_number) FROM table_22496344_1 WHERE home_town = "Conroe, TX"###context:CREATE TABLE table_22496344_1 (_number INTEGER, home_town VARCHAR) |
###question:What is the weight when 20 is the number?###answer:SELECT MAX(weight) FROM table_22496344_1 WHERE _number = 20###context:CREATE TABLE table_22496344_1 (weight INTEGER, _number VARCHAR) |
###question:What is the name when senior is the year with the # less than 10.0?###answer:SELECT name FROM table_22496344_1 WHERE year = "Senior" AND _number < 10.0###context:CREATE TABLE table_22496344_1 (name VARCHAR, year VARCHAR, _number VARCHAR) |
###question:What is the # for worthing high school?###answer:SELECT COUNT(_number) FROM table_22496344_1 WHERE high_school = "Worthing"###context:CREATE TABLE table_22496344_1 (_number VARCHAR, high_school VARCHAR) |
###question:Name the reason for change for jonathan jennings###answer:SELECT COUNT(reason_for_change) FROM table_225094_4 WHERE successor = "Jonathan Jennings"###context:CREATE TABLE table_225094_4 (reason_for_change VARCHAR, successor VARCHAR) |
###question:Name the date successor seated for failure to elect###answer:SELECT date_successor_seated FROM table_225094_4 WHERE reason_for_change = "failure to elect"###context:CREATE TABLE table_225094_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR) |
###question:Name the successor for james noble died in previous congress###answer:SELECT successor FROM table_225198_3 WHERE reason_for_change = "James Noble died in previous Congress"###context:CREATE TABLE table_225198_3 (successor VARCHAR, reason_for_change VARCHAR) |
###question:Name the state class for isaac d. barnard (j)###answer:SELECT state__class_ FROM table_225198_3 WHERE vacator = "Isaac D. Barnard (J)"###context:CREATE TABLE table_225198_3 (state__class_ VARCHAR, vacator VARCHAR) |
###question:Who is the successor when the reason for change is died November 11, 1845?###answer:SELECT successor FROM table_225205_4 WHERE reason_for_change = "Died November 11, 1845"###context:CREATE TABLE table_225205_4 (successor VARCHAR, reason_for_change VARCHAR) |
###question:How many date of successor seated is new jersey 2nd in the district?###answer:SELECT COUNT(date_successor_seated) FROM table_225205_4 WHERE district = "New Jersey 2nd"###context:CREATE TABLE table_225205_4 (date_successor_seated VARCHAR, district VARCHAR) |
###question:Who was the Best Male Artist where Bankie Travolta won the Best Male MC?###answer:SELECT best_male_artist FROM table_22546460_4 WHERE best_male_mc = "Bankie Travolta"###context:CREATE TABLE table_22546460_4 (best_male_artist VARCHAR, best_male_mc VARCHAR) |
###question:Who was the Best Male MC if Best Album won the Best Male Lyricist?###answer:SELECT best_male_mc FROM table_22546460_4 WHERE best_male_lyricist = "Best Album"###context:CREATE TABLE table_22546460_4 (best_male_mc VARCHAR, best_male_lyricist VARCHAR) |
###question:Who was the Best Male Lyricist if Neshia Nee won the Best Male Record?###answer:SELECT best_male_lyricist FROM table_22546460_4 WHERE best_male_record = "Neshia Nee"###context:CREATE TABLE table_22546460_4 (best_male_lyricist VARCHAR, best_male_record VARCHAR) |
###question:Who won the Best Female Artist where Best R&B Contributor won the Best Male Lyricist?###answer:SELECT best_female_artist FROM table_22546460_4 WHERE best_male_lyricist = "Best R&B Contributor"###context:CREATE TABLE table_22546460_4 (best_female_artist VARCHAR, best_male_lyricist VARCHAR) |
###question:What won the Best Female Artist if Best Lyrical Record won the Best Male Artist?###answer:SELECT best_female_artist FROM table_22546460_4 WHERE best_male_artist = "Best Lyrical Record"###context:CREATE TABLE table_22546460_4 (best_female_artist VARCHAR, best_male_artist VARCHAR) |
###question:What won the Best Female Artist if People's Male MC won the Best Female Lyricist?###answer:SELECT best_female_artist FROM table_22546460_4 WHERE best_female_lyricist = "People's Male MC"###context:CREATE TABLE table_22546460_4 (best_female_artist VARCHAR, best_female_lyricist VARCHAR) |
###question:What is the lowest number of states contested under apna dal?###answer:SELECT MIN(states_contested) FROM table_22582663_1 WHERE party_name = "Apna Dal"###context:CREATE TABLE table_22582663_1 (states_contested INTEGER, party_name VARCHAR) |
###question:Where 19 seats were won, what was the minimum number of forfeited seats?###answer:SELECT MIN(forfeited_in_seats) FROM table_22582663_1 WHERE seats_won = 19###context:CREATE TABLE table_22582663_1 (forfeited_in_seats INTEGER, seats_won VARCHAR) |
###question:How many akhil bharatiya rashtriya azad hind party seats were contested?###answer:SELECT seats_contested FROM table_22582663_1 WHERE party_name = "Akhil Bharatiya Rashtriya Azad Hind Party"###context:CREATE TABLE table_22582663_1 (seats_contested VARCHAR, party_name VARCHAR) |
###question:When was John McEnroe's minimum year?###answer:SELECT MIN(year) FROM table_22597626_1###context:CREATE TABLE table_22597626_1 (year INTEGER) |
###question:What were the US Open's final scores?###answer:SELECT score_in_the_final FROM table_22597626_1 WHERE championship = "US Open"###context:CREATE TABLE table_22597626_1 (score_in_the_final VARCHAR, championship VARCHAR) |
###question:Who were the partners in games where the score was 7-5, 2-6, [6-10]?###answer:SELECT partner FROM table_2259502_2 WHERE score = "7-5, 2-6, [6-10]"###context:CREATE TABLE table_2259502_2 (partner VARCHAR, score VARCHAR) |
###question:Who were the opponents in the Tokyo championships?###answer:SELECT opponents FROM table_2259502_2 WHERE championship = "Tokyo"###context:CREATE TABLE table_2259502_2 (opponents VARCHAR, championship VARCHAR) |
###question:Who were the partners in games where the score was 1-6, 2-6?###answer:SELECT partner FROM table_2259502_2 WHERE score = "1-6, 2-6"###context:CREATE TABLE table_2259502_2 (partner VARCHAR, score VARCHAR) |
###question:Who were the partners in 2012?###answer:SELECT partner FROM table_2259502_2 WHERE year = 2012###context:CREATE TABLE table_2259502_2 (partner VARCHAR, year VARCHAR) |
###question:What was the outcome in games where the score was 7-5, 2-6, [6-10]?###answer:SELECT outcome FROM table_2259502_2 WHERE score = "7-5, 2-6, [6-10]"###context:CREATE TABLE table_2259502_2 (outcome VARCHAR, score VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.