combined_text stringlengths 106 1.05k |
|---|
###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 = "fac... |
###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"###context:CREATE TABLE table_name_41 (condition VARCHAR, partial_thromboplastin_... |
###question:What is the ICAO for Antalya Airport?###answer:SELECT icao FROM table_name_86 WHERE airport = "antalya airport"###context:CREATE TABLE table_name_86 (icao 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"###context:CREATE TABLE table_name_39 (iata VARCHAR, airport VARCHAR) |
###question:What country is the IATA BLQ located in?###answer:SELECT country FROM table_name_68 WHERE iata = "blq"###context:CREATE TABLE table_name_68 (country VARCHAR, iata VARCHAR) |
###question:What is the IATA of Madrid-Barajas Airport?###answer:SELECT iata FROM table_name_8 WHERE airport = "madrid-barajas airport"###context:CREATE TABLE table_name_8 (iata VARCHAR, airport VARCHAR) |
###question:Which city has the ICAO of LIRF?###answer:SELECT city FROM table_name_84 WHERE icao = "lirf"###context:CREATE TABLE table_name_84 (city VARCHAR, icao VARCHAR) |
###question:Which city is Naples Airport located in?###answer:SELECT city FROM table_name_27 WHERE airport = "naples airport"###context:CREATE TABLE table_name_27 (city VARCHAR, airport 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)"###context:CREATE TABLE table_name_39 (ryuji_hijikata VARCHAR, taka_michinoku 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"###context:CREATE TABLE table_name_72 (ryuji_hijikata VARCHAR, block_a 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"###context:CREATE TABLE table_name_49 (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"###context:CREATE TABLE table_name_23 (away_team 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"###context:CREATE TABLE table_name_82 (away_team VARCHAR, venue 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"###context:CREATE TABLE table_name_21 (track VARCHAR, translation VARCHAR) |
###question:What driver went 14 rounds with a 193 Chassis?###answer: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 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"###context:CREATE TABLE table_name_31 (engine VARCHAR, chassis 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"###context:CREATE TABLE table_name_46 (entrant VARCHAR, rounds VARCHAR, driver VARCHAR) |
###question:What engine did Riccardo Patrese use?###answer:SELECT engine FROM table_name_12 WHERE driver = "riccardo patrese"###context:CREATE TABLE table_name_12 (engine VARCHAR, driver 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"###context:CREATE TABLE table_name_53 (venue VARCHAR, 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"###context:CREATE TABLE table_name_27 (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"###context:CREATE TABLE table_name_78 (home_team 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"###context:CREATE TABLE table_name_2 (score VARCHAR, opponents 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"###context:CREATE TABLE table_name_91 (match_report VARCHAR, date 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"###context:CREATE TABLE table_name_59 (date VARCHAR, opponents VARCHAR, competition VARCHAR) |
###question:Which competition was held on September 10, 2005?###answer:SELECT competition FROM table_name_58 WHERE date = "september 10, 2005"###context:CREATE TABLE table_name_58 (competition VARCHAR, date VARCHAR) |
###question:In which competition was the score 3-0?###answer:SELECT competition FROM table_name_79 WHERE score = "3-0"###context:CREATE TABLE table_name_79 (competition 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"###context:CREATE TABLE table_name_39 (visitor VARCHAR, home VARCHAR, score 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"###context:CREATE TABLE table_name_66 (date_of_birth ... |
###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###context:CREATE TABLE table_name_83 (debut_year INTEGER, player VARCHAR, games VARCHAR) |
###question:How people attended Victoria Park?###answer:SELECT AVG(crowd) FROM table_name_60 WHERE venue = "victoria park"###context:CREATE TABLE table_name_60 (crowd INTEGER, venue 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"###context:CREATE TABLE table_name_97 (away_team VARCHAR) |
###question:Who played Melbourne as the home team?###answer:SELECT home_team FROM table_name_38 WHERE away_team = "melbourne"###context:CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR) |
###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###context:CREATE TABLE table_name_30 (away_team VARCHAR, crowd INTEGER) |
###question:Which away team played at MCG?###answer:SELECT away_team FROM table_name_55 WHERE venue = "mcg"###context:CREATE TABLE table_name_55 (away_team VARCHAR, venue VARCHAR) |
###question:What was the date when Geelong was the home team?###answer:SELECT date FROM table_name_49 WHERE home_team = "geelong"###context:CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR) |
###question:What is Damien Martyn's bowling style?###answer: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 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"###context:CREATE TABLE table_name_77 (batting_style 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"###context:CREATE TABLE table_name_70 (first_class_team VARCHAR, date_of_birth 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"###context:CREATE TABLE table_name_27 (type VARCHAR, eu_council_presidency VARCHAR, president_in_office VAR... |
###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###context:CREATE TABLE table_name_85 (host_city VARCHAR, president_in_office VARCHAR, year 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###context:CREATE TABLE table_name_98 (average VARCHAR, evenin... |
###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##... |
###question:Name the seven for 29 november 1690###answer:SELECT seven FROM table_name_24 WHERE date = "29 november 1690"###context:CREATE TABLE table_name_24 (seven VARCHAR, date VARCHAR) |
###question:Name the four for 6 march 1801###answer:SELECT four FROM table_name_23 WHERE date = "6 march 1801"###context:CREATE TABLE table_name_23 (four VARCHAR, date 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"###context:CREATE TABLE table_... |
###question:Name the three for 16 december 1676###answer:SELECT three FROM table_name_83 WHERE date = "16 december 1676"###context:CREATE TABLE table_name_83 (three VARCHAR, date 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###context:CREATE TABLE table_name_73 (grid INTEGER, driver VARCHAR, laps VARCHAR) |
###question:What final was Farhad Rezaei in?###answer:SELECT final FROM table_name_46 WHERE athlete = "farhad rezaei"###context:CREATE TABLE table_name_46 (final VARCHAR, athlete VARCHAR) |
###question:What final was ranked 4?###answer:SELECT final FROM table_name_96 WHERE rank = "4"###context:CREATE TABLE table_name_96 (final VARCHAR, rank VARCHAR) |
###question:What was the reanking of Hamid Veisi?###answer:SELECT rank FROM table_name_44 WHERE athlete = "hamid veisi"###context:CREATE TABLE table_name_44 (rank VARCHAR, athlete 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"###context:CREATE TABLE table_name_29 (franchise VARCHAR, finish 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###context:CREATE TABLE table_name_11 (year INTEGER, finish VARCHAR, percentage 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###context:CREATE TABLE table_name_88 (finish VARCHAR, league VARCHAR, year 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"###context:CREATE ... |
###question:What was the venue when the home team was footscray?###answer: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 crowd when the away team was hawthorn?###answer:SELECT MIN(crowd) FROM table_name_72 WHERE away_team = "hawthorn"###context:CREATE TABLE table_name_72 (crowd INTEGER, away_team VARCHAR) |
###question:What city houses the Ciro Vigorito stadium?###answer:SELECT city FROM table_name_86 WHERE stadium = "ciro vigorito"###context:CREATE TABLE table_name_86 (city VARCHAR, stadium 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###context:CREATE TABLE table_name_7 (silver INTEGER, gold VARCHAR, total VARCHAR, nation 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###context:CREATE TABLE table_name_62 (silver INTEGER, gold VARCHAR, nation VARCHAR, total 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###context:CREATE TABLE table_name_12 (gold VARCHAR, total VARCHAR, silver VARCHAR, nation 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###context:CREATE TABLE table_name_25 (gold INTEGER, nation VARCHAR, bronze VARCHAR) |
###question:Tell me the sum of gold for bronze less than 0###answer:SELECT SUM(gold) FROM table_name_31 WHERE bronze < 0###context:CREATE TABLE table_name_31 (gold INTEGER, bronze INTEGER) |
###question:What tyre was used in the Zandvoort circuit?###answer:SELECT tyre FROM table_name_71 WHERE circuit = "zandvoort"###context:CREATE TABLE table_name_71 (tyre VARCHAR, circuit 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"###context:CREATE TABLE table_name_86 (circuit 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"###context:CREATE TABLE table_name_32 (winning_driver VARCHAR, constructor VARCHAR, fastest_lap 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"###context:CREATE TABLE table_name_4 (ra... |
###question:Which county is named broderick wood products?###answer:SELECT county FROM table_name_7 WHERE name = "broderick wood products"###context:CREATE TABLE table_name_7 (county 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"###context:CREATE TABLE table_name_76 (construction_completed 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"###context:CREATE TABLE table_name_98 (cerclis_id VARCHAR, listed VARCHAR, name 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"###context:CREATE TABLE table_name_7 (nominee VARCHAR, outcome VARCHAR, category 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"###context:CREATE TABLE table_name_80 (ceremony VARCHAR, nominee VARCHAR) |
###question:In which ceremony was Jayant nominated for an award?###answer:SELECT ceremony FROM table_name_69 WHERE nominee = "jayant"###context:CREATE TABLE table_name_69 (ceremony VARCHAR, nominee VARCHAR) |
###question:What surface was the April 24, 2003 match played on?###answer:SELECT surface FROM table_name_88 WHERE date = "april 24, 2003"###context:CREATE TABLE table_name_88 (surface VARCHAR, date 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###context:CREATE TABLE table_name_47 (top_25 INTEGER, cuts_made 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###context:CREATE TABLE table_name_54 (cuts_made INTEGER, top_25 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"###context:CREATE TABLE table_name_6 (grid INTEGER, time_retired VARCHAR, driver VARCHAR) |
###question:What is the number of laps for Grid 14?###answer: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 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###context:CREATE TABLE table_name_65 (grid VARCHAR, driver VARCHAR, laps VARCHAR) |
###question:Which home team has more than 19,000 spectators?###answer:SELECT home_team FROM table_name_73 WHERE crowd > 19 OFFSET 000###context:CREATE TABLE table_name_73 (home_team VARCHAR, crowd INTEGER) |
###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###context:CREATE TABLE table_name_54 (theme VARCHAR, year VARCHAR, 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"###context:CREATE TABLE table_name_78 (year INTEGER, artist VARCHAR, issue_price VARCHAR) |
###question:What is the Crowd for the Venue of Princes Park?###answer:SELECT crowd FROM table_name_88 WHERE venue = "princes park"###context:CREATE TABLE table_name_88 (crowd VARCHAR, venue 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"###context:CREATE TABLE table_name_98 (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"###context:CREATE TABLE table_name_33 (home_team 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"###context:CREATE TABLE table_name_89 (home_team VARCHAR, venue VARCHAR) |
###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###context:CREATE TABLE table_name_38 (earnings__ INTEGER, rank INTEGER) |
###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"###context:CREATE TABLE table_name_73 (wins VARCHAR, rank VARCHAR, player VARCHAR) |
###question:Where was the argentine grand prix?###answer:SELECT location FROM table_name_42 WHERE race = "argentine grand prix"###context:CREATE TABLE table_name_42 (location VARCHAR, race VARCHAR) |
###question:What was the constructor for the fastest nelson piquet?###answer:SELECT constructor FROM table_name_72 WHERE fastest_lap = "nelson piquet"###context:CREATE TABLE table_name_72 (constructor VARCHAR, fastest_lap VARCHAR) |
###question:Tell me the constructor for zolder###answer:SELECT constructor FROM table_name_64 WHERE location = "zolder"###context:CREATE TABLE table_name_64 (constructor VARCHAR, location VARCHAR) |
###question:Name the constructor for 10 august###answer:SELECT constructor FROM table_name_75 WHERE date = "10 august"###context:CREATE TABLE table_name_75 (constructor VARCHAR, date 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###context:CREATE TABLE table_name_77 (years_at_club VARCHAR, debu... |
###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"###context:CREATE TABLE table_name_12 (date_of_birth VARCHAR, years_at_club 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"###context:CREATE TABLE table_name_55 (rank 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"###context:CREATE TABLE table_name_40 (name VARCHAR, year_appointed VARCHAR, years_until_mandatory_re... |
###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"###context:CREATE TABLE table_name_16 (player VARCHAR, no_s_ VARCHAR, school_club_team_country 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"###context:CREATE TABLE table_name_16 (position VARCHAR, height_in_ft 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"###context:CREATE TABLE table_name_94 (no_s_ VARCHAR, school_club_team_country VARCHAR) |
###question:Which years did the Rockets number 6 play?###answer: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 2nd senior VIII that also has a 4th senior stm?###answer: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) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.