text stringlengths 114 1.06k |
|---|
### question: During what period did Dell Curry play for Toronto? ### answer: SELECT years_in_toronto FROM table_10015132_3 WHERE player = "Dell Curry" ### context: CREATE TABLE table_10015132_3 (years_in_toronto VARCHAR, player VARCHAR) |
### question: What's the number of the player from Boise State? ### answer: SELECT no FROM table_10015132_3 WHERE school_club_team = "Boise State" ### context: CREATE TABLE table_10015132_3 (no VARCHAR, school_club_team VARCHAR) |
### question: What's Dell Curry nationality? ### answer: SELECT nationality FROM table_10015132_3 WHERE player = "Dell Curry" ### context: CREATE TABLE table_10015132_3 (nationality VARCHAR, player VARCHAR) |
### question: which player is from georgia ### answer: SELECT player FROM table_10015132_7 WHERE school_club_team = "Georgia" ### context: CREATE TABLE table_10015132_7 (player VARCHAR, school_club_team VARCHAR) |
### question: what school is rudy gay from ### answer: SELECT school_club_team FROM table_10015132_7 WHERE player = "Rudy Gay" ### context: CREATE TABLE table_10015132_7 (school_club_team VARCHAR, player VARCHAR) |
### question: what nationality is the player who played from 1997-98 ### answer: SELECT nationality FROM table_10015132_7 WHERE years_in_toronto = "1997-98" ### context: CREATE TABLE table_10015132_7 (nationality VARCHAR, years_in_toronto VARCHAR) |
### question: what position did the player from connecticut play ### answer: SELECT position FROM table_10015132_7 WHERE school_club_team = "Connecticut" ### context: CREATE TABLE table_10015132_7 (position VARCHAR, school_club_team VARCHAR) |
### question: During which years was Marcus Banks in Toronto? ### answer: SELECT years_in_toronto FROM table_10015132_2 WHERE player = "Marcus Banks" ### context: CREATE TABLE table_10015132_2 (years_in_toronto VARCHAR, player VARCHAR) |
### question: Which positions were in Toronto in 2004? ### answer: SELECT position FROM table_10015132_2 WHERE years_in_toronto = "2004" ### context: CREATE TABLE table_10015132_2 (position VARCHAR, years_in_toronto VARCHAR) |
### question: What nationality is the player Muggsy Bogues? ### answer: SELECT nationality FROM table_10015132_2 WHERE player = "Muggsy Bogues" ### context: CREATE TABLE table_10015132_2 (nationality VARCHAR, player VARCHAR) |
### question: What years was the player Lonny Baxter in Toronto? ### answer: SELECT years_in_toronto FROM table_10015132_2 WHERE player = "Lonny Baxter" ### context: CREATE TABLE table_10015132_2 (years_in_toronto VARCHAR, player VARCHAR) |
### question: How many players were with the school or club team La Salle? ### answer: SELECT COUNT(player) FROM table_10015132_2 WHERE school_club_team = "La Salle" ### context: CREATE TABLE table_10015132_2 (player VARCHAR, school_club_team VARCHAR) |
### question: When the scoring rank was 117, what was the best finish? ### answer: SELECT best_finish FROM table_10021158_3 WHERE scoring_rank = "117" ### context: CREATE TABLE table_10021158_3 (best_finish VARCHAR, scoring_rank VARCHAR) |
### question: When the best finish was T69, how many people came in 2nd? ### answer: SELECT 2 AS nd FROM table_10021158_3 WHERE best_finish = "T69" ### context: CREATE TABLE table_10021158_3 (best_finish VARCHAR) |
### question: How many wins were there when the money list rank was 183? ### answer: SELECT COUNT(wins) FROM table_10021158_3 WHERE money_list_rank = "183" ### context: CREATE TABLE table_10021158_3 (wins VARCHAR, money_list_rank VARCHAR) |
### question: When the money list rank was n/a, what was the scoring average? ### answer: SELECT scoring_average FROM table_10021158_3 WHERE money_list_rank = "n/a" ### context: CREATE TABLE table_10021158_3 (scoring_average VARCHAR, money_list_rank VARCHAR) |
### question: What time was the highest for 2nd finishers? ### answer: SELECT MAX(2 AS nd) FROM table_10021158_3 ### context: CREATE TABLE table_10021158_3 (Id VARCHAR) |
### question: When did the Metrostars have their first Rookie of the Year winner? ### answer: SELECT MIN(season) FROM table_1004033_1 WHERE team = "MetroStars" ### context: CREATE TABLE table_1004033_1 (season INTEGER, team VARCHAR) |
### question: What college did the Rookie of the Year from the Columbus Crew attend? ### answer: SELECT college FROM table_1004033_1 WHERE team = "Columbus Crew" ### context: CREATE TABLE table_1004033_1 (college VARCHAR, team VARCHAR) |
### question: How many teams had a #1 draft pick that won the Rookie of the Year Award? ### answer: SELECT COUNT(team) FROM table_1004033_1 WHERE draft_pick__number = "1" ### context: CREATE TABLE table_1004033_1 (team VARCHAR, draft_pick__number VARCHAR) |
### question: What position did the #10 draft pick play? ### answer: SELECT position FROM table_1004033_1 WHERE draft_pick__number = "10" ### context: CREATE TABLE table_1004033_1 (position VARCHAR, draft_pick__number VARCHAR) |
### question: what's the years played with singles w-l of 3–2 ### answer: SELECT years_played FROM table_10023387_1 WHERE singles_w_l = "3–2" ### context: CREATE TABLE table_10023387_1 (years_played VARCHAR, singles_w_l VARCHAR) |
### question: what's the doubles w-l for player seol jae-min (none) ### answer: SELECT doubles_w_l FROM table_10023387_1 WHERE player = "Seol Jae-Min (none)" ### context: CREATE TABLE table_10023387_1 (doubles_w_l VARCHAR, player VARCHAR) |
### question: what's the singles w-l for kim doo-hwan ### answer: SELECT singles_w_l FROM table_10023387_1 WHERE player = "Kim Doo-Hwan" ### context: CREATE TABLE table_10023387_1 (singles_w_l VARCHAR, player VARCHAR) |
### question: what's the total number of singles w-l with doubles w-l of 0–0 and total w-l of 3–1 ### answer: SELECT COUNT(singles_w_l) FROM table_10023387_1 WHERE doubles_w_l = "0–0" AND total_w_l = "3–1" ### context: CREATE TABLE table_10023387_1 (singles_w_l VARCHAR, doubles_w_l VARCHAR, total_w_l VARCHAR) |
### question: what's the doubles w-l with years played value of 1 (1968) ### answer: SELECT doubles_w_l FROM table_10023387_1 WHERE years_played = "1 (1968)" ### context: CREATE TABLE table_10023387_1 (doubles_w_l VARCHAR, years_played VARCHAR) |
### question: what years are played for player im chung-yang ### answer: SELECT years_played FROM table_10023387_1 WHERE player = "Im Chung-Yang" ### context: CREATE TABLE table_10023387_1 (years_played VARCHAR, player VARCHAR) |
### question: What is the name of the 375 crest length? ### answer: SELECT name FROM table_10020178_1 WHERE crest_length__meters_ = 375 ### context: CREATE TABLE table_10020178_1 (name VARCHAR, crest_length__meters_ VARCHAR) |
### question: What is year of construction of spitallamm? ### answer: SELECT MIN(year_of_construction) FROM table_10020178_1 WHERE name = "Spitallamm" ### context: CREATE TABLE table_10020178_1 (year_of_construction INTEGER, name VARCHAR) |
### question: What is the canton of grande dixence? ### answer: SELECT canton FROM table_10020178_1 WHERE name = "Grande Dixence" ### context: CREATE TABLE table_10020178_1 (canton VARCHAR, name VARCHAR) |
### question: What is the guardian mātṛkā for the guardian whose consort is Svāhā? ### answer: SELECT guardian_mātṛkā FROM table_100518_1 WHERE consort = "Svāhā" ### context: CREATE TABLE table_100518_1 (guardian_mātṛkā VARCHAR, consort VARCHAR) |
### question: Where the mantra is "oṃ yaṃ vāyuve namaḥ", what is the direction of the guardian? ### answer: SELECT direction FROM table_100518_1 WHERE mantra = "Oṃ Yaṃ Vāyuve Namaḥ" ### context: CREATE TABLE table_100518_1 (direction VARCHAR, mantra VARCHAR) |
### question: What weapon is used by the guardian whose consort is śacī? ### answer: SELECT weapon FROM table_100518_1 WHERE consort = "Śacī" ### context: CREATE TABLE table_100518_1 (weapon VARCHAR, consort VARCHAR) |
### question: What are the directions for the guardian whose weapon is khaḍga (sword)? ### answer: SELECT direction FROM table_100518_1 WHERE weapon = "Khaḍga (sword)" ### context: CREATE TABLE table_100518_1 (direction VARCHAR, weapon VARCHAR) |
### question: What are the weapons used by guardians for the direction East? ### answer: SELECT weapon FROM table_100518_1 WHERE direction = "East" ### context: CREATE TABLE table_100518_1 (weapon VARCHAR, direction VARCHAR) |
### question: What are the directions for the guardian whose graha (planet) is bṛhaspati (Jupiter)? ### answer: SELECT direction FROM table_100518_1 WHERE graha__planet_ = "Bṛhaspati (Jupiter)" ### context: CREATE TABLE table_100518_1 (direction VARCHAR, graha__planet_ VARCHAR) |
### question: What is the number of chapters listed for the fraternity with a headquarters in Austin, Texas? ### answer: SELECT MAX(chapters) FROM table_10054296_1 WHERE classification = "Fraternity" AND headquarters = "Austin, Texas" ### context: CREATE TABLE table_10054296_1 (chapters INTEGER, classification VARCHAR,... |
### question: What are the members listed with the sorority classification ### answer: SELECT member FROM table_10054296_1 WHERE classification = "Sorority" ### context: CREATE TABLE table_10054296_1 (member VARCHAR, classification VARCHAR) |
### question: Name the member that has 12 chapters ### answer: SELECT member FROM table_10054296_1 WHERE chapters = 12 ### context: CREATE TABLE table_10054296_1 (member VARCHAR, chapters VARCHAR) |
### question: Where is the headquarters of Alpha Nu Omega ### answer: SELECT headquarters FROM table_10054296_1 WHERE member = "Alpha Nu Omega" ### context: CREATE TABLE table_10054296_1 (headquarters VARCHAR, member VARCHAR) |
### question: what is the number of relapsing fever when malaria is 3000 ### answer: SELECT MIN(relapsing_fever) FROM table_1007688_1 WHERE malaria = "3000" ### context: CREATE TABLE table_1007688_1 (relapsing_fever INTEGER, malaria VARCHAR) |
### question: what is the typhoid fever number for the year 1934 ### answer: SELECT typhoid_fever FROM table_1007688_1 WHERE year = "1934" ### context: CREATE TABLE table_1007688_1 (typhoid_fever VARCHAR, year VARCHAR) |
### question: What are all the typhus number when smallpox is 4 ### answer: SELECT typhus FROM table_1007688_1 WHERE smallpox = 4 ### context: CREATE TABLE table_1007688_1 (typhus VARCHAR, smallpox VARCHAR) |
### question: what is the number of smallpox when typhoid fever is 293 ### answer: SELECT MAX(smallpox) FROM table_1007688_1 WHERE typhoid_fever = 293 ### context: CREATE TABLE table_1007688_1 (smallpox INTEGER, typhoid_fever VARCHAR) |
### question: what is the typhoid fever number for the year 1929 ### answer: SELECT typhoid_fever FROM table_1007688_1 WHERE year = "1929" ### context: CREATE TABLE table_1007688_1 (typhoid_fever VARCHAR, year VARCHAR) |
### question: How many schools are in Bloomington, IN? ### answer: SELECT COUNT(founded) FROM table_10082596_1 WHERE location = "Bloomington, IN" ### context: CREATE TABLE table_10082596_1 (founded VARCHAR, location VARCHAR) |
### question: How many of the schools are designated private/Presbyterian? ### answer: SELECT COUNT(location) FROM table_10082596_1 WHERE affiliation = "Private/Presbyterian" ### context: CREATE TABLE table_10082596_1 (location VARCHAR, affiliation VARCHAR) |
### question: In what year was Lindenwood University founded? ### answer: SELECT MIN(founded) FROM table_10082596_1 WHERE school = "Lindenwood University" ### context: CREATE TABLE table_10082596_1 (founded INTEGER, school VARCHAR) |
### question: How many of the schools listed are in Ames, IA? ### answer: SELECT COUNT(primary_conference) FROM table_10082596_1 WHERE location = "Ames, IA" ### context: CREATE TABLE table_10082596_1 (primary_conference VARCHAR, location VARCHAR) |
### question: What is the capital (endonym) where Douglas is the Capital (exonym)? ### answer: SELECT capital___endonym__ FROM table_1008653_9 WHERE capital___exonym__ = "Douglas" ### context: CREATE TABLE table_1008653_9 (capital___endonym__ VARCHAR, capital___exonym__ VARCHAR) |
### question: How many countries (endonym) has the capital (endonym) of Jakarta? ### answer: SELECT COUNT(country___endonym__) FROM table_1008653_9 WHERE capital___endonym__ = "Jakarta" ### context: CREATE TABLE table_1008653_9 (country___endonym__ VARCHAR, capital___endonym__ VARCHAR) |
### question: What is the country (exonym) where the official or native language(s) (alphabet/script) is Icelandic? ### answer: SELECT country___exonym__ FROM table_1008653_9 WHERE official_or_native_language_s___alphabet_script_ = "Icelandic" ### context: CREATE TABLE table_1008653_9 (country___exonym__ VARCHAR, offic... |
### question: In which country (endonym) is Irish English the official or native language(s) (alphabet/script)? ### answer: SELECT country___endonym__ FROM table_1008653_9 WHERE official_or_native_language_s___alphabet_script_ = "Irish English" ### context: CREATE TABLE table_1008653_9 (country___endonym__ VARCHAR, off... |
### question: Which country (exonym) is the country (endonym) isle of man ellan vannin? ### answer: SELECT country___exonym__ FROM table_1008653_9 WHERE country___endonym__ = "Isle of Man Ellan Vannin" ### context: CREATE TABLE table_1008653_9 (country___exonym__ VARCHAR, country___endonym__ VARCHAR) |
### question: what is the minimum population canada 2011 census with seat of rcm being cowansville ### answer: SELECT MIN(population_canada_2011_census) FROM table_1011906_1 WHERE seat_of_rcm = "Cowansville" ### context: CREATE TABLE table_1011906_1 (population_canada_2011_census INTEGER, seat_of_rcm VARCHAR) |
### question: what's the land area with seat of rcm being granby ### answer: SELECT land_area FROM table_1011906_1 WHERE seat_of_rcm = "Granby" ### context: CREATE TABLE table_1011906_1 (land_area VARCHAR, seat_of_rcm VARCHAR) |
### question: What is the population for County Mayo with the English Name Carrowteige? ### answer: SELECT population FROM table_101196_1 WHERE county = "county Mayo" AND english_name = "Carrowteige" ### context: CREATE TABLE table_101196_1 (population VARCHAR, county VARCHAR, english_name VARCHAR) |
### question: What is the Irish name listed with 62% Irish speakers? ### answer: SELECT irish_name FROM table_101196_1 WHERE irish_speakers = "62%" ### context: CREATE TABLE table_101196_1 (irish_name VARCHAR, irish_speakers VARCHAR) |
### question: What is the population for the Irish Name Leitir mealláin? ### answer: SELECT population FROM table_101196_1 WHERE irish_name = "Leitir Mealláin" ### context: CREATE TABLE table_101196_1 (population VARCHAR, irish_name VARCHAR) |
### question: What is the county for the Irish name Carna? ### answer: SELECT county FROM table_101196_1 WHERE irish_name = "Carna" ### context: CREATE TABLE table_101196_1 (county VARCHAR, irish_name VARCHAR) |
### question: How many County Kerry have 53% Irish speakers? ### answer: SELECT COUNT(english_name) FROM table_101196_1 WHERE irish_speakers = "53%" AND county = "county Kerry" ### context: CREATE TABLE table_101196_1 (english_name VARCHAR, irish_speakers VARCHAR, county VARCHAR) |
### question: What is the population for the English name Spiddal? ### answer: SELECT population FROM table_101196_1 WHERE english_name = "Spiddal" ### context: CREATE TABLE table_101196_1 (population VARCHAR, english_name VARCHAR) |
### question: What is the the Chinese population for the state that has a Filipino population of 1474707? ### answer: SELECT MIN(chinese) FROM table_10118412_6 WHERE filipino = 1474707 ### context: CREATE TABLE table_10118412_6 (chinese INTEGER, filipino VARCHAR) |
### question: How many States have an Indian population of 30947? ### answer: SELECT COUNT(filipino) FROM table_10118412_6 WHERE indian = 30947 ### context: CREATE TABLE table_10118412_6 (filipino VARCHAR, indian VARCHAR) |
### question: What is the highest Indian population? ### answer: SELECT MAX(indian) FROM table_10118412_6 ### context: CREATE TABLE table_10118412_6 (indian INTEGER) |
### question: What is Australia's role in the UN operation Unama? ### answer: SELECT australian_role FROM table_10121127_1 WHERE un_operation_name = "UNAMA" ### context: CREATE TABLE table_10121127_1 (australian_role VARCHAR, un_operation_name VARCHAR) |
### question: What is the UN operation title with the UN operation name, Uncok? ### answer: SELECT un_operation_title FROM table_10121127_1 WHERE un_operation_name = "UNCOK" ### context: CREATE TABLE table_10121127_1 (un_operation_title VARCHAR, un_operation_name VARCHAR) |
### question: How many Australians were in the UN commission on Korea? ### answer: SELECT COUNT(number_of_australians_involved) FROM table_10121127_1 WHERE un_operation_title = "UN Commission on Korea" ### context: CREATE TABLE table_10121127_1 (number_of_australians_involved VARCHAR, un_operation_title VARCHAR) |
### question: When was it where 65 Australians were involved in the UN? ### answer: SELECT dates_of_australian_involvement FROM table_10121127_1 WHERE number_of_australians_involved = "65" ### context: CREATE TABLE table_10121127_1 (dates_of_australian_involvement VARCHAR, number_of_australians_involved VARCHAR) |
### question: What year is the season with the 10.73 million views? ### answer: SELECT tv_season FROM table_10120207_8 WHERE viewers__millions_ = "10.73" ### context: CREATE TABLE table_10120207_8 (tv_season VARCHAR, viewers__millions_ VARCHAR) |
### question: What is the season year where the rank is 39? ### answer: SELECT tv_season FROM table_10120207_8 WHERE rank = "39" ### context: CREATE TABLE table_10120207_8 (tv_season VARCHAR, rank VARCHAR) |
### question: What is the number of season premieres were 10.17 people watched? ### answer: SELECT COUNT(season) AS premiere FROM table_10120207_8 WHERE viewers__millions_ = "10.17" ### context: CREATE TABLE table_10120207_8 (season VARCHAR, viewers__millions_ VARCHAR) |
### question: What is the year of the season that was 12? ### answer: SELECT tv_season FROM table_10120207_8 WHERE season = 12 ### context: CREATE TABLE table_10120207_8 (tv_season VARCHAR, season VARCHAR) |
### question: In 2012 what was the average finish? ### answer: SELECT avg_finish FROM table_1012730_1 WHERE year = 2012 ### context: CREATE TABLE table_1012730_1 (avg_finish VARCHAR, year VARCHAR) |
### question: How many wins happened in 1983? ### answer: SELECT MIN(wins) FROM table_1012730_1 WHERE year = 1983 ### context: CREATE TABLE table_1012730_1 (wins INTEGER, year VARCHAR) |
### question: How many top tens had an average start of 29.4? ### answer: SELECT COUNT(top_10) FROM table_1012730_1 WHERE avg_start = "29.4" ### context: CREATE TABLE table_1012730_1 (top_10 VARCHAR, avg_start VARCHAR) |
### question: How many poles had an average finish of 19.1? ### answer: SELECT MAX(poles) FROM table_1012730_1 WHERE avg_finish = "19.1" ### context: CREATE TABLE table_1012730_1 (poles INTEGER, avg_finish VARCHAR) |
### question: How many starts did Hendrick motorsports have? ### answer: SELECT MIN(starts) FROM table_1012730_1 WHERE team_s_ = "Hendrick Motorsports" ### context: CREATE TABLE table_1012730_1 (starts INTEGER, team_s_ VARCHAR) |
### question: NHL players are all centre in Florida panthers. ### answer: SELECT player FROM table_1013129_10 WHERE position = "Centre" AND nhl_team = "Florida Panthers" ### context: CREATE TABLE table_1013129_10 (player VARCHAR, position VARCHAR, nhl_team VARCHAR) |
### question: NHL team player San Jose Sharks is United States nationally. ### answer: SELECT player FROM table_1013129_10 WHERE nhl_team = "San Jose Sharks" AND nationality = "United States" ### context: CREATE TABLE table_1013129_10 (player VARCHAR, nhl_team VARCHAR, nationality VARCHAR) |
### question: All players are position mark polak. ### answer: SELECT position FROM table_1013129_10 WHERE player = "Mark Polak" ### context: CREATE TABLE table_1013129_10 (position VARCHAR, player VARCHAR) |
### question: Position in nhl team centre are all smaller pick than 243.0 ### answer: SELECT nhl_team FROM table_1013129_10 WHERE position = "Centre" AND pick < 243.0 ### context: CREATE TABLE table_1013129_10 (nhl_team VARCHAR, position VARCHAR, pick VARCHAR) |
### question: What college/junior/club teams do the players from the St. Louis Blues come from? ### answer: SELECT college_junior_club_team FROM table_1013129_11 WHERE nhl_team = "St. Louis Blues" ### context: CREATE TABLE table_1013129_11 (college_junior_club_team VARCHAR, nhl_team VARCHAR) |
### question: What teams do the players from TPS (Finland) play for? ### answer: SELECT nhl_team FROM table_1013129_11 WHERE college_junior_club_team = "TPS (Finland)" ### context: CREATE TABLE table_1013129_11 (nhl_team VARCHAR, college_junior_club_team VARCHAR) |
### question: What high school team did Doug Nolan play for? ### answer: SELECT college_junior_club_team FROM table_1013129_11 WHERE player = "Doug Nolan" ### context: CREATE TABLE table_1013129_11 (college_junior_club_team VARCHAR, player VARCHAR) |
### question: What club team is Per Gustafsson play for? ### answer: SELECT college_junior_club_team FROM table_1013129_11 WHERE player = "Per Gustafsson" ### context: CREATE TABLE table_1013129_11 (college_junior_club_team VARCHAR, player VARCHAR) |
### question: What is the nationality of Shayne Wright? ### answer: SELECT nationality FROM table_1013129_11 WHERE player = "Shayne Wright" ### context: CREATE TABLE table_1013129_11 (nationality VARCHAR, player VARCHAR) |
### question: How many votes did Southern England cast whilst Northern Ireland cast 3? ### answer: SELECT southern_england FROM table_10128185_2 WHERE northern_ireland = 3 ### context: CREATE TABLE table_10128185_2 (southern_england VARCHAR, northern_ireland VARCHAR) |
### question: What was the lowest number of votes Scotland cast? ### answer: SELECT MIN(scotland) FROM table_10128185_2 ### context: CREATE TABLE table_10128185_2 (scotland INTEGER) |
### question: What is the total number of votes if Scotland cast 35? ### answer: SELECT COUNT(scotland) FROM table_10128185_2 WHERE total = 35 ### context: CREATE TABLE table_10128185_2 (scotland VARCHAR, total VARCHAR) |
### question: How many votes did Northern Ireland cast if the total was 35? ### answer: SELECT northern_ireland FROM table_10128185_2 WHERE total = 35 ### context: CREATE TABLE table_10128185_2 (northern_ireland VARCHAR, total VARCHAR) |
### question: How many votes did Wales cast when Northern England cast 6? ### answer: SELECT MIN(wales) FROM table_10128185_2 WHERE northern_england = 6 ### context: CREATE TABLE table_10128185_2 (wales INTEGER, northern_england VARCHAR) |
### question: What teams had 9 in the top 5 and 1 wins? ### answer: SELECT team_s_ FROM table_1012730_2 WHERE top_5 = 9 AND wins = 1 ### context: CREATE TABLE table_1012730_2 (team_s_ VARCHAR, top_5 VARCHAR, wins VARCHAR) |
### question: What teams did the player vadim sharifijanov play for? ### answer: SELECT college_junior_club_team FROM table_1013129_1 WHERE player = "Vadim Sharifijanov" ### context: CREATE TABLE table_1013129_1 (college_junior_club_team VARCHAR, player VARCHAR) |
### question: What positions do the hartford whalers nhl team have? ### answer: SELECT position FROM table_1013129_1 WHERE nhl_team = "Hartford Whalers" ### context: CREATE TABLE table_1013129_1 (position VARCHAR, nhl_team VARCHAR) |
### question: What is the smallest pick for the player, brett lindros? ### answer: SELECT MIN(pick) FROM table_1013129_1 WHERE player = "Brett Lindros" ### context: CREATE TABLE table_1013129_1 (pick INTEGER, player VARCHAR) |
### question: What positions does the college/junior/club team, molot perm (russia) have? ### answer: SELECT position FROM table_1013129_1 WHERE college_junior_club_team = "Molot Perm (Russia)" ### context: CREATE TABLE table_1013129_1 (position VARCHAR, college_junior_club_team VARCHAR) |
### question: The nhl team new york islanders is what nationality? ### answer: SELECT nationality FROM table_1013129_1 WHERE nhl_team = "New York Islanders" ### context: CREATE TABLE table_1013129_1 (nationality VARCHAR, nhl_team VARCHAR) |
### question: What is the name of the vacator for district Louisiana 1st? ### answer: SELECT vacator FROM table_1013168_3 WHERE district = "Louisiana 1st" ### context: CREATE TABLE table_1013168_3 (vacator VARCHAR, district VARCHAR) |
### question: What is the notion when the crystal structure is tetragonal and the formula is bi 2 sr 2 cacu 2 o 8 ### answer: SELECT notation FROM table_101336_1 WHERE crystal_structure = "Tetragonal" AND formula = "Bi 2 Sr 2 CaCu 2 O 8" ### context: CREATE TABLE table_101336_1 (notation VARCHAR, crystal_structure VARC... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.