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