Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
51,900
<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? <context>: CREATE TABLE table_name_36 (country VARCHAR, year_opened VARCHAR, span_feet VARCHAR, material VARCHAR, span_metres VARCHAR)
SELECT country FROM table_name_36 WHERE material = "concrete" AND span_metres < 270 AND span_feet > 837 AND year_opened = "1943"
51,901
<question>: What country won in 1993? <context>: CREATE TABLE table_name_28 (country VARCHAR, year_s__won VARCHAR)
SELECT country FROM table_name_28 WHERE year_s__won = "1993"
51,902
<question>: What was the finish with a total larger than 286, a to par of +4 and Bob Tway played? <context>: CREATE TABLE table_name_70 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR)
SELECT finish FROM table_name_70 WHERE total > 286 AND to_par = "+4" AND player = "bob tway"
51,903
<question>: What player in the United States had a total of 286 and won in 2003? <context>: CREATE TABLE table_name_78 (player VARCHAR, year_s__won VARCHAR, country VARCHAR, total VARCHAR)
SELECT player FROM table_name_78 WHERE country = "united states" AND total = 286 AND year_s__won = "2003"
51,904
<question>: What country has a total of 293? <context>: CREATE TABLE table_name_37 (country VARCHAR, total VARCHAR)
SELECT country FROM table_name_37 WHERE total = 293
51,905
<question>: What player is from Fiji? <context>: CREATE TABLE table_name_67 (player VARCHAR, country VARCHAR)
SELECT player FROM table_name_67 WHERE country = "fiji"
51,906
<question>: Which method was used in the welterweight class with a preliminary card? <context>: CREATE TABLE table_name_58 (method VARCHAR, weight_class VARCHAR, card VARCHAR)
SELECT method FROM table_name_58 WHERE weight_class = "welterweight" AND card = "preliminary"
51,907
<question>: Which method was used in a round greater than 3? <context>: CREATE TABLE table_name_15 (method VARCHAR, round INTEGER)
SELECT method FROM table_name_15 WHERE round > 3
51,908
<question>: Which weight class had a time of 4:59? <context>: CREATE TABLE table_name_65 (weight_class VARCHAR, time VARCHAR)
SELECT weight_class FROM table_name_65 WHERE time = "4:59"
51,909
<question>: What was the time for a round less than 3? <context>: CREATE TABLE table_name_35 (time VARCHAR, round INTEGER)
SELECT time FROM table_name_35 WHERE round < 3
51,910
<question>: What is the smallest round for the welterweight class with a preliminary card? <context>: CREATE TABLE table_name_11 (round INTEGER, weight_class VARCHAR, card VARCHAR)
SELECT MIN(round) FROM table_name_11 WHERE weight_class = "welterweight" AND card = "preliminary"
51,911
<question>: Were there Bulletins to all contacts of the proprietary license created by Microsoft with no transport layer of security? <context>: CREATE TABLE table_name_43 (bulletins_to_all_contacts VARCHAR, creator VARCHAR, transport_layer_security VARCHAR, license VARCHAR)
SELECT bulletins_to_all_contacts FROM table_name_43 WHERE transport_layer_security = "no" AND license = "proprietary" AND creator = "microsoft"
51,912
<question>: Were there Bulletins to all contacts of the license created by GG Network? <context>: CREATE TABLE table_name_69 (bulletins_to_all_contacts VARCHAR, creator VARCHAR)
SELECT bulletins_to_all_contacts FROM table_name_69 WHERE creator = "gg network"
51,913
<question>: What is the name of the license created by IETF? <context>: CREATE TABLE table_name_72 (license VARCHAR, creator VARCHAR)
SELECT license FROM table_name_72 WHERE creator = "ietf"
51,914
<question>: What is the envelopment for the rhabdoviridae family? <context>: CREATE TABLE table_name_83 (envelopment VARCHAR, family VARCHAR)
SELECT envelopment FROM table_name_83 WHERE family = "rhabdoviridae"
51,915
<question>: Which Baltimore group has a viron shape of icosahedral, replicates in the cytoplasm, is non-enveloped, and is from the astroviridae family? <context>: CREATE TABLE table_name_13 (baltimore_group VARCHAR, family VARCHAR, replication_site VARCHAR, virion_shape VARCHAR, envelopment VARCHAR)
SELECT baltimore_group FROM table_name_13 WHERE virion_shape = "icosahedral" AND envelopment = "non-enveloped" AND replication_site = "cytoplasm" AND family = "astroviridae"
51,916
<question>: Which Baltimore group is of the retroviridae family? <context>: CREATE TABLE table_name_62 (baltimore_group VARCHAR, family VARCHAR)
SELECT baltimore_group FROM table_name_62 WHERE family = "retroviridae"
51,917
<question>: Which Baltimore group is of the togaviridae family? <context>: CREATE TABLE table_name_27 (baltimore_group VARCHAR, family VARCHAR)
SELECT baltimore_group FROM table_name_27 WHERE family = "togaviridae"
51,918
<question>: Which Baltimore group is non-enveloped and is of the papillomaviridae family? <context>: CREATE TABLE table_name_85 (baltimore_group VARCHAR, envelopment VARCHAR, family VARCHAR)
SELECT baltimore_group FROM table_name_85 WHERE envelopment = "non-enveloped" AND family = "papillomaviridae"
51,919
<question>: What is the replication site when the species is enveloped and is of the bunyaviridae family? <context>: CREATE TABLE table_name_58 (replication_site VARCHAR, envelopment VARCHAR, family VARCHAR)
SELECT replication_site FROM table_name_58 WHERE envelopment = "enveloped" AND family = "bunyaviridae"
51,920
<question>: What is the highest League Cup with a Player that is steed malbranque? <context>: CREATE TABLE table_name_95 (league_cup INTEGER, player VARCHAR)
SELECT MAX(league_cup) FROM table_name_95 WHERE player = "steed malbranque"
51,921
<question>: What is the Manufacturer with a Fuel Type that is diesel? <context>: CREATE TABLE table_name_9 (manufacturer VARCHAR, fuel_type VARCHAR)
SELECT manufacturer FROM table_name_9 WHERE fuel_type = "diesel"
51,922
<question>: What is the Higgins with a Scallon that is 2%? <context>: CREATE TABLE table_name_35 (higgins VARCHAR, scallon VARCHAR)
SELECT higgins FROM table_name_35 WHERE scallon = "2%"
51,923
<question>: What is the Higgins with a Davis that is 9%? <context>: CREATE TABLE table_name_90 (higgins VARCHAR, davis VARCHAR)
SELECT higgins FROM table_name_90 WHERE davis = "9%"
51,924
<question>: What is the Source with a Norris that is 7%? <context>: CREATE TABLE table_name_45 (source VARCHAR, norris VARCHAR)
SELECT source FROM table_name_45 WHERE norris = "7%"
51,925
<question>: What is the game 2 sum attendance of the team with a total attendance of 759,997? <context>: CREATE TABLE table_name_67 (game_2 INTEGER, total VARCHAR)
SELECT SUM(game_2) FROM table_name_67 WHERE total = 759 OFFSET 997
51,926
<question>: What position does Barry Rose play? <context>: CREATE TABLE table_name_55 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_55 WHERE player = "barry rose"
51,927
<question>: Which Jersey # has a Height (cm) of 183, a Name of paul stastny, and a Weight (kg) smaller than 93? <context>: CREATE TABLE table_name_98 (jersey__number VARCHAR, weight__kg_ VARCHAR, height__cm_ VARCHAR, name VARCHAR)
SELECT COUNT(jersey__number) FROM table_name_98 WHERE height__cm_ = 183 AND name = "paul stastny" AND weight__kg_ < 93
51,928
<question>: When the Runner-up was Angaston, and the Year was less than 1927, who was the Captain? <context>: CREATE TABLE table_name_61 (captain VARCHAR, year VARCHAR, runner_up VARCHAR)
SELECT captain FROM table_name_61 WHERE year < 1927 AND runner_up = "angaston"
51,929
<question>: When the Score was kapunda 7-7-49 angaston 6-8-44, who was the Runner-up? <context>: CREATE TABLE table_name_14 (runner_up VARCHAR, score VARCHAR)
SELECT runner_up FROM table_name_14 WHERE score = "kapunda 7-7-49 angaston 6-8-44"
51,930
<question>: Which year had a Score of kapunda 14-13-97 tanunda 5-14-44? <context>: CREATE TABLE table_name_53 (year INTEGER, score VARCHAR)
SELECT SUM(year) FROM table_name_53 WHERE score = "kapunda 14-13-97 tanunda 5-14-44"
51,931
<question>: When the year is later than 1939 and the Runner-up is Tanunda, who is the Captain? <context>: CREATE TABLE table_name_57 (captain VARCHAR, runner_up VARCHAR, year VARCHAR)
SELECT captain FROM table_name_57 WHERE runner_up = "tanunda" AND year > 1939
51,932
<question>: What's the tournamnet name that has a 2001 of 1r and 2011? <context>: CREATE TABLE table_name_25 (tournament VARCHAR)
SELECT tournament FROM table_name_25 WHERE 2001 = "1r" AND 2011 = "a"
51,933
<question>: What is the 2001 tournament with a 2005 4r? <context>: CREATE TABLE table_name_83 (Id VARCHAR)
SELECT 2001 FROM table_name_83 WHERE 2005 = "4r"
51,934
<question>: What french open tournament happened in 2010 and has a 2004 1r? <context>: CREATE TABLE table_name_58 (tournament VARCHAR)
SELECT 2010 FROM table_name_58 WHERE 2004 = "1r" AND tournament = "french open"
51,935
<question>: What 2002 tournament has 2008 career statistics? <context>: CREATE TABLE table_name_21 (Id VARCHAR)
SELECT 2002 FROM table_name_21 WHERE 2008 = "career statistics"
51,936
<question>: Which season has a Staffel E of Stahl Riesa? <context>: CREATE TABLE table_name_21 (season VARCHAR, staffel_e VARCHAR)
SELECT season FROM table_name_21 WHERE staffel_e = "stahl riesa"
51,937
<question>: What is the Staffel D in the season 1983-84 with a Staffel E of Motor Suhl? <context>: CREATE TABLE table_name_51 (staffel_d VARCHAR, staffel_e VARCHAR, season VARCHAR)
SELECT staffel_d FROM table_name_51 WHERE staffel_e = "motor suhl" AND season = "1983-84"
51,938
<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? <context>: CREATE TABLE table_name_75 (staffel_a VARCHAR, staffel_b VARCHAR, staffel_d VARCHAR, staffel_c VARCHAR)
SELECT staffel_a FROM table_name_75 WHERE staffel_d = "energie cottbus" AND staffel_c = "chemie leipzig" AND staffel_b = "1. fc union berlin"
51,939
<question>: What is the Staffel B that has Hallescher Fc Chemie as Staffel C? <context>: CREATE TABLE table_name_97 (staffel_b VARCHAR, staffel_c VARCHAR)
SELECT staffel_b FROM table_name_97 WHERE staffel_c = "hallescher fc chemie"
51,940
<question>: Which week's date was September 27, 1953? <context>: CREATE TABLE table_name_8 (week VARCHAR, date VARCHAR)
SELECT week FROM table_name_8 WHERE date = "september 27, 1953"
51,941
<question>: What is the largest attendance number when the Chicago Cardinals were the opponent and the week was less than 4? <context>: CREATE TABLE table_name_48 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
SELECT MAX(attendance) FROM table_name_48 WHERE opponent = "chicago cardinals" AND week < 4
51,942
<question>: When Gigi Fernández Natalia Zvereva 6–2, 6–1 won, who was the Tier II Runner-up? <context>: CREATE TABLE table_name_85 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR)
SELECT runner_up FROM table_name_85 WHERE tier = "tier ii" AND winner = "gigi fernández natalia zvereva 6–2, 6–1"
51,943
<question>: Who were the semi finalists when Alexia Dechaume-Balleret Sandrine testud was the runner-up? <context>: CREATE TABLE table_name_81 (semi_finalists VARCHAR, runner_up VARCHAR)
SELECT semi_finalists FROM table_name_81 WHERE runner_up = "alexia dechaume-balleret sandrine testud"
51,944
<question>: What tier had a runner-up of Lisa Raymond and a semifinalist of Sandrine Testud Mary Pierce? <context>: CREATE TABLE table_name_46 (tier VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR)
SELECT tier FROM table_name_46 WHERE semi_finalists = "sandrine testud mary pierce" AND runner_up = "lisa raymond"
51,945
<question>: Who were the semi finalists when the runner-up was Alexandra Fusai Wiltrud Probst? <context>: CREATE TABLE table_name_92 (semi_finalists VARCHAR, runner_up VARCHAR)
SELECT semi_finalists FROM table_name_92 WHERE runner_up = "alexandra fusai wiltrud probst"
51,946
<question>: What is the Label that shows on april 7, 1967? <context>: CREATE TABLE table_name_77 (label VARCHAR, date VARCHAR)
SELECT label FROM table_name_77 WHERE date = "april 7, 1967"
51,947
<question>: What is the Date when the Country shows uk, the Format is cd, and the Catalog of edcd 227? <context>: CREATE TABLE table_name_91 (date VARCHAR, catalog VARCHAR, country VARCHAR, format VARCHAR)
SELECT date FROM table_name_91 WHERE country = "uk" AND format = "cd" AND catalog = "edcd 227"
51,948
<question>: What is the Date for Catalog of lp 5060? <context>: CREATE TABLE table_name_65 (date VARCHAR, catalog VARCHAR)
SELECT date FROM table_name_65 WHERE catalog = "lp 5060"
51,949
<question>: What Date was the Country of japan, and a Label of sony? <context>: CREATE TABLE table_name_75 (date VARCHAR, country VARCHAR, label VARCHAR)
SELECT date FROM table_name_75 WHERE country = "japan" AND label = "sony"
51,950
<question>: What is the Catalog with a Format of lp, a Country of us, a Label of sundazed, and a Date of 2006? <context>: CREATE TABLE table_name_46 (catalog VARCHAR, date VARCHAR, label VARCHAR, format VARCHAR, country VARCHAR)
SELECT catalog FROM table_name_46 WHERE format = "lp" AND country = "us" AND label = "sundazed" AND date = "2006"
51,951
<question>: What is the Label name that has a Country of uk and the Catalog is bpg 62988? <context>: CREATE TABLE table_name_73 (label VARCHAR, country VARCHAR, catalog VARCHAR)
SELECT label FROM table_name_73 WHERE country = "uk" AND catalog = "bpg 62988"
51,952
<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? <context>: CREATE TABLE table_name_16 (lyrics__l____music__m_ VARCHAR, position VARCHAR, place VARCHAR)
SELECT lyrics__l____music__m_ FROM table_name_16 WHERE position > 3 AND place = "1st"
51,953
<question>: What is the Rank of the Nation with 0 Silver and more than 1 Bronze? <context>: CREATE TABLE table_name_24 (rank INTEGER, silver VARCHAR, bronze VARCHAR)
SELECT MAX(rank) FROM table_name_24 WHERE silver < 1 AND bronze > 1
51,954
<question>: What is the Total medals for the Nation with 1 Silver and 0 Golds? <context>: CREATE TABLE table_name_89 (total VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT COUNT(total) FROM table_name_89 WHERE silver = 1 AND gold < 0
51,955
<question>: Which potential's period 5 is 4 and has an element of antimony? <context>: CREATE TABLE table_name_81 (potential VARCHAR, period VARCHAR, element VARCHAR)
SELECT potential FROM table_name_81 WHERE period = 5 AND element = "antimony"
51,956
<question>: Which lowest period's element is ruthenium? <context>: CREATE TABLE table_name_28 (period INTEGER, element VARCHAR)
SELECT MIN(period) FROM table_name_28 WHERE element = "ruthenium"
51,957
<question>: Which highest period's element is platinum? <context>: CREATE TABLE table_name_19 (period INTEGER, element VARCHAR)
SELECT MAX(period) FROM table_name_19 WHERE element = "platinum"
51,958
<question>: What is the Venue with a Result that is lost? <context>: CREATE TABLE table_name_40 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_40 WHERE result = "lost"
51,959
<question>: What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4? <context>: CREATE TABLE table_name_14 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR)
SELECT MAX(administrative_panel) FROM table_name_14 WHERE cultural_and_educational_panel = 2 AND industrial_and_commercial_panel > 4
51,960
<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? <context>: CREATE TABLE table_name_17 (national_university_of_ireland VARCHAR, industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR)
SELECT COUNT(national_university_of_ireland) FROM table_name_17 WHERE industrial_and_commercial_panel < 1 AND cultural_and_educational_panel > 0
51,961
<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? <context>: CREATE TABLE table_name_77 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR)
SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4
51,962
<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? <context>: CREATE TABLE table_name_37 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR)
SELECT MAX(administrative_panel) FROM table_name_37 WHERE nominated_by_the_taoiseach > 3 AND agricultural_panel = 5 AND cultural_and_educational_panel > 2
51,963
<question>: What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19? <context>: CREATE TABLE table_name_74 (cultural_and_educational_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR)
SELECT MIN(cultural_and_educational_panel) FROM table_name_74 WHERE nominated_by_the_taoiseach < 5 AND total > 19
51,964
<question>: With the cultural and educational panel less than 0 what is the average industrial and commercial panel? <context>: CREATE TABLE table_name_22 (industrial_and_commercial_panel INTEGER, cultural_and_educational_panel INTEGER)
SELECT AVG(industrial_and_commercial_panel) FROM table_name_22 WHERE cultural_and_educational_panel < 0
51,965
<question>: What is the total number of silver medals for nations with 5 total medals and more than 3 gold medals? <context>: CREATE TABLE table_name_22 (silver VARCHAR, total VARCHAR, gold VARCHAR)
SELECT COUNT(silver) FROM table_name_22 WHERE total = 5 AND gold > 3
51,966
<question>: What was the label in 1969? <context>: CREATE TABLE table_name_18 (label VARCHAR, date VARCHAR)
SELECT label FROM table_name_18 WHERE date = 1969
51,967
<question>: What is the Commissioned date of the ship in NVR Page MCM02? <context>: CREATE TABLE table_name_29 (commissioned VARCHAR, nvr_page VARCHAR)
SELECT commissioned FROM table_name_29 WHERE nvr_page = "mcm02"
51,968
<question>: What is the NVR Page of the ship with a Home Port of Sasebo, Japan? <context>: CREATE TABLE table_name_6 (nvr_page VARCHAR, home_port VARCHAR)
SELECT nvr_page FROM table_name_6 WHERE home_port = "sasebo, japan"
51,969
<question>: Which week's game was attended by 54,015 people? <context>: CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_34 WHERE attendance = 54 OFFSET 015
51,970
<question>: What date was the game that was before week 4 and was attended by over 54,015 people ? <context>: CREATE TABLE table_name_33 (date VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_33 WHERE week < 4 AND attendance > 54 OFFSET 015
51,971
<question>: In what venues was the match with a final result of Eng by 4 wkts? <context>: CREATE TABLE table_name_19 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_19 WHERE result = "eng by 4 wkts"
51,972
<question>: What is the running time of the transmission on bbc four channels on 23 March 2008? <context>: CREATE TABLE table_name_46 (Running VARCHAR, channel VARCHAR, date VARCHAR)
SELECT Running AS time FROM table_name_46 WHERE channel = "bbc four" AND date = "23 march 2008"
51,973
<question>: What is the notes of the transmission on channel bbc four and a time of 22:30? <context>: CREATE TABLE table_name_15 (notes VARCHAR, channel VARCHAR, time VARCHAR)
SELECT notes FROM table_name_15 WHERE channel = "bbc four" AND time = "22:30"
51,974
<question>: Which channel was on 28 December 2008? <context>: CREATE TABLE table_name_74 (channel VARCHAR, date VARCHAR)
SELECT channel FROM table_name_74 WHERE date = "28 december 2008"
51,975
<question>: What is the channel with a 03:40 time? <context>: CREATE TABLE table_name_51 (channel VARCHAR, time VARCHAR)
SELECT channel FROM table_name_51 WHERE time = "03:40"
51,976
<question>: What is the Other b when the FA Cup shows 3 (17)? <context>: CREATE TABLE table_name_96 (other_b VARCHAR, fa_cup VARCHAR)
SELECT other_b FROM table_name_96 WHERE fa_cup = "3 (17)"
51,977
<question>: What is the Total when the league shows 79 (221)? <context>: CREATE TABLE table_name_39 (total VARCHAR, league_a VARCHAR)
SELECT total FROM table_name_39 WHERE league_a = "79 (221)"
51,978
<question>: What is the Name when the League Cup shows 0 (0), and the FA Cup is 12 (14)? <context>: CREATE TABLE table_name_40 (name VARCHAR, league_cup VARCHAR, fa_cup VARCHAR)
SELECT name FROM table_name_40 WHERE league_cup = "0 (0)" AND fa_cup = "12 (14)"
51,979
<question>: What is the League for 1952–1960? <context>: CREATE TABLE table_name_2 (league_a VARCHAR, years VARCHAR)
SELECT league_a FROM table_name_2 WHERE years = "1952–1960"
51,980
<question>: What shows for the League when the FA Cup is 6 (20)? <context>: CREATE TABLE table_name_47 (league_a VARCHAR, fa_cup VARCHAR)
SELECT league_a FROM table_name_47 WHERE fa_cup = "6 (20)"
51,981
<question>: What club wast he player hristo stoitchkov from? <context>: CREATE TABLE table_name_97 (club VARCHAR, player VARCHAR)
SELECT club FROM table_name_97 WHERE player = "hristo stoitchkov"
51,982
<question>: What is the content for la sorgente sat 3? <context>: CREATE TABLE table_name_20 (content VARCHAR, television_service VARCHAR)
SELECT content FROM table_name_20 WHERE television_service = "la sorgente sat 3"
51,983
<question>: What language is telemarket for you? <context>: CREATE TABLE table_name_3 (language VARCHAR, television_service VARCHAR)
SELECT language FROM table_name_3 WHERE television_service = "telemarket for you"
51,984
<question>: What language is telemarket for you with a content of televendita? <context>: CREATE TABLE table_name_59 (language VARCHAR, content VARCHAR, television_service VARCHAR)
SELECT language FROM table_name_59 WHERE content = "televendita" AND television_service = "telemarket for you"
51,985
<question>: Which team has points less than 6 in a year after 1969? <context>: CREATE TABLE table_name_81 (team VARCHAR, points VARCHAR, year VARCHAR)
SELECT team FROM table_name_81 WHERE points < 6 AND year > 1969
51,986
<question>: How many wins for the team with points less than 6 and a 350cc class? <context>: CREATE TABLE table_name_35 (wins VARCHAR, points VARCHAR, class VARCHAR)
SELECT wins FROM table_name_35 WHERE points < 6 AND class = "350cc"
51,987
<question>: What is the lowest points for 36th rank? <context>: CREATE TABLE table_name_18 (points INTEGER, rank VARCHAR)
SELECT MIN(points) FROM table_name_18 WHERE rank = "36th"
51,988
<question>: What is team Yamaha with 3 points ranked? <context>: CREATE TABLE table_name_8 (rank VARCHAR, team VARCHAR, points VARCHAR)
SELECT rank FROM table_name_8 WHERE team = "yamaha" AND points = 3
51,989
<question>: What years did the player ranked less than 8 and had 447 matches play? <context>: CREATE TABLE table_name_83 (years VARCHAR, rank VARCHAR, matches VARCHAR)
SELECT years FROM table_name_83 WHERE rank < 8 AND matches = 447
51,990
<question>: What is the Time with a Record that is 15-7? <context>: CREATE TABLE table_name_98 (time VARCHAR, record VARCHAR)
SELECT time FROM table_name_98 WHERE record = "15-7"
51,991
<question>: What is the Event with a Time that is 3:06? <context>: CREATE TABLE table_name_85 (event VARCHAR, time VARCHAR)
SELECT event FROM table_name_85 WHERE time = "3:06"
51,992
<question>: How many silvers did Turkey get? <context>: CREATE TABLE table_name_78 (silver VARCHAR, nation VARCHAR)
SELECT silver FROM table_name_78 WHERE nation = "turkey"
51,993
<question>: What position does Denard Walker play? <context>: CREATE TABLE table_name_98 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_98 WHERE player = "denard walker"
51,994
<question>: What was the pick number for the wide receiver drafted from Michigan State? <context>: CREATE TABLE table_name_7 (pick__number VARCHAR, position VARCHAR, college VARCHAR)
SELECT pick__number FROM table_name_7 WHERE position = "wide receiver" AND college = "michigan state"
51,995
<question>: Which player came from Kent State? <context>: CREATE TABLE table_name_38 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_38 WHERE college = "kent state"
51,996
<question>: What is the total number of bronze medals, and 4 silver medals, and 2 gold medals? <context>: CREATE TABLE table_name_28 (bronze VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT COUNT(bronze) FROM table_name_28 WHERE silver = 4 AND gold > 2
51,997
<question>: Which Tournament has a score of 2–6 6–4 [10–8]? <context>: CREATE TABLE table_name_9 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_9 WHERE score = "2–6 6–4 [10–8]"
51,998
<question>: Which Tournament has a Score of 6(4)–7 2–6? <context>: CREATE TABLE table_name_73 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_73 WHERE score = "6(4)–7 2–6"
51,999
<question>: What is the Score of the match where Opponents in the Final was Vitalia Diatchenko Irena Pavlovic? <context>: CREATE TABLE table_name_46 (score VARCHAR, opponents_in_the_final VARCHAR)
SELECT score FROM table_name_46 WHERE opponents_in_the_final = "vitalia diatchenko irena pavlovic"