Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
59,800
<question>: I want the prothrombin time with a partial thromboplastin time of prolonged and unaffected bleeding time and factor xii deficiency for condition of factor <context>: CREATE TABLE table_name_49 (prothrombin_time VARCHAR, condition VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)
SELECT prothrombin_time FROM table_name_49 WHERE partial_thromboplastin_time = "prolonged" AND bleeding_time = "unaffected" AND condition = "factor xii deficiency"
59,801
<question>: I want the condition that has a partial thromboplastin time of prolonged and unaffected bleeding time <context>: CREATE TABLE table_name_41 (condition VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)
SELECT condition FROM table_name_41 WHERE partial_thromboplastin_time = "prolonged" AND bleeding_time = "unaffected"
59,802
<question>: What is the ICAO for Antalya Airport? <context>: CREATE TABLE table_name_86 (icao VARCHAR, airport VARCHAR)
SELECT icao FROM table_name_86 WHERE airport = "antalya airport"
59,803
<question>: What is the IATA of Leonardo da Vinci-Fiumicino Airport? <context>: CREATE TABLE table_name_39 (iata VARCHAR, airport VARCHAR)
SELECT iata FROM table_name_39 WHERE airport = "leonardo da vinci-fiumicino airport"
59,804
<question>: What country is the IATA BLQ located in? <context>: CREATE TABLE table_name_68 (country VARCHAR, iata VARCHAR)
SELECT country FROM table_name_68 WHERE iata = "blq"
59,805
<question>: What is the IATA of Madrid-Barajas Airport? <context>: CREATE TABLE table_name_8 (iata VARCHAR, airport VARCHAR)
SELECT iata FROM table_name_8 WHERE airport = "madrid-barajas airport"
59,806
<question>: Which city has the ICAO of LIRF? <context>: CREATE TABLE table_name_84 (city VARCHAR, icao VARCHAR)
SELECT city FROM table_name_84 WHERE icao = "lirf"
59,807
<question>: Which city is Naples Airport located in? <context>: CREATE TABLE table_name_27 (city VARCHAR, airport VARCHAR)
SELECT city FROM table_name_27 WHERE airport = "naples airport"
59,808
<question>: Tell me the Ryuji Hijikata for TAKA Michinoku of Hayashi (28:05) <context>: CREATE TABLE table_name_39 (ryuji_hijikata VARCHAR, taka_michinoku VARCHAR)
SELECT ryuji_hijikata FROM table_name_39 WHERE taka_michinoku = "hayashi (28:05)"
59,809
<question>: Tell me the Ryuji Hijikata for Block A of Ryuji Hijikata <context>: CREATE TABLE table_name_72 (ryuji_hijikata VARCHAR, block_a VARCHAR)
SELECT ryuji_hijikata FROM table_name_72 WHERE block_a = "ryuji hijikata"
59,810
<question>: When South Melbourne was the Away Team, what was their score? <context>: CREATE TABLE table_name_49 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_49 WHERE away_team = "south melbourne"
59,811
<question>: Tell me the away team score for away team of south melbourne <context>: CREATE TABLE table_name_23 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_23 WHERE away_team = "south melbourne"
59,812
<question>: I want to know the away team score for vfl park venue <context>: CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_82 WHERE venue = "vfl park"
59,813
<question>: Name the total number of tracks for of the fallen angel <context>: CREATE TABLE table_name_21 (track VARCHAR, translation VARCHAR)
SELECT COUNT(track) FROM table_name_21 WHERE translation = "the fallen angel"
59,814
<question>: What driver went 14 rounds with a 193 Chassis? <context>: CREATE TABLE table_name_55 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)
SELECT driver FROM table_name_55 WHERE chassis = "193" AND rounds = "14"
59,815
<question>: What engine was used when Aguri Suzuki drove the FA13B FA14 Chassis? <context>: CREATE TABLE table_name_31 (engine VARCHAR, chassis VARCHAR, driver VARCHAR)
SELECT engine FROM table_name_31 WHERE chassis = "fa13b fa14" AND driver = "aguri suzuki"
59,816
<question>: Who was the entrant for all the round with Jean Alesi? <context>: CREATE TABLE table_name_46 (entrant VARCHAR, rounds VARCHAR, driver VARCHAR)
SELECT entrant FROM table_name_46 WHERE rounds = "all" AND driver = "jean alesi"
59,817
<question>: What engine did Riccardo Patrese use? <context>: CREATE TABLE table_name_12 (engine VARCHAR, driver VARCHAR)
SELECT engine FROM table_name_12 WHERE driver = "riccardo patrese"
59,818
<question>: If the home team was footscray which venue did they play it? <context>: CREATE TABLE table_name_53 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_53 WHERE home_team = "footscray"
59,819
<question>: When the home team was footscray what did they score? <context>: CREATE TABLE table_name_27 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_27 WHERE home_team = "footscray"
59,820
<question>: When the home team north melbourne was playing what did they score? <context>: CREATE TABLE table_name_78 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_78 WHERE home_team = "north melbourne"
59,821
<question>: What is the score of the September 20, 2005 match when the Opponents are FC Bayern Munich? <context>: CREATE TABLE table_name_2 (score VARCHAR, opponents VARCHAR, date VARCHAR)
SELECT score FROM table_name_2 WHERE opponents = "fc bayern munich" AND date = "september 20, 2005"
59,822
<question>: What is the match report for July 10, 2005? <context>: CREATE TABLE table_name_91 (match_report VARCHAR, date VARCHAR)
SELECT match_report FROM table_name_91 WHERE date = "july 10, 2005"
59,823
<question>: What is the date of the GC competition when the opponents are 1. FC Nuremberg? <context>: CREATE TABLE table_name_59 (date VARCHAR, opponents VARCHAR, competition VARCHAR)
SELECT date FROM table_name_59 WHERE opponents = "1. fc nuremberg" AND competition = "gc"
59,824
<question>: Which competition was held on September 10, 2005? <context>: CREATE TABLE table_name_58 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_58 WHERE date = "september 10, 2005"
59,825
<question>: In which competition was the score 3-0? <context>: CREATE TABLE table_name_79 (competition VARCHAR, score VARCHAR)
SELECT competition FROM table_name_79 WHERE score = "3-0"
59,826
<question>: Who was the visitor when the lakers were at home with a Score of 85–106? <context>: CREATE TABLE table_name_39 (visitor VARCHAR, home VARCHAR, score VARCHAR)
SELECT visitor FROM table_name_39 WHERE home = "lakers" AND score = "85–106"
59,827
<question>: what is the date of birth for the player with goals less than 4, games more than 1, years at club, 1945 and named jim young? <context>: CREATE TABLE table_name_66 (date_of_birth VARCHAR, player VARCHAR, years_at_club VARCHAR, goals VARCHAR, games VARCHAR)
SELECT date_of_birth FROM table_name_66 WHERE goals < 4 AND games > 1 AND years_at_club = "1945" AND player = "jim young"
59,828
<question>: what is the debut year for player terry fulton with games less than 51? <context>: CREATE TABLE table_name_83 (debut_year INTEGER, player VARCHAR, games VARCHAR)
SELECT AVG(debut_year) FROM table_name_83 WHERE player = "terry fulton" AND games < 51
59,829
<question>: How people attended Victoria Park? <context>: CREATE TABLE table_name_60 (crowd INTEGER, venue VARCHAR)
SELECT AVG(crowd) FROM table_name_60 WHERE venue = "victoria park"
59,830
<question>: What is the away team score for South Melbourne? <context>: CREATE TABLE table_name_97 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_97 WHERE away_team = "south melbourne"
59,831
<question>: Who played Melbourne as the home team? <context>: CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_38 WHERE away_team = "melbourne"
59,832
<question>: Which away team has an attendance of more than 17,000? <context>: CREATE TABLE table_name_30 (away_team VARCHAR, crowd INTEGER)
SELECT away_team FROM table_name_30 WHERE crowd > 17 OFFSET 000
59,833
<question>: Which away team played at MCG? <context>: CREATE TABLE table_name_55 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_55 WHERE venue = "mcg"
59,834
<question>: What was the date when Geelong was the home team? <context>: CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_49 WHERE home_team = "geelong"
59,835
<question>: What is Damien Martyn's bowling style? <context>: CREATE TABLE table_name_49 (bowling_style VARCHAR, player VARCHAR)
SELECT bowling_style FROM table_name_49 WHERE player = "damien martyn"
59,836
<question>: What is the batting style of the player born on 14 November 1971? <context>: CREATE TABLE table_name_77 (batting_style VARCHAR, date_of_birth VARCHAR)
SELECT batting_style FROM table_name_77 WHERE date_of_birth = "14 november 1971"
59,837
<question>: What is the first class team of the player born on 23 February 1973? <context>: CREATE TABLE table_name_70 (first_class_team VARCHAR, date_of_birth VARCHAR)
SELECT first_class_team FROM table_name_70 WHERE date_of_birth = "23 february 1973"
59,838
<question>: What is the type for EU Council Presidency of UK and John Major as President-in-Office? <context>: CREATE TABLE table_name_27 (type VARCHAR, eu_council_presidency VARCHAR, president_in_office VARCHAR)
SELECT type FROM table_name_27 WHERE eu_council_presidency = "uk" AND president_in_office = "john major"
59,839
<question>: In which host city was Margaret Thatcher the President-in-Office in 1981? <context>: CREATE TABLE table_name_85 (host_city VARCHAR, president_in_office VARCHAR, year VARCHAR)
SELECT host_city FROM table_name_85 WHERE president_in_office = "margaret thatcher" AND year = 1981
59,840
<question>: How many average scores have preliminary scores over 9.25, interview scores more than 9.44, and evening gown scores of 9.77? <context>: CREATE TABLE table_name_98 (average VARCHAR, evening_gown VARCHAR, preliminaries VARCHAR, interview VARCHAR)
SELECT COUNT(average) FROM table_name_98 WHERE preliminaries > 9.25 AND interview > 9.44 AND evening_gown = 9.77
59,841
<question>: What is the least score for interview with a preliminaries score less than 9.4, evening gown score less than 9.55, and swimsuit score more than 9.18 in New York? <context>: CREATE TABLE table_name_79 (interview INTEGER, swimsuit VARCHAR, country VARCHAR, preliminaries VARCHAR, evening_gown VARCHAR)
SELECT MIN(interview) FROM table_name_79 WHERE preliminaries < 9.4 AND evening_gown < 9.55 AND country = "new york" AND swimsuit > 9.18
59,842
<question>: Name the seven for 29 november 1690 <context>: CREATE TABLE table_name_24 (seven VARCHAR, date VARCHAR)
SELECT seven FROM table_name_24 WHERE date = "29 november 1690"
59,843
<question>: Name the four for 6 march 1801 <context>: CREATE TABLE table_name_23 (four VARCHAR, date VARCHAR)
SELECT four FROM table_name_23 WHERE date = "6 march 1801"
59,844
<question>: Name the three for william prewett for four and five being richard ellis with seven being nicholas king on 5 november 1693 <context>: CREATE TABLE table_name_83 (three VARCHAR, date VARCHAR, seven VARCHAR, four VARCHAR, five VARCHAR)
SELECT three FROM table_name_83 WHERE four = "william prewett" AND five = "richard ellis" AND seven = "nicholas king" AND date = "5 november 1693"
59,845
<question>: Name the three for 16 december 1676 <context>: CREATE TABLE table_name_83 (three VARCHAR, date VARCHAR)
SELECT three FROM table_name_83 WHERE date = "16 december 1676"
59,846
<question>: Tell me the average Grid for driver of Luca Badoer and Laps more than 69 <context>: CREATE TABLE table_name_73 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT AVG(grid) FROM table_name_73 WHERE driver = "luca badoer" AND laps > 69
59,847
<question>: What final was Farhad Rezaei in? <context>: CREATE TABLE table_name_46 (final VARCHAR, athlete VARCHAR)
SELECT final FROM table_name_46 WHERE athlete = "farhad rezaei"
59,848
<question>: What final was ranked 4? <context>: CREATE TABLE table_name_96 (final VARCHAR, rank VARCHAR)
SELECT final FROM table_name_96 WHERE rank = "4"
59,849
<question>: What was the reanking of Hamid Veisi? <context>: CREATE TABLE table_name_44 (rank VARCHAR, athlete VARCHAR)
SELECT rank FROM table_name_44 WHERE athlete = "hamid veisi"
59,850
<question>: Which Franchise has a Percentage under 0.707, a Year larger than 1931, and the Finish was won 1998 World Series? <context>: CREATE TABLE table_name_29 (franchise VARCHAR, finish VARCHAR, percentage VARCHAR, year VARCHAR)
SELECT franchise FROM table_name_29 WHERE percentage < 0.707 AND year > 1931 AND finish = "won 1998 world series"
59,851
<question>: What is the average Year for the Finish of lost 2001 alcs and the Percentage is over 0.716? <context>: CREATE TABLE table_name_11 (year INTEGER, finish VARCHAR, percentage VARCHAR)
SELECT AVG(year) FROM table_name_11 WHERE finish = "lost 2001 alcs" AND percentage > 0.716
59,852
<question>: In the Year 1939, what was the Finish when Al was the League? <context>: CREATE TABLE table_name_88 (finish VARCHAR, league VARCHAR, year VARCHAR)
SELECT finish FROM table_name_88 WHERE league = "al" AND year = 1939
59,853
<question>: What was the Finish when NL was the League, the Percentage was under 0.726, the Year was larger than 1897, and the Franchies was the Pittsburgh Pirates? <context>: CREATE TABLE table_name_22 (finish VARCHAR, franchise VARCHAR, year VARCHAR, league VARCHAR, percentage VARCHAR)
SELECT finish FROM table_name_22 WHERE league = "nl" AND percentage < 0.726 AND year > 1897 AND franchise = "pittsburgh pirates"
59,854
<question>: What was the venue when the home team was footscray? <context>: CREATE TABLE table_name_81 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_81 WHERE home_team = "footscray"
59,855
<question>: What was the crowd when the away team was hawthorn? <context>: CREATE TABLE table_name_72 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(crowd) FROM table_name_72 WHERE away_team = "hawthorn"
59,856
<question>: What city houses the Ciro Vigorito stadium? <context>: CREATE TABLE table_name_86 (city VARCHAR, stadium VARCHAR)
SELECT city FROM table_name_86 WHERE stadium = "ciro vigorito"
59,857
<question>: I want to know the highest silver for total of 4 for poland and gold less than 1 <context>: CREATE TABLE table_name_7 (silver INTEGER, gold VARCHAR, total VARCHAR, nation VARCHAR)
SELECT MAX(silver) FROM table_name_7 WHERE total = 4 AND nation = "poland" AND gold < 1
59,858
<question>: Tell me the average silver for total more than 1 with bronze of 2 for france and gold more than 0 <context>: CREATE TABLE table_name_62 (silver INTEGER, gold VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT AVG(silver) FROM table_name_62 WHERE total > 1 AND bronze = 2 AND nation = "france" AND gold > 0
59,859
<question>: Tell me the number of gold for albania with a silver of 1 and total less than 1 <context>: CREATE TABLE table_name_12 (gold VARCHAR, total VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT COUNT(gold) FROM table_name_12 WHERE silver = 1 AND nation = "albania" AND total < 1
59,860
<question>: Tell me the average gold for moldova and bronze less than 1 <context>: CREATE TABLE table_name_25 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT AVG(gold) FROM table_name_25 WHERE nation = "moldova" AND bronze < 1
59,861
<question>: Tell me the sum of gold for bronze less than 0 <context>: CREATE TABLE table_name_31 (gold INTEGER, bronze INTEGER)
SELECT SUM(gold) FROM table_name_31 WHERE bronze < 0
59,862
<question>: What tyre was used in the Zandvoort circuit? <context>: CREATE TABLE table_name_71 (tyre VARCHAR, circuit VARCHAR)
SELECT tyre FROM table_name_71 WHERE circuit = "zandvoort"
59,863
<question>: Which circuit did Alberto Ascari set the fastest lap time with a Ferrari? <context>: CREATE TABLE table_name_86 (circuit VARCHAR, constructor VARCHAR, fastest_lap VARCHAR)
SELECT circuit FROM table_name_86 WHERE constructor = "ferrari" AND fastest_lap = "alberto ascari"
59,864
<question>: Who won the race with a Ferrari, were Luigi Villoresi set the fastest lap time? <context>: CREATE TABLE table_name_32 (winning_driver VARCHAR, constructor VARCHAR, fastest_lap VARCHAR)
SELECT winning_driver FROM table_name_32 WHERE constructor = "ferrari" AND fastest_lap = "luigi villoresi"
59,865
<question>: Which race did Alberto Ascari have both the Pole position and the win, but Luigi Villoresi set the fastest lap time? <context>: CREATE TABLE table_name_4 (race VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)
SELECT race FROM table_name_4 WHERE pole_position = "alberto ascari" AND winning_driver = "alberto ascari" AND fastest_lap = "luigi villoresi"
59,866
<question>: Which county is named broderick wood products? <context>: CREATE TABLE table_name_7 (county VARCHAR, name VARCHAR)
SELECT county FROM table_name_7 WHERE name = "broderick wood products"
59,867
<question>: What construction completed is named nelson tunnel/commodore waste rock? <context>: CREATE TABLE table_name_76 (construction_completed VARCHAR, name VARCHAR)
SELECT construction_completed FROM table_name_76 WHERE name = "nelson tunnel/commodore waste rock"
59,868
<question>: What is the ID of marshall landfill on 09/08/1983? <context>: CREATE TABLE table_name_98 (cerclis_id VARCHAR, listed VARCHAR, name VARCHAR)
SELECT cerclis_id FROM table_name_98 WHERE listed = "09/08/1983" AND name = "marshall landfill"
59,869
<question>: Which nominee won the award for Fourth Best Indian Film? <context>: CREATE TABLE table_name_7 (nominee VARCHAR, outcome VARCHAR, category VARCHAR)
SELECT nominee FROM table_name_7 WHERE outcome = "won" AND category = "fourth best indian film"
59,870
<question>: In which ceremony was Harnam Singh Rawail nominated for an award? <context>: CREATE TABLE table_name_80 (ceremony VARCHAR, nominee VARCHAR)
SELECT ceremony FROM table_name_80 WHERE nominee = "harnam singh rawail"
59,871
<question>: In which ceremony was Jayant nominated for an award? <context>: CREATE TABLE table_name_69 (ceremony VARCHAR, nominee VARCHAR)
SELECT ceremony FROM table_name_69 WHERE nominee = "jayant"
59,872
<question>: What surface was the April 24, 2003 match played on? <context>: CREATE TABLE table_name_88 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_88 WHERE date = "april 24, 2003"
59,873
<question>: How many times has Watney made the top 25 for a tournament in which he as also been cut 6 times? <context>: CREATE TABLE table_name_47 (top_25 INTEGER, cuts_made VARCHAR)
SELECT SUM(top_25) FROM table_name_47 WHERE cuts_made = 6
59,874
<question>: Which tournament has the highest number of cuts while also having 4 top 25 appearances? <context>: CREATE TABLE table_name_54 (cuts_made INTEGER, top_25 VARCHAR)
SELECT MAX(cuts_made) FROM table_name_54 WHERE top_25 = 4
59,875
<question>: What is the smallest grid with collision as the Time/Retired for pedro diniz? <context>: CREATE TABLE table_name_6 (grid INTEGER, time_retired VARCHAR, driver VARCHAR)
SELECT MIN(grid) FROM table_name_6 WHERE time_retired = "collision" AND driver = "pedro diniz"
59,876
<question>: What is the number of laps for Grid 14? <context>: CREATE TABLE table_name_88 (laps VARCHAR, grid VARCHAR)
SELECT COUNT(laps) FROM table_name_88 WHERE grid = 14
59,877
<question>: What is the number of the grid for mika häkkinen and more than 45 laps? <context>: CREATE TABLE table_name_65 (grid VARCHAR, driver VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_65 WHERE driver = "mika häkkinen" AND laps > 45
59,878
<question>: Which home team has more than 19,000 spectators? <context>: CREATE TABLE table_name_73 (home_team VARCHAR, crowd INTEGER)
SELECT home_team FROM table_name_73 WHERE crowd > 19 OFFSET 000
59,879
<question>: What is the Theme of Christie Paquet after 2004 with an Issue Price of $34.95? <context>: CREATE TABLE table_name_54 (theme VARCHAR, year VARCHAR, artist VARCHAR, issue_price VARCHAR)
SELECT theme FROM table_name_54 WHERE artist = "christie paquet" AND issue_price = "$34.95" AND year > 2004
59,880
<question>: What is the Year of Christie Paquet with Issue Price of $34.95? <context>: CREATE TABLE table_name_78 (year INTEGER, artist VARCHAR, issue_price VARCHAR)
SELECT AVG(year) FROM table_name_78 WHERE artist = "christie paquet" AND issue_price = "$34.95"
59,881
<question>: What is the Crowd for the Venue of Princes Park? <context>: CREATE TABLE table_name_88 (crowd VARCHAR, venue VARCHAR)
SELECT crowd FROM table_name_88 WHERE venue = "princes park"
59,882
<question>: What is the Home team score for the Home team of Melbourne? <context>: CREATE TABLE table_name_98 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_98 WHERE home_team = "melbourne"
59,883
<question>: What is the Home team score for the Home team from South Melbourne? <context>: CREATE TABLE table_name_33 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_33 WHERE home_team = "south melbourne"
59,884
<question>: What is the Home team score for the Venue named MCG? <context>: CREATE TABLE table_name_89 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_89 WHERE venue = "mcg"
59,885
<question>: Who has the lowest earnings that has a rank smaller than 2? <context>: CREATE TABLE table_name_38 (earnings__ INTEGER, rank INTEGER)
SELECT MIN(earnings__) AS $__ FROM table_name_38 WHERE rank < 2
59,886
<question>: What was the total number of wins with player Mike Hill with a rank bigger than 2? <context>: CREATE TABLE table_name_73 (wins VARCHAR, rank VARCHAR, player VARCHAR)
SELECT COUNT(wins) FROM table_name_73 WHERE rank > 2 AND player = "mike hill"
59,887
<question>: Where was the argentine grand prix? <context>: CREATE TABLE table_name_42 (location VARCHAR, race VARCHAR)
SELECT location FROM table_name_42 WHERE race = "argentine grand prix"
59,888
<question>: What was the constructor for the fastest nelson piquet? <context>: CREATE TABLE table_name_72 (constructor VARCHAR, fastest_lap VARCHAR)
SELECT constructor FROM table_name_72 WHERE fastest_lap = "nelson piquet"
59,889
<question>: Tell me the constructor for zolder <context>: CREATE TABLE table_name_64 (constructor VARCHAR, location VARCHAR)
SELECT constructor FROM table_name_64 WHERE location = "zolder"
59,890
<question>: Name the constructor for 10 august <context>: CREATE TABLE table_name_75 (constructor VARCHAR, date VARCHAR)
SELECT constructor FROM table_name_75 WHERE date = "10 august"
59,891
<question>: What is the number of Years at Club for the player who has had more games than 28, more Goals than 225, and his Debut year was after 1950? <context>: CREATE TABLE table_name_77 (years_at_club VARCHAR, debut_year VARCHAR, games VARCHAR, goals VARCHAR)
SELECT years_at_club FROM table_name_77 WHERE games > 28 AND goals > 225 AND debut_year > 1950
59,892
<question>: What is the birthday of the player who has Years at Club of 1951? <context>: CREATE TABLE table_name_12 (date_of_birth VARCHAR, years_at_club VARCHAR)
SELECT date_of_birth FROM table_name_12 WHERE years_at_club = "1951"
59,893
<question>: what rank has years until mandatory retirement of 6 years? <context>: CREATE TABLE table_name_55 (rank VARCHAR, years_until_mandatory_retirement VARCHAR)
SELECT rank FROM table_name_55 WHERE years_until_mandatory_retirement = "6 years"
59,894
<question>: what name has an appointed year of 2009 and years until mandatory retirement of 13 years? <context>: CREATE TABLE table_name_40 (name VARCHAR, year_appointed VARCHAR, years_until_mandatory_retirement VARCHAR)
SELECT name FROM table_name_40 WHERE year_appointed = 2009 AND years_until_mandatory_retirement = "13 years"
59,895
<question>: Which player from Oregon used the number 12? <context>: CREATE TABLE table_name_16 (player VARCHAR, no_s_ VARCHAR, school_club_team_country VARCHAR)
SELECT player FROM table_name_16 WHERE no_s_ = "12" AND school_club_team_country = "oregon"
59,896
<question>: What position does the player who is 6-10 play? <context>: CREATE TABLE table_name_16 (position VARCHAR, height_in_ft VARCHAR)
SELECT position FROM table_name_16 WHERE height_in_ft = "6-10"
59,897
<question>: What are the numbers for any players from Washington? <context>: CREATE TABLE table_name_94 (no_s_ VARCHAR, school_club_team_country VARCHAR)
SELECT no_s_ FROM table_name_94 WHERE school_club_team_country = "washington"
59,898
<question>: Which years did the Rockets number 6 play? <context>: CREATE TABLE table_name_80 (years_for_rockets VARCHAR, no_s_ VARCHAR)
SELECT years_for_rockets FROM table_name_80 WHERE no_s_ = "6"
59,899
<question>: Which 2nd senior VIII that also has a 4th senior stm? <context>: CREATE TABLE table_name_60 (senior_2nd_viii VARCHAR, senior_iv VARCHAR)
SELECT senior_2nd_viii FROM table_name_60 WHERE senior_iv = "stm"