combined_text stringlengths 106 1.05k |
|---|
###question:Which country's material was concrete when the span metres were less than 270, span feet is more than 837, and the year opened was 1943?###answer:SELECT country FROM table_name_36 WHERE material = "concrete" AND span_metres < 270 AND span_feet > 837 AND year_opened = "1943"###context:CREATE TABLE table_name... |
###question:What country won in 1993?###answer:SELECT country FROM table_name_28 WHERE year_s__won = "1993"###context:CREATE TABLE table_name_28 (country VARCHAR, year_s__won VARCHAR) |
###question:What was the finish with a total larger than 286, a to par of +4 and Bob Tway played?###answer:SELECT finish FROM table_name_70 WHERE total > 286 AND to_par = "+4" AND player = "bob tway"###context:CREATE TABLE table_name_70 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR) |
###question:What player in the United States had a total of 286 and won in 2003?###answer:SELECT player FROM table_name_78 WHERE country = "united states" AND total = 286 AND year_s__won = "2003"###context:CREATE TABLE table_name_78 (player VARCHAR, year_s__won VARCHAR, country VARCHAR, total VARCHAR) |
###question:What country has a total of 293?###answer:SELECT country FROM table_name_37 WHERE total = 293###context:CREATE TABLE table_name_37 (country VARCHAR, total VARCHAR) |
###question:What player is from Fiji?###answer:SELECT player FROM table_name_67 WHERE country = "fiji"###context:CREATE TABLE table_name_67 (player VARCHAR, country VARCHAR) |
###question:Which method was used in the welterweight class with a preliminary card?###answer:SELECT method FROM table_name_58 WHERE weight_class = "welterweight" AND card = "preliminary"###context:CREATE TABLE table_name_58 (method VARCHAR, weight_class VARCHAR, card VARCHAR) |
###question:Which method was used in a round greater than 3?###answer:SELECT method FROM table_name_15 WHERE round > 3###context:CREATE TABLE table_name_15 (method VARCHAR, round INTEGER) |
###question:Which weight class had a time of 4:59?###answer:SELECT weight_class FROM table_name_65 WHERE time = "4:59"###context:CREATE TABLE table_name_65 (weight_class VARCHAR, time VARCHAR) |
###question:What was the time for a round less than 3?###answer:SELECT time FROM table_name_35 WHERE round < 3###context:CREATE TABLE table_name_35 (time VARCHAR, round INTEGER) |
###question:What is the smallest round for the welterweight class with a preliminary card?###answer:SELECT MIN(round) FROM table_name_11 WHERE weight_class = "welterweight" AND card = "preliminary"###context:CREATE TABLE table_name_11 (round INTEGER, weight_class VARCHAR, card VARCHAR) |
###question:Were there Bulletins to all contacts of the proprietary license created by Microsoft with no transport layer of security?###answer:SELECT bulletins_to_all_contacts FROM table_name_43 WHERE transport_layer_security = "no" AND license = "proprietary" AND creator = "microsoft"###context:CREATE TABLE table_name... |
###question:Were there Bulletins to all contacts of the license created by GG Network?###answer:SELECT bulletins_to_all_contacts FROM table_name_69 WHERE creator = "gg network"###context:CREATE TABLE table_name_69 (bulletins_to_all_contacts VARCHAR, creator VARCHAR) |
###question:What is the name of the license created by IETF?###answer:SELECT license FROM table_name_72 WHERE creator = "ietf"###context:CREATE TABLE table_name_72 (license VARCHAR, creator VARCHAR) |
###question:What is the envelopment for the rhabdoviridae family?###answer:SELECT envelopment FROM table_name_83 WHERE family = "rhabdoviridae"###context:CREATE TABLE table_name_83 (envelopment VARCHAR, family VARCHAR) |
###question:Which Baltimore group has a viron shape of icosahedral, replicates in the cytoplasm, is non-enveloped, and is from the astroviridae family?###answer:SELECT baltimore_group FROM table_name_13 WHERE virion_shape = "icosahedral" AND envelopment = "non-enveloped" AND replication_site = "cytoplasm" AND family = ... |
###question:Which Baltimore group is of the retroviridae family?###answer:SELECT baltimore_group FROM table_name_62 WHERE family = "retroviridae"###context:CREATE TABLE table_name_62 (baltimore_group VARCHAR, family VARCHAR) |
###question:Which Baltimore group is of the togaviridae family?###answer:SELECT baltimore_group FROM table_name_27 WHERE family = "togaviridae"###context:CREATE TABLE table_name_27 (baltimore_group VARCHAR, family VARCHAR) |
###question:Which Baltimore group is non-enveloped and is of the papillomaviridae family?###answer:SELECT baltimore_group FROM table_name_85 WHERE envelopment = "non-enveloped" AND family = "papillomaviridae"###context:CREATE TABLE table_name_85 (baltimore_group VARCHAR, envelopment VARCHAR, family VARCHAR) |
###question:What is the replication site when the species is enveloped and is of the bunyaviridae family?###answer:SELECT replication_site FROM table_name_58 WHERE envelopment = "enveloped" AND family = "bunyaviridae"###context:CREATE TABLE table_name_58 (replication_site VARCHAR, envelopment VARCHAR, family VARCHAR) |
###question:What is the highest League Cup with a Player that is steed malbranque?###answer:SELECT MAX(league_cup) FROM table_name_95 WHERE player = "steed malbranque"###context:CREATE TABLE table_name_95 (league_cup INTEGER, player VARCHAR) |
###question:What is the Manufacturer with a Fuel Type that is diesel?###answer:SELECT manufacturer FROM table_name_9 WHERE fuel_type = "diesel"###context:CREATE TABLE table_name_9 (manufacturer VARCHAR, fuel_type VARCHAR) |
###question:What is the Higgins with a Scallon that is 2%?###answer:SELECT higgins FROM table_name_35 WHERE scallon = "2%"###context:CREATE TABLE table_name_35 (higgins VARCHAR, scallon VARCHAR) |
###question:What is the Higgins with a Davis that is 9%?###answer:SELECT higgins FROM table_name_90 WHERE davis = "9%"###context:CREATE TABLE table_name_90 (higgins VARCHAR, davis VARCHAR) |
###question:What is the Source with a Norris that is 7%?###answer:SELECT source FROM table_name_45 WHERE norris = "7%"###context:CREATE TABLE table_name_45 (source VARCHAR, norris VARCHAR) |
###question:What is the game 2 sum attendance of the team with a total attendance of 759,997?###answer:SELECT SUM(game_2) FROM table_name_67 WHERE total = 759 OFFSET 997###context:CREATE TABLE table_name_67 (game_2 INTEGER, total VARCHAR) |
###question:What position does Barry Rose play?###answer:SELECT position FROM table_name_55 WHERE player = "barry rose"###context:CREATE TABLE table_name_55 (position VARCHAR, player VARCHAR) |
###question:Which Jersey # has a Height (cm) of 183, a Name of paul stastny, and a Weight (kg) smaller than 93?###answer:SELECT COUNT(jersey__number) FROM table_name_98 WHERE height__cm_ = 183 AND name = "paul stastny" AND weight__kg_ < 93###context:CREATE TABLE table_name_98 (jersey__number VARCHAR, weight__kg_ VARCHA... |
###question:When the Runner-up was Angaston, and the Year was less than 1927, who was the Captain?###answer:SELECT captain FROM table_name_61 WHERE year < 1927 AND runner_up = "angaston"###context:CREATE TABLE table_name_61 (captain VARCHAR, year VARCHAR, runner_up VARCHAR) |
###question:When the Score was kapunda 7-7-49 angaston 6-8-44, who was the Runner-up?###answer:SELECT runner_up FROM table_name_14 WHERE score = "kapunda 7-7-49 angaston 6-8-44"###context:CREATE TABLE table_name_14 (runner_up VARCHAR, score VARCHAR) |
###question:Which year had a Score of kapunda 14-13-97 tanunda 5-14-44?###answer:SELECT SUM(year) FROM table_name_53 WHERE score = "kapunda 14-13-97 tanunda 5-14-44"###context:CREATE TABLE table_name_53 (year INTEGER, score VARCHAR) |
###question:When the year is later than 1939 and the Runner-up is Tanunda, who is the Captain?###answer:SELECT captain FROM table_name_57 WHERE runner_up = "tanunda" AND year > 1939###context:CREATE TABLE table_name_57 (captain VARCHAR, runner_up VARCHAR, year VARCHAR) |
###question:What's the tournamnet name that has a 2001 of 1r and 2011?###answer:SELECT tournament FROM table_name_25 WHERE 2001 = "1r" AND 2011 = "a"###context:CREATE TABLE table_name_25 (tournament VARCHAR) |
###question:What is the 2001 tournament with a 2005 4r?###answer:SELECT 2001 FROM table_name_83 WHERE 2005 = "4r"###context:CREATE TABLE table_name_83 (Id VARCHAR) |
###question:What french open tournament happened in 2010 and has a 2004 1r?###answer:SELECT 2010 FROM table_name_58 WHERE 2004 = "1r" AND tournament = "french open"###context:CREATE TABLE table_name_58 (tournament VARCHAR) |
###question:What 2002 tournament has 2008 career statistics?###answer:SELECT 2002 FROM table_name_21 WHERE 2008 = "career statistics"###context:CREATE TABLE table_name_21 (Id VARCHAR) |
###question:Which season has a Staffel E of Stahl Riesa?###answer:SELECT season FROM table_name_21 WHERE staffel_e = "stahl riesa"###context:CREATE TABLE table_name_21 (season VARCHAR, staffel_e VARCHAR) |
###question:What is the Staffel D in the season 1983-84 with a Staffel E of Motor Suhl?###answer:SELECT staffel_d FROM table_name_51 WHERE staffel_e = "motor suhl" AND season = "1983-84"###context:CREATE TABLE table_name_51 (staffel_d VARCHAR, staffel_e VARCHAR, season VARCHAR) |
###question:What is the Staffel A that has a Staffel D of Energie Cottbus and a Staffel C of Chemie Leipzig and a Staffel B of 1. FC Union Berlin?###answer:SELECT staffel_a FROM table_name_75 WHERE staffel_d = "energie cottbus" AND staffel_c = "chemie leipzig" AND staffel_b = "1. fc union berlin"###context:CREATE TABLE... |
###question:What is the Staffel B that has Hallescher Fc Chemie as Staffel C?###answer:SELECT staffel_b FROM table_name_97 WHERE staffel_c = "hallescher fc chemie"###context:CREATE TABLE table_name_97 (staffel_b VARCHAR, staffel_c VARCHAR) |
###question:Which week's date was September 27, 1953?###answer:SELECT week FROM table_name_8 WHERE date = "september 27, 1953"###context:CREATE TABLE table_name_8 (week VARCHAR, date VARCHAR) |
###question:What is the largest attendance number when the Chicago Cardinals were the opponent and the week was less than 4?###answer:SELECT MAX(attendance) FROM table_name_48 WHERE opponent = "chicago cardinals" AND week < 4###context:CREATE TABLE table_name_48 (attendance INTEGER, opponent VARCHAR, week VARCHAR) |
###question:When Gigi Fernández Natalia Zvereva 6–2, 6–1 won, who was the Tier II Runner-up?###answer:SELECT runner_up FROM table_name_85 WHERE tier = "tier ii" AND winner = "gigi fernández natalia zvereva 6–2, 6–1"###context:CREATE TABLE table_name_85 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR) |
###question:Who were the semi finalists when Alexia Dechaume-Balleret Sandrine testud was the runner-up?###answer:SELECT semi_finalists FROM table_name_81 WHERE runner_up = "alexia dechaume-balleret sandrine testud"###context:CREATE TABLE table_name_81 (semi_finalists VARCHAR, runner_up VARCHAR) |
###question:What tier had a runner-up of Lisa Raymond and a semifinalist of Sandrine Testud Mary Pierce?###answer:SELECT tier FROM table_name_46 WHERE semi_finalists = "sandrine testud mary pierce" AND runner_up = "lisa raymond"###context:CREATE TABLE table_name_46 (tier VARCHAR, semi_finalists VARCHAR, runner_up VARCH... |
###question:Who were the semi finalists when the runner-up was Alexandra Fusai Wiltrud Probst?###answer:SELECT semi_finalists FROM table_name_92 WHERE runner_up = "alexandra fusai wiltrud probst"###context:CREATE TABLE table_name_92 (semi_finalists VARCHAR, runner_up VARCHAR) |
###question:What is the Label that shows on april 7, 1967?###answer:SELECT label FROM table_name_77 WHERE date = "april 7, 1967"###context:CREATE TABLE table_name_77 (label VARCHAR, date VARCHAR) |
###question:What is the Date when the Country shows uk, the Format is cd, and the Catalog of edcd 227?###answer:SELECT date FROM table_name_91 WHERE country = "uk" AND format = "cd" AND catalog = "edcd 227"###context:CREATE TABLE table_name_91 (date VARCHAR, catalog VARCHAR, country VARCHAR, format VARCHAR) |
###question:What is the Date for Catalog of lp 5060?###answer:SELECT date FROM table_name_65 WHERE catalog = "lp 5060"###context:CREATE TABLE table_name_65 (date VARCHAR, catalog VARCHAR) |
###question:What Date was the Country of japan, and a Label of sony?###answer:SELECT date FROM table_name_75 WHERE country = "japan" AND label = "sony"###context:CREATE TABLE table_name_75 (date VARCHAR, country VARCHAR, label VARCHAR) |
###question:What is the Catalog with a Format of lp, a Country of us, a Label of sundazed, and a Date of 2006?###answer:SELECT catalog FROM table_name_46 WHERE format = "lp" AND country = "us" AND label = "sundazed" AND date = "2006"###context:CREATE TABLE table_name_46 (catalog VARCHAR, date VARCHAR, label VARCHAR, fo... |
###question:What is the Label name that has a Country of uk and the Catalog is bpg 62988?###answer:SELECT label FROM table_name_73 WHERE country = "uk" AND catalog = "bpg 62988"###context:CREATE TABLE table_name_73 (label VARCHAR, country VARCHAR, catalog VARCHAR) |
###question:What were the Lyrics (l) and Music (m) for the Artist who was in a Position higher than 3 and who earned 1st Place?###answer:SELECT lyrics__l____music__m_ FROM table_name_16 WHERE position > 3 AND place = "1st"###context:CREATE TABLE table_name_16 (lyrics__l____music__m_ VARCHAR, position VARCHAR, place VAR... |
###question:What is the Rank of the Nation with 0 Silver and more than 1 Bronze?###answer:SELECT MAX(rank) FROM table_name_24 WHERE silver < 1 AND bronze > 1###context:CREATE TABLE table_name_24 (rank INTEGER, silver VARCHAR, bronze VARCHAR) |
###question:What is the Total medals for the Nation with 1 Silver and 0 Golds?###answer:SELECT COUNT(total) FROM table_name_89 WHERE silver = 1 AND gold < 0###context:CREATE TABLE table_name_89 (total VARCHAR, silver VARCHAR, gold VARCHAR) |
###question:Which potential's period 5 is 4 and has an element of antimony?###answer:SELECT potential FROM table_name_81 WHERE period = 5 AND element = "antimony"###context:CREATE TABLE table_name_81 (potential VARCHAR, period VARCHAR, element VARCHAR) |
###question:Which lowest period's element is ruthenium?###answer:SELECT MIN(period) FROM table_name_28 WHERE element = "ruthenium"###context:CREATE TABLE table_name_28 (period INTEGER, element VARCHAR) |
###question:Which highest period's element is platinum?###answer:SELECT MAX(period) FROM table_name_19 WHERE element = "platinum"###context:CREATE TABLE table_name_19 (period INTEGER, element VARCHAR) |
###question:What is the Venue with a Result that is lost?###answer:SELECT venue FROM table_name_40 WHERE result = "lost"###context:CREATE TABLE table_name_40 (venue VARCHAR, result VARCHAR) |
###question:What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4?###answer:SELECT MAX(administrative_panel) FROM table_name_14 WHERE cultural_and_educational_panel = 2 AND industrial_and_commercial_panel > 4###context:CREATE TABLE tabl... |
###question:What is the total for National University of Ireland with an industrial and commercial panel less than 1, and the cultural and educational panel bigger than 0?###answer:SELECT COUNT(national_university_of_ireland) FROM table_name_17 WHERE industrial_and_commercial_panel < 1 AND cultural_and_educational_pane... |
###question:What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4?###answer:SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4###context:CREA... |
###question:What is the biggest administrative panel with a nominated by the Taoiseach greater than 3 and an argricultural panel of 5, plust a cultural and educational panel larger than 2?###answer:SELECT MAX(administrative_panel) FROM table_name_37 WHERE nominated_by_the_taoiseach > 3 AND agricultural_panel = 5 AND cu... |
###question:What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19?###answer:SELECT MIN(cultural_and_educational_panel) FROM table_name_74 WHERE nominated_by_the_taoiseach < 5 AND total > 19###context:CREATE TABLE table_name_74 (cultural_and_educa... |
###question:With the cultural and educational panel less than 0 what is the average industrial and commercial panel?###answer:SELECT AVG(industrial_and_commercial_panel) FROM table_name_22 WHERE cultural_and_educational_panel < 0###context:CREATE TABLE table_name_22 (industrial_and_commercial_panel INTEGER, cultural_an... |
###question:What is the total number of silver medals for nations with 5 total medals and more than 3 gold medals?###answer:SELECT COUNT(silver) FROM table_name_22 WHERE total = 5 AND gold > 3###context:CREATE TABLE table_name_22 (silver VARCHAR, total VARCHAR, gold VARCHAR) |
###question:What was the label in 1969?###answer:SELECT label FROM table_name_18 WHERE date = 1969###context:CREATE TABLE table_name_18 (label VARCHAR, date VARCHAR) |
###question:What is the Commissioned date of the ship in NVR Page MCM02?###answer:SELECT commissioned FROM table_name_29 WHERE nvr_page = "mcm02"###context:CREATE TABLE table_name_29 (commissioned VARCHAR, nvr_page VARCHAR) |
###question:What is the NVR Page of the ship with a Home Port of Sasebo, Japan?###answer:SELECT nvr_page FROM table_name_6 WHERE home_port = "sasebo, japan"###context:CREATE TABLE table_name_6 (nvr_page VARCHAR, home_port VARCHAR) |
###question:Which week's game was attended by 54,015 people?###answer:SELECT COUNT(week) FROM table_name_34 WHERE attendance = 54 OFFSET 015###context:CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR) |
###question:What date was the game that was before week 4 and was attended by over 54,015 people ?###answer:SELECT date FROM table_name_33 WHERE week < 4 AND attendance > 54 OFFSET 015###context:CREATE TABLE table_name_33 (date VARCHAR, week VARCHAR, attendance VARCHAR) |
###question:In what venues was the match with a final result of Eng by 4 wkts?###answer:SELECT venue FROM table_name_19 WHERE result = "eng by 4 wkts"###context:CREATE TABLE table_name_19 (venue VARCHAR, result VARCHAR) |
###question:What is the running time of the transmission on bbc four channels on 23 March 2008?###answer:SELECT Running AS time FROM table_name_46 WHERE channel = "bbc four" AND date = "23 march 2008"###context:CREATE TABLE table_name_46 (Running VARCHAR, channel VARCHAR, date VARCHAR) |
###question:What is the notes of the transmission on channel bbc four and a time of 22:30?###answer:SELECT notes FROM table_name_15 WHERE channel = "bbc four" AND time = "22:30"###context:CREATE TABLE table_name_15 (notes VARCHAR, channel VARCHAR, time VARCHAR) |
###question:Which channel was on 28 December 2008?###answer:SELECT channel FROM table_name_74 WHERE date = "28 december 2008"###context:CREATE TABLE table_name_74 (channel VARCHAR, date VARCHAR) |
###question:What is the channel with a 03:40 time?###answer:SELECT channel FROM table_name_51 WHERE time = "03:40"###context:CREATE TABLE table_name_51 (channel VARCHAR, time VARCHAR) |
###question:What is the Other b when the FA Cup shows 3 (17)?###answer:SELECT other_b FROM table_name_96 WHERE fa_cup = "3 (17)"###context:CREATE TABLE table_name_96 (other_b VARCHAR, fa_cup VARCHAR) |
###question:What is the Total when the league shows 79 (221)?###answer:SELECT total FROM table_name_39 WHERE league_a = "79 (221)"###context:CREATE TABLE table_name_39 (total VARCHAR, league_a VARCHAR) |
###question:What is the Name when the League Cup shows 0 (0), and the FA Cup is 12 (14)?###answer:SELECT name FROM table_name_40 WHERE league_cup = "0 (0)" AND fa_cup = "12 (14)"###context:CREATE TABLE table_name_40 (name VARCHAR, league_cup VARCHAR, fa_cup VARCHAR) |
###question:What is the League for 1952–1960?###answer:SELECT league_a FROM table_name_2 WHERE years = "1952–1960"###context:CREATE TABLE table_name_2 (league_a VARCHAR, years VARCHAR) |
###question:What shows for the League when the FA Cup is 6 (20)?###answer:SELECT league_a FROM table_name_47 WHERE fa_cup = "6 (20)"###context:CREATE TABLE table_name_47 (league_a VARCHAR, fa_cup VARCHAR) |
###question:What club wast he player hristo stoitchkov from?###answer:SELECT club FROM table_name_97 WHERE player = "hristo stoitchkov"###context:CREATE TABLE table_name_97 (club VARCHAR, player VARCHAR) |
###question:What is the content for la sorgente sat 3?###answer:SELECT content FROM table_name_20 WHERE television_service = "la sorgente sat 3"###context:CREATE TABLE table_name_20 (content VARCHAR, television_service VARCHAR) |
###question:What language is telemarket for you?###answer:SELECT language FROM table_name_3 WHERE television_service = "telemarket for you"###context:CREATE TABLE table_name_3 (language VARCHAR, television_service VARCHAR) |
###question:What language is telemarket for you with a content of televendita?###answer:SELECT language FROM table_name_59 WHERE content = "televendita" AND television_service = "telemarket for you"###context:CREATE TABLE table_name_59 (language VARCHAR, content VARCHAR, television_service VARCHAR) |
###question:Which team has points less than 6 in a year after 1969?###answer:SELECT team FROM table_name_81 WHERE points < 6 AND year > 1969###context:CREATE TABLE table_name_81 (team VARCHAR, points VARCHAR, year VARCHAR) |
###question:How many wins for the team with points less than 6 and a 350cc class?###answer:SELECT wins FROM table_name_35 WHERE points < 6 AND class = "350cc"###context:CREATE TABLE table_name_35 (wins VARCHAR, points VARCHAR, class VARCHAR) |
###question:What is the lowest points for 36th rank?###answer:SELECT MIN(points) FROM table_name_18 WHERE rank = "36th"###context:CREATE TABLE table_name_18 (points INTEGER, rank VARCHAR) |
###question:What is team Yamaha with 3 points ranked?###answer:SELECT rank FROM table_name_8 WHERE team = "yamaha" AND points = 3###context:CREATE TABLE table_name_8 (rank VARCHAR, team VARCHAR, points VARCHAR) |
###question:What years did the player ranked less than 8 and had 447 matches play?###answer:SELECT years FROM table_name_83 WHERE rank < 8 AND matches = 447###context:CREATE TABLE table_name_83 (years VARCHAR, rank VARCHAR, matches VARCHAR) |
###question:What is the Time with a Record that is 15-7?###answer:SELECT time FROM table_name_98 WHERE record = "15-7"###context:CREATE TABLE table_name_98 (time VARCHAR, record VARCHAR) |
###question:What is the Event with a Time that is 3:06?###answer:SELECT event FROM table_name_85 WHERE time = "3:06"###context:CREATE TABLE table_name_85 (event VARCHAR, time VARCHAR) |
###question:How many silvers did Turkey get?###answer:SELECT silver FROM table_name_78 WHERE nation = "turkey"###context:CREATE TABLE table_name_78 (silver VARCHAR, nation VARCHAR) |
###question:What position does Denard Walker play?###answer:SELECT position FROM table_name_98 WHERE player = "denard walker"###context:CREATE TABLE table_name_98 (position VARCHAR, player VARCHAR) |
###question:What was the pick number for the wide receiver drafted from Michigan State?###answer:SELECT pick__number FROM table_name_7 WHERE position = "wide receiver" AND college = "michigan state"###context:CREATE TABLE table_name_7 (pick__number VARCHAR, position VARCHAR, college VARCHAR) |
###question:Which player came from Kent State?###answer:SELECT player FROM table_name_38 WHERE college = "kent state"###context:CREATE TABLE table_name_38 (player VARCHAR, college VARCHAR) |
###question:What is the total number of bronze medals, and 4 silver medals, and 2 gold medals?###answer:SELECT COUNT(bronze) FROM table_name_28 WHERE silver = 4 AND gold > 2###context:CREATE TABLE table_name_28 (bronze VARCHAR, silver VARCHAR, gold VARCHAR) |
###question:Which Tournament has a score of 2–6 6–4 [10–8]?###answer:SELECT tournament FROM table_name_9 WHERE score = "2–6 6–4 [10–8]"###context:CREATE TABLE table_name_9 (tournament VARCHAR, score VARCHAR) |
###question:Which Tournament has a Score of 6(4)–7 2–6?###answer:SELECT tournament FROM table_name_73 WHERE score = "6(4)–7 2–6"###context:CREATE TABLE table_name_73 (tournament VARCHAR, score VARCHAR) |
###question:What is the Score of the match where Opponents in the Final was Vitalia Diatchenko Irena Pavlovic?###answer:SELECT score FROM table_name_46 WHERE opponents_in_the_final = "vitalia diatchenko irena pavlovic"###context:CREATE TABLE table_name_46 (score VARCHAR, opponents_in_the_final VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.