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