training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_27 (title VARCHAR, label VARCHAR, standard_number VARCHAR)
###human: What Title has the Label of Columbia and Standard number of CODC-8760?
###assistant: SELECT title FROM table_name_27 WHERE label = "columbia" AND standard_number = "codc-8760" |
###context:CREATE TABLE table_name_71 (type VARCHAR, name__wade_giles_ VARCHAR)
###human: What is the type of Kuang-Hsing?
###assistant: SELECT type FROM table_name_71 WHERE name__wade_giles_ = "kuang-hsing" |
###context:CREATE TABLE table_name_25 (type VARCHAR, characters VARCHAR)
###human: What type has the characters 廣丙?
###assistant: SELECT type FROM table_name_25 WHERE characters = "廣丙" |
###context:CREATE TABLE table_name_87 (name__wade_giles_ VARCHAR, characters VARCHAR)
###human: What's the name that has the characters 廣亨?
###assistant: SELECT name__wade_giles_ FROM table_name_87 WHERE characters = "廣亨" |
###context:CREATE TABLE table_name_48 (type VARCHAR, characters VARCHAR)
###human: What type has the characters 廣利?
###assistant: SELECT type FROM table_name_48 WHERE characters = "廣利" |
###context:CREATE TABLE table_name_50 (type VARCHAR, name__pinyin_ VARCHAR)
###human: What is the type of Guangjia?
###assistant: SELECT type FROM table_name_50 WHERE name__pinyin_ = "guangjia" |
###context:CREATE TABLE table_name_81 (soap_opera VARCHAR, rank VARCHAR, character VARCHAR)
###human: What soap opera has a rank larger than 1, and a Character named Emily Bishop?
###assistant: SELECT soap_opera FROM table_name_81 WHERE rank > 1 AND character = "emily bishop" |
###context:CREATE TABLE table_name_81 (rank INTEGER, years VARCHAR)
###human: What is the highest Rank 1960—?
###assistant: SELECT MAX(rank) FROM table_name_81 WHERE years = "1960—" |
###context:CREATE TABLE table_name_84 (actor VARCHAR, duration VARCHAR)
###human: What is the name of the actor with a duration of 61 years?
###assistant: SELECT actor FROM table_name_84 WHERE duration = "61 years" |
###context:CREATE TABLE table_name_4 (years VARCHAR, duration VARCHAR, actor VARCHAR)
###human: What are the years for Eileen Derbyshire with a duration of 52 years?
###assistant: SELECT years FROM table_name_4 WHERE duration = "52 years" AND actor = "eileen derbyshire" |
###context:CREATE TABLE table_name_33 (soap_opera VARCHAR, years VARCHAR)
###human: What soap opera was on 1960–1965, 1965–1983, 1984–2010?
###assistant: SELECT soap_opera FROM table_name_33 WHERE years = "1960–1965, 1965–1983, 1984–2010" |
###context:CREATE TABLE table_name_54 (rowers VARCHAR, country VARCHAR)
###human: Who are the rowers for Australia?
###assistant: SELECT rowers FROM table_name_54 WHERE country = "australia" |
###context:CREATE TABLE table_name_36 (rank INTEGER, country VARCHAR)
###human: What's Italy's rank?
###assistant: SELECT SUM(rank) FROM table_name_36 WHERE country = "italy" |
###context:CREATE TABLE table_name_89 (visitor VARCHAR, date VARCHAR, home VARCHAR, round VARCHAR)
###human: Who is the visitor team on Saturday, November 22 when linköpings hc was the home team and there were more than 20 rounds?
###assistant: SELECT visitor FROM table_name_89 WHERE home = "linköpings hc" AND round > 20 AND date = "saturday, november 22" |
###context:CREATE TABLE table_name_30 (attendance INTEGER, round VARCHAR, home VARCHAR, date VARCHAR)
###human: What is the lowest attendance on Monday, November 10 when linköpings hc was the home team and there were more than 18 rounds?
###assistant: SELECT MIN(attendance) FROM table_name_30 WHERE home = "linköpings hc" AND date = "monday, november 10" AND round > 18 |
###context:CREATE TABLE table_name_6 (visitor VARCHAR, venue VARCHAR, round VARCHAR)
###human: Who is the visitor at the axa sports center in round 20?
###assistant: SELECT visitor FROM table_name_6 WHERE venue = "axa sports center" AND round = 20 |
###context:CREATE TABLE table_name_7 (attendance VARCHAR, date VARCHAR)
###human: What is the Attendance of the game on November 6, 1966?
###assistant: SELECT attendance FROM table_name_7 WHERE date = "november 6, 1966" |
###context:CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)
###human: What is the Result of the game on November 6, 1966?
###assistant: SELECT result FROM table_name_78 WHERE date = "november 6, 1966" |
###context:CREATE TABLE table_name_91 (club VARCHAR, time VARCHAR)
###human: Who is the club with a 4:03.63 time?
###assistant: SELECT club FROM table_name_91 WHERE time = "4:03.63" |
###context:CREATE TABLE table_name_59 (green_communist VARCHAR, socialist VARCHAR)
###human: What was the Green-Communist percentage in the poll in which the Socialist Party earned 41.0%?
###assistant: SELECT green_communist FROM table_name_59 WHERE socialist = "41.0%" |
###context:CREATE TABLE table_name_1 (green_communist VARCHAR, lead VARCHAR)
###human: What is the Green-Communist percentage in the poll showing a 9.7% lead?
###assistant: SELECT green_communist FROM table_name_1 WHERE lead = "9.7%" |
###context:CREATE TABLE table_name_87 (result VARCHAR, date VARCHAR)
###human: what is the result on 9 october 2012?
###assistant: SELECT result FROM table_name_87 WHERE date = "9 october 2012" |
###context:CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR)
###human: what is the score when the venue is stade général seyni kountché, niamey, the competition is friendly and the date is 9 october 2012?
###assistant: SELECT score FROM table_name_32 WHERE venue = "stade général seyni kountché, niamey" AND competition = "friendly" AND date = "9 october 2012" |
###context:CREATE TABLE table_name_54 (result VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR)
###human: what is the result when the venue is stade général seyni kountché, niamey, the competition is friendly and the date is 9 october 2012?
###assistant: SELECT result FROM table_name_54 WHERE venue = "stade général seyni kountché, niamey" AND competition = "friendly" AND date = "9 october 2012" |
###context:CREATE TABLE table_name_75 (competition VARCHAR, date VARCHAR)
###human: what is the competition on 10 august 2011?
###assistant: SELECT competition FROM table_name_75 WHERE date = "10 august 2011" |
###context:CREATE TABLE table_name_10 (date VARCHAR, venue VARCHAR)
###human: what is the date when the venue is stade général seyni kountché , niamey?
###assistant: SELECT date FROM table_name_10 WHERE venue = "stade général seyni kountché , niamey" |
###context:CREATE TABLE table_name_7 (place VARCHAR, athlete VARCHAR)
###human: What place has manfred kokot as the athlete?
###assistant: SELECT place FROM table_name_7 WHERE athlete = "manfred kokot" |
###context:CREATE TABLE table_name_73 (athlete VARCHAR, place VARCHAR)
###human: What athlete has reno as the place?
###assistant: SELECT athlete FROM table_name_73 WHERE place = "reno" |
###context:CREATE TABLE table_name_12 (campus VARCHAR, year_opened VARCHAR)
###human: What campus opened in 1970?
###assistant: SELECT campus FROM table_name_12 WHERE year_opened = "1970" |
###context:CREATE TABLE table_name_76 (year_opened VARCHAR, students VARCHAR, size VARCHAR)
###human: What year was the school opened that has a size of 10 acres and students of na?
###assistant: SELECT year_opened FROM table_name_76 WHERE students = "na" AND size = "10 acres" |
###context:CREATE TABLE table_name_86 (location VARCHAR, size VARCHAR)
###human: What location was the campus that has a size of 245 acres?
###assistant: SELECT location FROM table_name_86 WHERE size = "245 acres" |
###context:CREATE TABLE table_name_79 (campus VARCHAR, year_opened VARCHAR)
###human: What campus was opened in 1977?
###assistant: SELECT campus FROM table_name_79 WHERE year_opened = "1977" |
###context:CREATE TABLE table_name_57 (location VARCHAR, students VARCHAR, year_opened VARCHAR)
###human: What location was the campus opened in 2005 with students listed as na?
###assistant: SELECT location FROM table_name_57 WHERE students = "na" AND year_opened = "2005" |
###context:CREATE TABLE table_name_14 (type VARCHAR, capacity___mw__ VARCHAR, rank VARCHAR, province VARCHAR)
###human: what is the type when the rank is smaller than 70, the province is british columbia and the capacity (mw) is more than 2,480?
###assistant: SELECT type FROM table_name_14 WHERE rank < 70 AND province = "british columbia" AND capacity___mw__ > 2 OFFSET 480 |
###context:CREATE TABLE table_name_99 (capacity___mw__ INTEGER, rank VARCHAR, province VARCHAR)
###human: what is the least capacity (mw) when the rank is less than 46 and the province is newfoundland and labrador?
###assistant: SELECT MIN(capacity___mw__) FROM table_name_99 WHERE rank < 46 AND province = "newfoundland and labrador" |
###context:CREATE TABLE table_name_67 (rank INTEGER, capacity___mw__ VARCHAR, type VARCHAR, name VARCHAR)
###human: what is the lowest rank when the type is hydro, the name is grand rapids generating station and the capacity (mw) is more than 479?
###assistant: SELECT MIN(rank) FROM table_name_67 WHERE type = "hydro" AND name = "grand rapids generating station" AND capacity___mw__ > 479 |
###context:CREATE TABLE table_name_42 (province VARCHAR, rank VARCHAR, name VARCHAR)
###human: what is the province when the rank is higher than 24 and the name is laforge-2?
###assistant: SELECT province FROM table_name_42 WHERE rank > 24 AND name = "laforge-2" |
###context:CREATE TABLE table_name_15 (name VARCHAR, province VARCHAR, rank VARCHAR, type VARCHAR, capacity___mw__ VARCHAR)
###human: what is the name when the type is hydro, the capacity (mw) is less than 478, the rank is more than 85 and the province is quebec?
###assistant: SELECT name FROM table_name_15 WHERE type = "hydro" AND capacity___mw__ < 478 AND rank > 85 AND province = "quebec" |
###context:CREATE TABLE table_name_60 (year VARCHAR, team VARCHAR, laps VARCHAR)
###human: How many years have toyota team tom's as the team, with Laps greater than 64?
###assistant: SELECT COUNT(year) FROM table_name_60 WHERE team = "toyota team tom's" AND laps > 64 |
###context:CREATE TABLE table_name_91 (round VARCHAR, date VARCHAR)
###human: What round was on 11/11/1992?
###assistant: SELECT round FROM table_name_91 WHERE date = "11/11/1992" |
###context:CREATE TABLE table_name_82 (against INTEGER, date VARCHAR)
###human: What is the total against on 08/12/1992?
###assistant: SELECT SUM(against) FROM table_name_82 WHERE date = "08/12/1992" |
###context:CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR)
###human: What is the venue of 24/11/1992?
###assistant: SELECT venue FROM table_name_6 WHERE date = "24/11/1992" |
###context:CREATE TABLE table_name_37 (round VARCHAR, against INTEGER)
###human: What round has less than 1 against?
###assistant: SELECT round FROM table_name_37 WHERE against < 1 |
###context:CREATE TABLE table_name_64 (gold VARCHAR, nation VARCHAR, rank VARCHAR)
###human: How many gold medals for germany (GER) having a rank less than 15?
###assistant: SELECT COUNT(gold) FROM table_name_64 WHERE nation = "germany (ger)" AND rank < 15 |
###context:CREATE TABLE table_name_89 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
###human: How many silver medals when the bronze is more than 2 and having a rank more than 5?
###assistant: SELECT MAX(silver) FROM table_name_89 WHERE rank > 5 AND bronze > 2 |
###context:CREATE TABLE table_name_86 (silver INTEGER, bronze INTEGER)
###human: What's the average number of silver medals when bronze is less than 0?
###assistant: SELECT AVG(silver) FROM table_name_86 WHERE bronze < 0 |
###context:CREATE TABLE table_name_44 (silver INTEGER, nation VARCHAR, bronze VARCHAR)
###human: What's the average number of silver medals for germany (GER) having more than 3 bronze?
###assistant: SELECT AVG(silver) FROM table_name_44 WHERE nation = "germany (ger)" AND bronze > 3 |
###context:CREATE TABLE table_name_85 (notes VARCHAR, time VARCHAR)
###human: What are the notes for 6:31.16?
###assistant: SELECT notes FROM table_name_85 WHERE time = "6:31.16" |
###context:CREATE TABLE table_name_64 (rowers VARCHAR, time VARCHAR)
###human: What rowers have a 6:29.56 time?
###assistant: SELECT rowers FROM table_name_64 WHERE time = "6:29.56" |
###context:CREATE TABLE table_name_43 (time VARCHAR, notes VARCHAR, country VARCHAR)
###human: What is the time with FB notes for Canada?
###assistant: SELECT time FROM table_name_43 WHERE notes = "fb" AND country = "canada" |
###context:CREATE TABLE table_name_38 (country VARCHAR, time VARCHAR)
###human: What country has a time of 6:49.28?
###assistant: SELECT country FROM table_name_38 WHERE time = "6:49.28" |
###context:CREATE TABLE table_name_69 (tries_for INTEGER, points_diff VARCHAR, points_against VARCHAR, tries_against VARCHAR)
###human: Which Tries for has Points against larger than 87, and Tries against smaller than 28, and Points diff of +63?
###assistant: SELECT AVG(tries_for) FROM table_name_69 WHERE points_against > 87 AND tries_against < 28 AND points_diff = "+63" |
###context:CREATE TABLE table_name_38 (points_for INTEGER, points_against VARCHAR, tries_for VARCHAR)
###human: Which Points for has Points against smaller than 93, and Tries for larger than 25?
###assistant: SELECT MIN(points_for) FROM table_name_38 WHERE points_against < 93 AND tries_for > 25 |
###context:CREATE TABLE table_name_12 (tries_for INTEGER, tries_against VARCHAR, points_against VARCHAR, points_for VARCHAR)
###human: Which Tries for has Points against smaller than 124, and Points for smaller than 241, and Tries against smaller than 11?
###assistant: SELECT MAX(tries_for) FROM table_name_12 WHERE points_against < 124 AND points_for < 241 AND tries_against < 11 |
###context:CREATE TABLE table_name_48 (tries_against VARCHAR, team VARCHAR, tries_for VARCHAR)
###human: How many Tries against have a Team of dinamo bucureşti, and Tries for smaller than 19?
###assistant: SELECT COUNT(tries_against) FROM table_name_48 WHERE team = "dinamo bucureşti" AND tries_for < 19 |
###context:CREATE TABLE table_name_59 (week VARCHAR, attendance VARCHAR)
###human: What week had attendance of 48,667?
###assistant: SELECT COUNT(week) FROM table_name_59 WHERE attendance = 48 OFFSET 667 |
###context:CREATE TABLE table_name_72 (song VARCHAR, draw VARCHAR, percentage VARCHAR)
###human: What Song has a Draw of less than 4 with a Percentage of 32.22%?
###assistant: SELECT song FROM table_name_72 WHERE draw < 4 AND percentage = "32.22%" |
###context:CREATE TABLE table_name_50 (artist VARCHAR, place VARCHAR, percentage VARCHAR)
###human: What Artist has a Place of 3 or less with a Percentage of 38.60%?
###assistant: SELECT artist FROM table_name_50 WHERE place < 3 AND percentage = "38.60%" |
###context:CREATE TABLE table_name_54 (place INTEGER, artist VARCHAR, draw VARCHAR)
###human: What is the Place of Draw 1 by Artist Monika Kirovska?
###assistant: SELECT AVG(place) FROM table_name_54 WHERE artist = "monika kirovska" AND draw < 1 |
###context:CREATE TABLE table_name_55 (byes INTEGER, hampden_fl VARCHAR, wins VARCHAR, against VARCHAR)
###human: What were the most byes of Terang-Mortlake when they had more than 11 wins and more than 1118 against?
###assistant: SELECT MAX(byes) FROM table_name_55 WHERE wins > 11 AND against > 1118 AND hampden_fl = "terang-mortlake" |
###context:CREATE TABLE table_name_91 (wins INTEGER, hampden_fl VARCHAR)
###human: How many wins did South Warrambool have?
###assistant: SELECT AVG(wins) FROM table_name_91 WHERE hampden_fl = "south warrambool" |
###context:CREATE TABLE table_name_50 (byes INTEGER, wins INTEGER)
###human: How many byes when there are more than 16 wins?
###assistant: SELECT AVG(byes) FROM table_name_50 WHERE wins > 16 |
###context:CREATE TABLE table_name_3 (byes INTEGER, against VARCHAR, wins VARCHAR)
###human: What is the least amount of Byes when there are more than 2 wins and 1946 against?
###assistant: SELECT MIN(byes) FROM table_name_3 WHERE against = 1946 AND wins > 2 |
###context:CREATE TABLE table_name_59 (wins INTEGER, draws VARCHAR, losses VARCHAR)
###human: How many wins when the draws are less than 1 and more than 4 losses?
###assistant: SELECT AVG(wins) FROM table_name_59 WHERE draws < 1 AND losses > 4 |
###context:CREATE TABLE table_name_25 (pop__2010_ INTEGER, geo_id VARCHAR, water__sqmi_ VARCHAR)
###human: What was the lowest population of the GEO ID 3805373380 and the water square mileage smaller than 5.729?
###assistant: SELECT MIN(pop__2010_) FROM table_name_25 WHERE geo_id = 3805373380 AND water__sqmi_ < 5.729 |
###context:CREATE TABLE table_name_29 (geo_id INTEGER, longitude VARCHAR, water__sqmi_ VARCHAR)
###human: What is the lowest GEO ID for the longitude of -102.158045 and the water in square miles larger than 0.979?
###assistant: SELECT MIN(geo_id) FROM table_name_29 WHERE longitude = -102.158045 AND water__sqmi_ > 0.979 |
###context:CREATE TABLE table_name_39 (ansi_code INTEGER, township VARCHAR, water__sqmi_ VARCHAR)
###human: What is the average ANSI code for the town of Sherman and the smaller of the water area in square miles than 0.005?
###assistant: SELECT AVG(ansi_code) FROM table_name_39 WHERE township = "sherman" AND water__sqmi_ < 0.005 |
###context:CREATE TABLE table_name_46 (longitude INTEGER, water__sqmi_ VARCHAR, geo_id VARCHAR)
###human: What is the average longitude for the water area of 0.093 and has a GEO ID tag larger than 3808174460?
###assistant: SELECT AVG(longitude) FROM table_name_46 WHERE water__sqmi_ = 0.093 AND geo_id > 3808174460 |
###context:CREATE TABLE table_name_86 (country VARCHAR, author VARCHAR)
###human: Which Country's Author is based on Sophocles and Euripides?
###assistant: SELECT country FROM table_name_86 WHERE author = "based on sophocles and euripides" |
###context:CREATE TABLE table_name_93 (author VARCHAR, company VARCHAR)
###human: Which Author's Company is Ruth Kanner Theatre Group?
###assistant: SELECT author FROM table_name_93 WHERE company = "ruth kanner theatre group" |
###context:CREATE TABLE table_name_98 (play VARCHAR, country VARCHAR, company VARCHAR)
###human: Which Play is from Cyprus, from the Company Magdalena Zira Theatre?
###assistant: SELECT play FROM table_name_98 WHERE country = "cyprus" AND company = "magdalena zira theatre" |
###context:CREATE TABLE table_name_82 (country VARCHAR, play VARCHAR)
###human: Which Country is the Play Electra and Orestes, The Trial from?
###assistant: SELECT country FROM table_name_82 WHERE play = "electra and orestes, the trial" |
###context:CREATE TABLE table_name_66 (time VARCHAR, lane VARCHAR)
###human: How much total time was in lane 4?
###assistant: SELECT COUNT(time) FROM table_name_66 WHERE lane = 4 |
###context:CREATE TABLE table_name_98 (rank INTEGER, react VARCHAR, time VARCHAR)
###human: Which Rank has a Reaction time larger than 0.20400000000000001, and a Time larger than 45.56?
###assistant: SELECT MAX(rank) FROM table_name_98 WHERE react > 0.20400000000000001 AND time > 45.56 |
###context:CREATE TABLE table_name_3 (rank INTEGER, react VARCHAR, lane VARCHAR, athlete VARCHAR)
###human: How many ranks have more than 7 lanes, and an Athlete of michael mathieu, and a Reaction time larger than 0.203?
###assistant: SELECT SUM(rank) FROM table_name_3 WHERE lane > 7 AND athlete = "michael mathieu" AND react > 0.203 |
###context:CREATE TABLE table_name_15 (time INTEGER, react VARCHAR, rank VARCHAR)
###human: Which Time has a Reaction smaller than 0.20400000000000001, and a Rank of 1?
###assistant: SELECT SUM(time) FROM table_name_15 WHERE react < 0.20400000000000001 AND rank = 1 |
###context:CREATE TABLE table_name_60 (top_25 INTEGER, events VARCHAR, top_5 VARCHAR)
###human: What's the average Top-25, that has an Events that's smaller than 12, and has a Top-5 that is larger than 0?
###assistant: SELECT AVG(top_25) FROM table_name_60 WHERE events < 12 AND top_5 > 0 |
###context:CREATE TABLE table_name_17 (cuts_made INTEGER, top_5 VARCHAR, top_10 VARCHAR)
###human: What's the listed average of Cuts made that has a Top-5 of 3, and a Top-10 that's smaller than 5?
###assistant: SELECT AVG(cuts_made) FROM table_name_17 WHERE top_5 = 3 AND top_10 < 5 |
###context:CREATE TABLE table_name_61 (top_25 VARCHAR, events INTEGER)
###human: What's the sum of Top-25 that has an Events that is smaller than 10?
###assistant: SELECT COUNT(top_25) FROM table_name_61 WHERE events < 10 |
###context:CREATE TABLE table_name_87 (top_10 VARCHAR, events VARCHAR, top_5 VARCHAR)
###human: What's the sum of Top-10 that has Events that's larger than 16, and has a Top-5 that's also larger than 5?
###assistant: SELECT COUNT(top_10) FROM table_name_87 WHERE events > 16 AND top_5 > 5 |
###context:CREATE TABLE table_name_50 (cuts_made INTEGER, tournament VARCHAR, top_5 VARCHAR)
###human: What is the lowest Cuts made that has a Tournament of PGA Championship, and has a Top-5 that is smaller than 2?
###assistant: SELECT MIN(cuts_made) FROM table_name_50 WHERE tournament = "pga championship" AND top_5 < 2 |
###context:CREATE TABLE table_name_64 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR)
###human: When the nominee(s) is john wells what is the episode for a year before 2004?
###assistant: SELECT episode FROM table_name_64 WHERE year < 2004 AND nominee_s_ = "john wells" |
###context:CREATE TABLE table_name_57 (result VARCHAR, nominee_s_ VARCHAR)
###human: What is the result when the nominee(s) of janine sherman?
###assistant: SELECT result FROM table_name_57 WHERE nominee_s_ = "janine sherman" |
###context:CREATE TABLE table_name_64 (result VARCHAR, year VARCHAR, nominee_s_ VARCHAR)
###human: What is the result for a year after 2003, when the nominee(s) is john wells?
###assistant: SELECT result FROM table_name_64 WHERE year > 2003 AND nominee_s_ = "john wells" |
###context:CREATE TABLE table_name_94 (purse VARCHAR, distance VARCHAR, year VARCHAR)
###human: What is the purse in 2003, which had a 1-1/16 distance?
###assistant: SELECT purse FROM table_name_94 WHERE distance = "1-1/16" AND year = 2003 |
###context:CREATE TABLE table_name_5 (trainer VARCHAR, winner VARCHAR)
###human: Who is the trainer of the winner skylighter?
###assistant: SELECT trainer FROM table_name_5 WHERE winner = "skylighter" |
###context:CREATE TABLE table_name_85 (distance VARCHAR, time VARCHAR)
###human: What is the distance with a 1:46.32 time?
###assistant: SELECT distance FROM table_name_85 WHERE time = "1:46.32" |
###context:CREATE TABLE table_name_81 (year INTEGER, time VARCHAR)
###human: What is the average year with a 1:42.85 time?
###assistant: SELECT AVG(year) FROM table_name_81 WHERE time = "1:42.85" |
###context:CREATE TABLE table_name_18 (distance VARCHAR, year VARCHAR)
###human: What is the distance in 2006?
###assistant: SELECT distance FROM table_name_18 WHERE year = 2006 |
###context:CREATE TABLE table_name_12 (director VARCHAR, title VARCHAR)
###human: Who was the director of Clean Pastures?
###assistant: SELECT director FROM table_name_12 WHERE title = "clean pastures" |
###context:CREATE TABLE table_name_14 (release_date VARCHAR, production_num VARCHAR)
###human: What was the release date for Production Number 8181?
###assistant: SELECT release_date FROM table_name_14 WHERE production_num = "8181" |
###context:CREATE TABLE table_name_28 (series VARCHAR, director VARCHAR, production_num VARCHAR)
###human: What series was directed by Frank Tashlin and has the production number, 8053?
###assistant: SELECT series FROM table_name_28 WHERE director = "frank tashlin" AND production_num = "8053" |
###context:CREATE TABLE table_name_38 (series VARCHAR, title VARCHAR)
###human: What series was called Egghead Rides Again?
###assistant: SELECT series FROM table_name_38 WHERE title = "egghead rides again" |
###context:CREATE TABLE table_name_56 (tie_no VARCHAR, away_team VARCHAR)
###human: What is the Tie no of the Port Vale Away game?
###assistant: SELECT tie_no FROM table_name_56 WHERE away_team = "port vale" |
###context:CREATE TABLE table_name_30 (score VARCHAR, home_team VARCHAR)
###human: What is the Score of the Halifax Town Home game?
###assistant: SELECT score FROM table_name_30 WHERE home_team = "halifax town" |
###context:CREATE TABLE table_name_72 (score VARCHAR, home_team VARCHAR)
###human: What is the Score of the Scarborough Home game?
###assistant: SELECT score FROM table_name_72 WHERE home_team = "scarborough" |
###context:CREATE TABLE table_name_8 (college VARCHAR, team VARCHAR)
###human: Which college did the player who went to the Boston Patriots go to?
###assistant: SELECT college FROM table_name_8 WHERE team = "boston patriots" |
###context:CREATE TABLE table_name_20 (pick INTEGER, college VARCHAR)
###human: What was the highest pick number of the player who went to LSU in college?
###assistant: SELECT MAX(pick) FROM table_name_20 WHERE college = "lsu" |
###context:CREATE TABLE table_name_54 (college VARCHAR, pick VARCHAR)
###human: Which college did the player picked number 136 go to?
###assistant: SELECT college FROM table_name_54 WHERE pick = 136 |
###context:CREATE TABLE table_name_95 (college VARCHAR, pick VARCHAR, team VARCHAR)
###human: Which college did the player picked larger than 130 by the New York Jets go to?
###assistant: SELECT college FROM table_name_95 WHERE pick > 130 AND team = "new york jets" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.