text
stringlengths
146
1.06k
source
dict
### QUESTION What is Authors, when Novelty is Gen Nov, when Location is South Africa, and when Name is Criocephalosaurus? ### CONTEXT CREATE TABLE table_name_90 (authors VARCHAR, name VARCHAR, novelty VARCHAR, location VARCHAR) ### ANSWER SELECT authors FROM table_name_90 WHERE novelty = "gen nov" AND location = "south africa" AND name = "criocephalosaurus"
{ "answer": "SELECT authors FROM table_name_90 WHERE novelty = \"gen nov\" AND location = \"south africa\" AND name = \"criocephalosaurus\"", "context": "CREATE TABLE table_name_90 (authors VARCHAR, name VARCHAR, novelty VARCHAR, location VARCHAR)", "question": "What is Authors, when Novelty is Gen Nov, when Location is South Africa, and when Name is Criocephalosaurus?" }
### QUESTION What is the average gpa of the students enrolled in the course with code ACCT-211? ### CONTEXT CREATE TABLE enroll (stu_num VARCHAR, class_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE student (stu_gpa INTEGER, stu_num VARCHAR) ### ANSWER SELECT AVG(T2.stu_gpa) FROM enroll AS T1 JOIN student AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T1.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'
{ "answer": "SELECT AVG(T2.stu_gpa) FROM enroll AS T1 JOIN student AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T1.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'", "context": "CREATE TABLE enroll (stu_num VARCHAR, class_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE student (stu_gpa INTEGER, stu_num VARCHAR)", "question": "What is the average gpa of the students enrolled in the course with code ACCT-211?" }
### QUESTION What is the location of the match on February 29, 2012? ### CONTEXT CREATE TABLE table_name_47 (location VARCHAR, date VARCHAR) ### ANSWER SELECT location FROM table_name_47 WHERE date = "february 29, 2012"
{ "answer": "SELECT location FROM table_name_47 WHERE date = \"february 29, 2012\"", "context": "CREATE TABLE table_name_47 (location VARCHAR, date VARCHAR)", "question": "What is the location of the match on February 29, 2012?" }
### QUESTION What is the version shown for the Length of 4:58? ### CONTEXT CREATE TABLE table_name_1 (version VARCHAR, length VARCHAR) ### ANSWER SELECT version FROM table_name_1 WHERE length = "4:58"
{ "answer": "SELECT version FROM table_name_1 WHERE length = \"4:58\"", "context": "CREATE TABLE table_name_1 (version VARCHAR, length VARCHAR)", "question": "What is the version shown for the Length of 4:58?" }
### QUESTION Which club is associated with Hafiz Abu Sujad? ### CONTEXT CREATE TABLE table_name_80 (club VARCHAR, name VARCHAR) ### ANSWER SELECT club FROM table_name_80 WHERE name = "hafiz abu sujad"
{ "answer": "SELECT club FROM table_name_80 WHERE name = \"hafiz abu sujad\"", "context": "CREATE TABLE table_name_80 (club VARCHAR, name VARCHAR)", "question": "Which club is associated with Hafiz Abu Sujad?" }
### QUESTION In 2009, what Appearances had a Winning Percentage of less than 0? ### CONTEXT CREATE TABLE table_name_30 (appearances INTEGER, season_s_ VARCHAR, winning_percentage VARCHAR) ### ANSWER SELECT AVG(appearances) FROM table_name_30 WHERE season_s_ = "2009" AND winning_percentage < 0
{ "answer": "SELECT AVG(appearances) FROM table_name_30 WHERE season_s_ = \"2009\" AND winning_percentage < 0", "context": "CREATE TABLE table_name_30 (appearances INTEGER, season_s_ VARCHAR, winning_percentage VARCHAR)", "question": "In 2009, what Appearances had a Winning Percentage of less than 0?" }
### QUESTION Show the name and number of employees for the departments managed by heads whose temporary acting value is 'Yes'? ### CONTEXT CREATE TABLE management (department_id VARCHAR, temporary_acting VARCHAR); CREATE TABLE department (name VARCHAR, num_employees VARCHAR, department_id VARCHAR) ### ANSWER SELECT T1.name, T1.num_employees FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id WHERE T2.temporary_acting = 'Yes'
{ "answer": "SELECT T1.name, T1.num_employees FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id WHERE T2.temporary_acting = 'Yes'", "context": "CREATE TABLE management (department_id VARCHAR, temporary_acting VARCHAR); CREATE TABLE department (name VARCHAR, num_employees VARCHAR, department_id VARCHAR)", "question": "Show the name and number of employees for the departments managed by heads whose temporary acting value is 'Yes'?" }
### QUESTION What is the total number of 1sts that Martin Schmitt had where he less than 235.7 points? ### CONTEXT ### ANSWER SELECT COUNT(*) FROM table_name_81 WHERE name = "martin schmitt" AND points < 235.7
{ "answer": "SELECT COUNT(*) FROM table_name_81 WHERE name = \"martin schmitt\" AND points < 235.7", "context": "", "question": "What is the total number of 1sts that Martin Schmitt had where he less than 235.7 points?" }
### QUESTION What's the average goal ratio with Goals larger than 1, Games larger than 161, and a Debut in Europe smaller than 1985? ### CONTEXT CREATE TABLE table_name_71 (goal_ratio INTEGER, debut_in_europe VARCHAR, goals VARCHAR, games VARCHAR) ### ANSWER SELECT AVG(goal_ratio) FROM table_name_71 WHERE goals > 1 AND games > 161 AND debut_in_europe < 1985
{ "answer": "SELECT AVG(goal_ratio) FROM table_name_71 WHERE goals > 1 AND games > 161 AND debut_in_europe < 1985", "context": "CREATE TABLE table_name_71 (goal_ratio INTEGER, debut_in_europe VARCHAR, goals VARCHAR, games VARCHAR)", "question": "What's the average goal ratio with Goals larger than 1, Games larger than 161, and a Debut in Europe smaller than 1985?" }
### QUESTION Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes? ### CONTEXT CREATE TABLE table_name_28 (venue VARCHAR, competition VARCHAR, position VARCHAR, year VARCHAR, notes VARCHAR) ### ANSWER SELECT venue FROM table_name_28 WHERE year > 2006 AND notes = "3000 m s'chase" AND position = "2nd" AND competition = "african championships"
{ "answer": "SELECT venue FROM table_name_28 WHERE year > 2006 AND notes = \"3000 m s'chase\" AND position = \"2nd\" AND competition = \"african championships\"", "context": "CREATE TABLE table_name_28 (venue VARCHAR, competition VARCHAR, position VARCHAR, year VARCHAR, notes VARCHAR)", "question": "Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes?" }
### QUESTION Who is everyone on the men's doubles when men's singles is Ma Wenge? ### CONTEXT CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR) ### ANSWER SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Ma Wenge"
{ "answer": "SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = \"Ma Wenge\"", "context": "CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)", "question": "Who is everyone on the men's doubles when men's singles is Ma Wenge?" }
### QUESTION Who was the mountain classification winner in the stage won by Alessandro Ballan? ### CONTEXT CREATE TABLE table_22917458_15 (mountains_classification_klasyfikacja_górska VARCHAR, winner VARCHAR) ### ANSWER SELECT mountains_classification_klasyfikacja_górska FROM table_22917458_15 WHERE winner = "Alessandro Ballan"
{ "answer": "SELECT mountains_classification_klasyfikacja_górska FROM table_22917458_15 WHERE winner = \"Alessandro Ballan\"", "context": "CREATE TABLE table_22917458_15 (mountains_classification_klasyfikacja_górska VARCHAR, winner VARCHAR)", "question": "Who was the mountain classification winner in the stage won by Alessandro Ballan?" }
### QUESTION What is the number of games for Roger Merrett? ### CONTEXT CREATE TABLE table_name_39 (games VARCHAR, player VARCHAR) ### ANSWER SELECT games FROM table_name_39 WHERE player = "roger merrett"
{ "answer": "SELECT games FROM table_name_39 WHERE player = \"roger merrett\"", "context": "CREATE TABLE table_name_39 (games VARCHAR, player VARCHAR)", "question": "What is the number of games for Roger Merrett?" }
### QUESTION What is the smoke point when the polyunsaturated fat is 69g (4g in high oleic variety)? ### CONTEXT CREATE TABLE table_name_24 (smoke_point VARCHAR, polyunsaturated_fat VARCHAR) ### ANSWER SELECT smoke_point FROM table_name_24 WHERE polyunsaturated_fat = "69g (4g in high oleic variety)"
{ "answer": "SELECT smoke_point FROM table_name_24 WHERE polyunsaturated_fat = \"69g (4g in high oleic variety)\"", "context": "CREATE TABLE table_name_24 (smoke_point VARCHAR, polyunsaturated_fat VARCHAR)", "question": "What is the smoke point when the polyunsaturated fat is 69g (4g in high oleic variety)?" }
### QUESTION Show the name and prominence of the mountains whose picture is not taken by a lens of brand 'Sigma'. ### CONTEXT CREATE TABLE camera_lens (id VARCHAR, brand VARCHAR); CREATE TABLE mountain (name VARCHAR, prominence VARCHAR, id VARCHAR); CREATE TABLE photos (mountain_id VARCHAR, camera_lens_id VARCHAR); CREATE TABLE mountain (name VARCHAR, prominence VARCHAR) ### ANSWER SELECT name, prominence FROM mountain EXCEPT SELECT T1.name, T1.prominence FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id JOIN camera_lens AS T3 ON T2.camera_lens_id = T3.id WHERE T3.brand = 'Sigma'
{ "answer": "SELECT name, prominence FROM mountain EXCEPT SELECT T1.name, T1.prominence FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id JOIN camera_lens AS T3 ON T2.camera_lens_id = T3.id WHERE T3.brand = 'Sigma'", "context": "CREATE TABLE camera_lens (id VARCHAR, brand VARCHAR); CREATE TABLE mountain (name VARCHAR, prominence VARCHAR, id VARCHAR); CREATE TABLE photos (mountain_id VARCHAR, camera_lens_id VARCHAR); CREATE TABLE mountain (name VARCHAR, prominence VARCHAR)", "question": "Show the name and prominence of the mountains whose picture is not taken by a lens of brand 'Sigma'." }
### QUESTION what's the incumbent with result being new seat republican gain ### CONTEXT CREATE TABLE table_1342256_6 (incumbent VARCHAR, result VARCHAR) ### ANSWER SELECT incumbent FROM table_1342256_6 WHERE result = "New seat Republican gain"
{ "answer": "SELECT incumbent FROM table_1342256_6 WHERE result = \"New seat Republican gain\"", "context": "CREATE TABLE table_1342256_6 (incumbent VARCHAR, result VARCHAR)", "question": "what's the incumbent with result being new seat republican gain" }
### QUESTION What is the note section for the role with a language of hindi and a title of miley naa miley hum? ### CONTEXT CREATE TABLE table_name_30 (notes VARCHAR, language VARCHAR, title VARCHAR) ### ANSWER SELECT notes FROM table_name_30 WHERE language = "hindi" AND title = "miley naa miley hum"
{ "answer": "SELECT notes FROM table_name_30 WHERE language = \"hindi\" AND title = \"miley naa miley hum\"", "context": "CREATE TABLE table_name_30 (notes VARCHAR, language VARCHAR, title VARCHAR)", "question": "What is the note section for the role with a language of hindi and a title of miley naa miley hum?" }
### QUESTION How many faculty lines are there in the university that conferred the least number of degrees in year 2001? ### CONTEXT CREATE TABLE campuses (id VARCHAR); CREATE TABLE faculty (faculty VARCHAR); CREATE TABLE degrees (Id VARCHAR) ### ANSWER SELECT T2.faculty FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = t2.campus JOIN degrees AS T3 ON T1.id = t3.campus AND t2.year = t3.year WHERE t2.year = 2001 ORDER BY t3.degrees LIMIT 1
{ "answer": "SELECT T2.faculty FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = t2.campus JOIN degrees AS T3 ON T1.id = t3.campus AND t2.year = t3.year WHERE t2.year = 2001 ORDER BY t3.degrees LIMIT 1", "context": "CREATE TABLE campuses (id VARCHAR); CREATE TABLE faculty (faculty VARCHAR); CREATE TABLE degrees (Id VARCHAR)", "question": "How many faculty lines are there in the university that conferred the least number of degrees in year 2001?" }
### QUESTION What college did the tight end draft pick for New England Patriots come from? ### CONTEXT CREATE TABLE table_2508633_9 (college VARCHAR, nfl_team VARCHAR, position VARCHAR) ### ANSWER SELECT college FROM table_2508633_9 WHERE nfl_team = "New England Patriots" AND position = "Tight end"
{ "answer": "SELECT college FROM table_2508633_9 WHERE nfl_team = \"New England Patriots\" AND position = \"Tight end\"", "context": "CREATE TABLE table_2508633_9 (college VARCHAR, nfl_team VARCHAR, position VARCHAR)", "question": "What college did the tight end draft pick for New England Patriots come from?" }
### QUESTION Find the name of accounts whose checking balance is higher than corresponding saving balance. ### CONTEXT CREATE TABLE savings (custid VARCHAR, balance INTEGER); CREATE TABLE accounts (name VARCHAR, custid VARCHAR); CREATE TABLE checking (custid VARCHAR, balance INTEGER) ### ANSWER SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T2.balance > T3.balance
{ "answer": "SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T2.balance > T3.balance", "context": "CREATE TABLE savings (custid VARCHAR, balance INTEGER); CREATE TABLE accounts (name VARCHAR, custid VARCHAR); CREATE TABLE checking (custid VARCHAR, balance INTEGER)", "question": "Find the name of accounts whose checking balance is higher than corresponding saving balance." }
### QUESTION Which position has more than 4 points, less than 12 tries, a squad number of more than 1, and where Ali Lauitiiti is a player? ### CONTEXT CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR, squad_no VARCHAR, points VARCHAR, tries VARCHAR) ### ANSWER SELECT position FROM table_name_58 WHERE points > 4 AND tries < 12 AND squad_no > 1 AND player = "ali lauitiiti"
{ "answer": "SELECT position FROM table_name_58 WHERE points > 4 AND tries < 12 AND squad_no > 1 AND player = \"ali lauitiiti\"", "context": "CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR, squad_no VARCHAR, points VARCHAR, tries VARCHAR)", "question": "Which position has more than 4 points, less than 12 tries, a squad number of more than 1, and where Ali Lauitiiti is a player?" }
### QUESTION Which Round is the lowest one that has a Position of wide receiver, and an Overall smaller than 222? ### CONTEXT CREATE TABLE table_name_34 (round INTEGER, position VARCHAR, overall VARCHAR) ### ANSWER SELECT MIN(round) FROM table_name_34 WHERE position = "wide receiver" AND overall < 222
{ "answer": "SELECT MIN(round) FROM table_name_34 WHERE position = \"wide receiver\" AND overall < 222", "context": "CREATE TABLE table_name_34 (round INTEGER, position VARCHAR, overall VARCHAR)", "question": "Which Round is the lowest one that has a Position of wide receiver, and an Overall smaller than 222?" }
### QUESTION Give me ids for all the trip that took place in a zip code area with average mean temperature above 60. ### CONTEXT CREATE TABLE trip (id VARCHAR, zip_code VARCHAR); CREATE TABLE weather (zip_code VARCHAR, mean_temperature_f INTEGER) ### ANSWER SELECT T1.id FROM trip AS T1 JOIN weather AS T2 ON T1.zip_code = T2.zip_code GROUP BY T2.zip_code HAVING AVG(T2.mean_temperature_f) > 60
{ "answer": "SELECT T1.id FROM trip AS T1 JOIN weather AS T2 ON T1.zip_code = T2.zip_code GROUP BY T2.zip_code HAVING AVG(T2.mean_temperature_f) > 60", "context": "CREATE TABLE trip (id VARCHAR, zip_code VARCHAR); CREATE TABLE weather (zip_code VARCHAR, mean_temperature_f INTEGER)", "question": "Give me ids for all the trip that took place in a zip code area with average mean temperature above 60." }
### QUESTION Name the least indian tamil for population density being 240 ### CONTEXT CREATE TABLE table_24574438_1 (indian_tamil INTEGER, population_density___km_2__ VARCHAR) ### ANSWER SELECT MIN(indian_tamil) FROM table_24574438_1 WHERE population_density___km_2__ = 240
{ "answer": "SELECT MIN(indian_tamil) FROM table_24574438_1 WHERE population_density___km_2__ = 240", "context": "CREATE TABLE table_24574438_1 (indian_tamil INTEGER, population_density___km_2__ VARCHAR)", "question": "Name the least indian tamil for population density being 240" }
### QUESTION Which Date has a Road Team of new york, and a Result of 79-75? ### CONTEXT CREATE TABLE table_name_42 (date VARCHAR, road_team VARCHAR, result VARCHAR) ### ANSWER SELECT date FROM table_name_42 WHERE road_team = "new york" AND result = "79-75"
{ "answer": "SELECT date FROM table_name_42 WHERE road_team = \"new york\" AND result = \"79-75\"", "context": "CREATE TABLE table_name_42 (date VARCHAR, road_team VARCHAR, result VARCHAR)", "question": "Which Date has a Road Team of new york, and a Result of 79-75?" }
### QUESTION Which IHSAA Football Class has a Location of wabash, and a School of wabash? ### CONTEXT CREATE TABLE table_name_50 (ihsaa_football_class VARCHAR, location VARCHAR, school VARCHAR) ### ANSWER SELECT ihsaa_football_class FROM table_name_50 WHERE location = "wabash" AND school = "wabash"
{ "answer": "SELECT ihsaa_football_class FROM table_name_50 WHERE location = \"wabash\" AND school = \"wabash\"", "context": "CREATE TABLE table_name_50 (ihsaa_football_class VARCHAR, location VARCHAR, school VARCHAR)", "question": "Which IHSAA Football Class has a Location of wabash, and a School of wabash?" }
### QUESTION What is Location Attendance, when Date is "December 30"? ### CONTEXT CREATE TABLE table_name_63 (location_attendance VARCHAR, date VARCHAR) ### ANSWER SELECT location_attendance FROM table_name_63 WHERE date = "december 30"
{ "answer": "SELECT location_attendance FROM table_name_63 WHERE date = \"december 30\"", "context": "CREATE TABLE table_name_63 (location_attendance VARCHAR, date VARCHAR)", "question": "What is Location Attendance, when Date is \"December 30\"?" }
### QUESTION Who was the away team at Victoria Park? ### CONTEXT CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR) ### ANSWER SELECT away_team FROM table_name_52 WHERE venue = "victoria park"
{ "answer": "SELECT away_team FROM table_name_52 WHERE venue = \"victoria park\"", "context": "CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR)", "question": "Who was the away team at Victoria Park?" }
### QUESTION What is the to par of Philip Parkin? ### CONTEXT CREATE TABLE table_name_64 (to_par VARCHAR, player VARCHAR) ### ANSWER SELECT to_par FROM table_name_64 WHERE player = "philip parkin"
{ "answer": "SELECT to_par FROM table_name_64 WHERE player = \"philip parkin\"", "context": "CREATE TABLE table_name_64 (to_par VARCHAR, player VARCHAR)", "question": "What is the to par of Philip Parkin?" }
### QUESTION What are the goals for a lost of Involuntary suspension of Season (hurricane Rita)? ### CONTEXT CREATE TABLE table_name_44 (goals_for VARCHAR, lost VARCHAR) ### ANSWER SELECT goals_for FROM table_name_44 WHERE lost = "involuntary suspension of season (hurricane rita)"
{ "answer": "SELECT goals_for FROM table_name_44 WHERE lost = \"involuntary suspension of season (hurricane rita)\"", "context": "CREATE TABLE table_name_44 (goals_for VARCHAR, lost VARCHAR)", "question": "What are the goals for a lost of Involuntary suspension of Season (hurricane Rita)?" }
### QUESTION What is the sum of the total number of medals when silver is less than 0? ### CONTEXT CREATE TABLE table_name_54 (total VARCHAR, silver INTEGER) ### ANSWER SELECT COUNT(total) FROM table_name_54 WHERE silver < 0
{ "answer": "SELECT COUNT(total) FROM table_name_54 WHERE silver < 0", "context": "CREATE TABLE table_name_54 (total VARCHAR, silver INTEGER)", "question": "What is the sum of the total number of medals when silver is less than 0?" }
### QUESTION Where is the poll source when Hillary clinton was the democrat, john mccain was the republican, and the margin of error was less than 4.5 on May 2-7, 2007? ### CONTEXT CREATE TABLE table_name_41 (poll_source VARCHAR, date VARCHAR, republican VARCHAR, democrat VARCHAR, margin_of_error VARCHAR) ### ANSWER SELECT poll_source FROM table_name_41 WHERE democrat = "hillary clinton" AND margin_of_error < 4.5 AND republican = "john mccain" AND date = "may 2-7, 2007"
{ "answer": "SELECT poll_source FROM table_name_41 WHERE democrat = \"hillary clinton\" AND margin_of_error < 4.5 AND republican = \"john mccain\" AND date = \"may 2-7, 2007\"", "context": "CREATE TABLE table_name_41 (poll_source VARCHAR, date VARCHAR, republican VARCHAR, democrat VARCHAR, margin_of_error VARCHAR)", "question": "Where is the poll source when Hillary clinton was the democrat, john mccain was the republican, and the margin of error was less than 4.5 on May 2-7, 2007?" }
### QUESTION What is the sum of the home wins of the Boston College Eagles, which has more than 6 wins? ### CONTEXT CREATE TABLE table_name_89 (Home INTEGER, institution VARCHAR, wins VARCHAR) ### ANSWER SELECT SUM(Home) AS wins FROM table_name_89 WHERE institution = "boston college eagles" AND wins > 6
{ "answer": "SELECT SUM(Home) AS wins FROM table_name_89 WHERE institution = \"boston college eagles\" AND wins > 6", "context": "CREATE TABLE table_name_89 (Home INTEGER, institution VARCHAR, wins VARCHAR)", "question": "What is the sum of the home wins of the Boston College Eagles, which has more than 6 wins?" }
### QUESTION Name the average round where Dave Stachelski was picked smaller than 187. ### CONTEXT CREATE TABLE table_name_28 (round INTEGER, overall VARCHAR, player VARCHAR) ### ANSWER SELECT AVG(round) FROM table_name_28 WHERE overall < 187 AND player = "dave stachelski"
{ "answer": "SELECT AVG(round) FROM table_name_28 WHERE overall < 187 AND player = \"dave stachelski\"", "context": "CREATE TABLE table_name_28 (round INTEGER, overall VARCHAR, player VARCHAR)", "question": "Name the average round where Dave Stachelski was picked smaller than 187." }
### QUESTION What commercial operation that has a gross capacity of 1,126 mw, and a unit of tianwan-4? ### CONTEXT CREATE TABLE table_name_95 (commercial_operation VARCHAR, gross_capacity VARCHAR, unit VARCHAR) ### ANSWER SELECT commercial_operation FROM table_name_95 WHERE gross_capacity = "1,126 mw" AND unit = "tianwan-4"
{ "answer": "SELECT commercial_operation FROM table_name_95 WHERE gross_capacity = \"1,126 mw\" AND unit = \"tianwan-4\"", "context": "CREATE TABLE table_name_95 (commercial_operation VARCHAR, gross_capacity VARCHAR, unit VARCHAR)", "question": "What commercial operation that has a gross capacity of 1,126 mw, and a unit of tianwan-4?" }
### QUESTION What is the lowest number of sheep and goats after 1931, with fewer than 2518 cows and more than 2604.8 horses? ### CONTEXT CREATE TABLE table_name_42 (sheep_and_goats INTEGER, total_horses VARCHAR, year VARCHAR, cows VARCHAR) ### ANSWER SELECT MIN(sheep_and_goats) FROM table_name_42 WHERE year > 1931 AND cows < 2518 AND total_horses > 2604.8
{ "answer": "SELECT MIN(sheep_and_goats) FROM table_name_42 WHERE year > 1931 AND cows < 2518 AND total_horses > 2604.8", "context": "CREATE TABLE table_name_42 (sheep_and_goats INTEGER, total_horses VARCHAR, year VARCHAR, cows VARCHAR)", "question": "What is the lowest number of sheep and goats after 1931, with fewer than 2518 cows and more than 2604.8 horses?" }
### QUESTION WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22? ### CONTEXT CREATE TABLE table_name_57 (stroke_count VARCHAR, radical__variants_ VARCHAR, frequency VARCHAR) ### ANSWER SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = "生" AND frequency < 22
{ "answer": "SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = \"生\" AND frequency < 22", "context": "CREATE TABLE table_name_57 (stroke_count VARCHAR, radical__variants_ VARCHAR, frequency VARCHAR)", "question": "WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22?" }
### QUESTION What is the score of the 2002 Tiger Cup third/fourth place match? ### CONTEXT CREATE TABLE table_name_16 (score VARCHAR, competition VARCHAR) ### ANSWER SELECT score FROM table_name_16 WHERE competition = "2002 tiger cup third/fourth place"
{ "answer": "SELECT score FROM table_name_16 WHERE competition = \"2002 tiger cup third/fourth place\"", "context": "CREATE TABLE table_name_16 (score VARCHAR, competition VARCHAR)", "question": "What is the score of the 2002 Tiger Cup third/fourth place match?" }
### QUESTION Name the mountains classification for rabobank and damiano cunego ### CONTEXT CREATE TABLE table_29077342_19 (mountains_classification VARCHAR, team_classification VARCHAR, general_classification VARCHAR) ### ANSWER SELECT mountains_classification FROM table_29077342_19 WHERE team_classification = "Rabobank" AND general_classification = "Damiano Cunego"
{ "answer": "SELECT mountains_classification FROM table_29077342_19 WHERE team_classification = \"Rabobank\" AND general_classification = \"Damiano Cunego\"", "context": "CREATE TABLE table_29077342_19 (mountains_classification VARCHAR, team_classification VARCHAR, general_classification VARCHAR)", "question": "Name the mountains classification for rabobank and damiano cunego" }
### QUESTION What role was nominated at the Sydney Film Festival? ### CONTEXT CREATE TABLE table_name_56 (role VARCHAR, festival_organization VARCHAR) ### ANSWER SELECT role FROM table_name_56 WHERE festival_organization = "sydney film festival"
{ "answer": "SELECT role FROM table_name_56 WHERE festival_organization = \"sydney film festival\"", "context": "CREATE TABLE table_name_56 (role VARCHAR, festival_organization VARCHAR)", "question": "What role was nominated at the Sydney Film Festival?" }
### QUESTION Which game has a high rebound of Evans (7) and a high assist of Evans, Ollie (3)? ### CONTEXT CREATE TABLE table_name_11 (game INTEGER, high_rebounds VARCHAR, high_assists VARCHAR) ### ANSWER SELECT MAX(game) FROM table_name_11 WHERE high_rebounds = "evans (7)" AND high_assists = "evans, ollie (3)"
{ "answer": "SELECT MAX(game) FROM table_name_11 WHERE high_rebounds = \"evans (7)\" AND high_assists = \"evans, ollie (3)\"", "context": "CREATE TABLE table_name_11 (game INTEGER, high_rebounds VARCHAR, high_assists VARCHAR)", "question": "Which game has a high rebound of Evans (7) and a high assist of Evans, Ollie (3)?" }
### QUESTION What was the score of the game on 27 January 1996? ### CONTEXT CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_15 WHERE date = "27 january 1996"
{ "answer": "SELECT score FROM table_name_15 WHERE date = \"27 january 1996\"", "context": "CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)", "question": "What was the score of the game on 27 January 1996?" }
### QUESTION What is the average crowd size for the home team hawthorn? ### CONTEXT CREATE TABLE table_name_13 (crowd INTEGER, home_team VARCHAR) ### ANSWER SELECT AVG(crowd) FROM table_name_13 WHERE home_team = "hawthorn"
{ "answer": "SELECT AVG(crowd) FROM table_name_13 WHERE home_team = \"hawthorn\"", "context": "CREATE TABLE table_name_13 (crowd INTEGER, home_team VARCHAR)", "question": "What is the average crowd size for the home team hawthorn?" }
### QUESTION What's Sara Isakovič's lane number that had a heat of 3? ### CONTEXT CREATE TABLE table_name_43 (lane INTEGER, heat VARCHAR, name VARCHAR) ### ANSWER SELECT SUM(lane) FROM table_name_43 WHERE heat = 3 AND name = "sara isakovič"
{ "answer": "SELECT SUM(lane) FROM table_name_43 WHERE heat = 3 AND name = \"sara isakovič\"", "context": "CREATE TABLE table_name_43 (lane INTEGER, heat VARCHAR, name VARCHAR)", "question": "What's Sara Isakovič's lane number that had a heat of 3?" }
### QUESTION Find the name of students who didn't take any course from Biology department. ### CONTEXT CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR); CREATE TABLE takes (id VARCHAR, course_id VARCHAR) ### ANSWER SELECT name FROM student WHERE NOT id IN (SELECT T1.id FROM takes AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.dept_name = 'Biology')
{ "answer": "SELECT name FROM student WHERE NOT id IN (SELECT T1.id FROM takes AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.dept_name = 'Biology')", "context": "CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR); CREATE TABLE takes (id VARCHAR, course_id VARCHAR)", "question": "Find the name of students who didn't take any course from Biology department." }
### QUESTION What is the Craft used at Coniston Water? ### CONTEXT CREATE TABLE table_name_15 (craft VARCHAR, location VARCHAR) ### ANSWER SELECT craft FROM table_name_15 WHERE location = "coniston water"
{ "answer": "SELECT craft FROM table_name_15 WHERE location = \"coniston water\"", "context": "CREATE TABLE table_name_15 (craft VARCHAR, location VARCHAR)", "question": "What is the Craft used at Coniston Water?" }
### QUESTION What is the total number of First Year, when Displacement CC is greater than 4719, when Engine is V8, when Power HP (kW) is "335 (246)", and when Model is "Ghibli SS"? ### CONTEXT CREATE TABLE table_name_18 (first_year VARCHAR, model VARCHAR, power_hp__kw_ VARCHAR, displacement_cc VARCHAR, engine VARCHAR) ### ANSWER SELECT COUNT(first_year) FROM table_name_18 WHERE displacement_cc > 4719 AND engine = "v8" AND power_hp__kw_ = "335 (246)" AND model = "ghibli ss"
{ "answer": "SELECT COUNT(first_year) FROM table_name_18 WHERE displacement_cc > 4719 AND engine = \"v8\" AND power_hp__kw_ = \"335 (246)\" AND model = \"ghibli ss\"", "context": "CREATE TABLE table_name_18 (first_year VARCHAR, model VARCHAR, power_hp__kw_ VARCHAR, displacement_cc VARCHAR, engine VARCHAR)", "question": "What is the total number of First Year, when Displacement CC is greater than 4719, when Engine is V8, when Power HP (kW) is \"335 (246)\", and when Model is \"Ghibli SS\"?" }
### QUESTION At which track was Frank Kimmel the Pole Winner of the Pennsylvania 200? ### CONTEXT CREATE TABLE table_name_80 (track VARCHAR, pole_winner VARCHAR, event_name VARCHAR) ### ANSWER SELECT track FROM table_name_80 WHERE pole_winner = "frank kimmel" AND event_name = "pennsylvania 200"
{ "answer": "SELECT track FROM table_name_80 WHERE pole_winner = \"frank kimmel\" AND event_name = \"pennsylvania 200\"", "context": "CREATE TABLE table_name_80 (track VARCHAR, pole_winner VARCHAR, event_name VARCHAR)", "question": "At which track was Frank Kimmel the Pole Winner of the Pennsylvania 200?" }
### QUESTION Who was the Home Captain and the Result for AUS by 4 wkts? ### CONTEXT CREATE TABLE table_name_25 (home_captain VARCHAR, result VARCHAR) ### ANSWER SELECT home_captain FROM table_name_25 WHERE result = "aus by 4 wkts"
{ "answer": "SELECT home_captain FROM table_name_25 WHERE result = \"aus by 4 wkts\"", "context": "CREATE TABLE table_name_25 (home_captain VARCHAR, result VARCHAR)", "question": "Who was the Home Captain and the Result for AUS by 4 wkts?" }
### QUESTION What is the total number of losses of the team with games less than 14, wins less than 3, in the Maac Conference at Fairfield School? ### CONTEXT CREATE TABLE table_name_61 (losses VARCHAR, school VARCHAR, conference VARCHAR, games VARCHAR, wins VARCHAR) ### ANSWER SELECT COUNT(losses) FROM table_name_61 WHERE games < 14 AND wins < 3 AND conference = "maac" AND school = "fairfield"
{ "answer": "SELECT COUNT(losses) FROM table_name_61 WHERE games < 14 AND wins < 3 AND conference = \"maac\" AND school = \"fairfield\"", "context": "CREATE TABLE table_name_61 (losses VARCHAR, school VARCHAR, conference VARCHAR, games VARCHAR, wins VARCHAR)", "question": "What is the total number of losses of the team with games less than 14, wins less than 3, in the Maac Conference at Fairfield School?" }
### QUESTION Where was the FC match with a score of 12 played? ### CONTEXT CREATE TABLE table_name_45 (location VARCHAR, fc_matches VARCHAR) ### ANSWER SELECT location FROM table_name_45 WHERE fc_matches = "12"
{ "answer": "SELECT location FROM table_name_45 WHERE fc_matches = \"12\"", "context": "CREATE TABLE table_name_45 (location VARCHAR, fc_matches VARCHAR)", "question": "Where was the FC match with a score of 12 played?" }
### QUESTION What catalogue has a track less than 16 and 2/3/56 recorded with a song titled Lawdy Miss Clawdy? ### CONTEXT CREATE TABLE table_name_83 (catalogue VARCHAR, song_title VARCHAR, track VARCHAR, recorded VARCHAR) ### ANSWER SELECT catalogue FROM table_name_83 WHERE track < 16 AND recorded = "2/3/56" AND song_title = "lawdy miss clawdy"
{ "answer": "SELECT catalogue FROM table_name_83 WHERE track < 16 AND recorded = \"2/3/56\" AND song_title = \"lawdy miss clawdy\"", "context": "CREATE TABLE table_name_83 (catalogue VARCHAR, song_title VARCHAR, track VARCHAR, recorded VARCHAR)", "question": "What catalogue has a track less than 16 and 2/3/56 recorded with a song titled Lawdy Miss Clawdy?" }
### QUESTION Which Rank is the Country of soviet union with a Total smaller than 19? ### CONTEXT CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR, total VARCHAR) ### ANSWER SELECT MIN(rank) FROM table_name_94 WHERE country = "soviet union" AND total < 19
{ "answer": "SELECT MIN(rank) FROM table_name_94 WHERE country = \"soviet union\" AND total < 19", "context": "CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR, total VARCHAR)", "question": "Which Rank is the Country of soviet union with a Total smaller than 19?" }
### QUESTION Which Surface had a Date of june 13, 1983? ### CONTEXT CREATE TABLE table_name_14 (surface VARCHAR, date VARCHAR) ### ANSWER SELECT surface FROM table_name_14 WHERE date = "june 13, 1983"
{ "answer": "SELECT surface FROM table_name_14 WHERE date = \"june 13, 1983\"", "context": "CREATE TABLE table_name_14 (surface VARCHAR, date VARCHAR)", "question": "Which Surface had a Date of june 13, 1983?" }
### QUESTION What are the lowest conceded with 1 draw, and a score larger than 14? ### CONTEXT CREATE TABLE table_name_71 (conceded INTEGER, draws VARCHAR, scored VARCHAR) ### ANSWER SELECT MIN(conceded) FROM table_name_71 WHERE draws = 1 AND scored > 14
{ "answer": "SELECT MIN(conceded) FROM table_name_71 WHERE draws = 1 AND scored > 14", "context": "CREATE TABLE table_name_71 (conceded INTEGER, draws VARCHAR, scored VARCHAR)", "question": "What are the lowest conceded with 1 draw, and a score larger than 14?" }
### QUESTION Who is the competitor from France with 10 starts? ### CONTEXT CREATE TABLE table_19487922_1 (name VARCHAR, country VARCHAR, race_entries__starts_ VARCHAR) ### ANSWER SELECT name FROM table_19487922_1 WHERE country = "France" AND race_entries__starts_ = "10"
{ "answer": "SELECT name FROM table_19487922_1 WHERE country = \"France\" AND race_entries__starts_ = \"10\"", "context": "CREATE TABLE table_19487922_1 (name VARCHAR, country VARCHAR, race_entries__starts_ VARCHAR)", "question": "Who is the competitor from France with 10 starts?" }
### QUESTION Which name has a Roll of 270? ### CONTEXT CREATE TABLE table_name_97 (name VARCHAR, roll VARCHAR) ### ANSWER SELECT name FROM table_name_97 WHERE roll = 270
{ "answer": "SELECT name FROM table_name_97 WHERE roll = 270", "context": "CREATE TABLE table_name_97 (name VARCHAR, roll VARCHAR)", "question": "Which name has a Roll of 270?" }
### QUESTION Which acquisition via has a position of forward and is on the state school or club? ### CONTEXT CREATE TABLE table_name_79 (acquisition_via VARCHAR, position VARCHAR, school_club_team VARCHAR) ### ANSWER SELECT acquisition_via FROM table_name_79 WHERE position = "forward" AND school_club_team = "state"
{ "answer": "SELECT acquisition_via FROM table_name_79 WHERE position = \"forward\" AND school_club_team = \"state\"", "context": "CREATE TABLE table_name_79 (acquisition_via VARCHAR, position VARCHAR, school_club_team VARCHAR)", "question": "Which acquisition via has a position of forward and is on the state school or club?" }
### QUESTION Which Year has a Competition of european championships, and Notes of 66.81 m? ### CONTEXT CREATE TABLE table_name_26 (year INTEGER, competition VARCHAR, notes VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_26 WHERE competition = "european championships" AND notes = "66.81 m"
{ "answer": "SELECT SUM(year) FROM table_name_26 WHERE competition = \"european championships\" AND notes = \"66.81 m\"", "context": "CREATE TABLE table_name_26 (year INTEGER, competition VARCHAR, notes VARCHAR)", "question": "Which Year has a Competition of european championships, and Notes of 66.81 m?" }
### QUESTION Show names of actors in descending order of the year their musical is awarded. ### CONTEXT CREATE TABLE musical (Musical_ID VARCHAR, Year VARCHAR); CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR) ### ANSWER SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC
{ "answer": "SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC", "context": "CREATE TABLE musical (Musical_ID VARCHAR, Year VARCHAR); CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR)", "question": "Show names of actors in descending order of the year their musical is awarded." }
### QUESTION What is the conserved in mus musculus listing for sequence aagtact? ### CONTEXT CREATE TABLE table_26708105_2 (conserved_in_mus_musculus VARCHAR, sequence VARCHAR) ### ANSWER SELECT conserved_in_mus_musculus FROM table_26708105_2 WHERE sequence = "aAGTAct"
{ "answer": "SELECT conserved_in_mus_musculus FROM table_26708105_2 WHERE sequence = \"aAGTAct\"", "context": "CREATE TABLE table_26708105_2 (conserved_in_mus_musculus VARCHAR, sequence VARCHAR)", "question": "What is the conserved in mus musculus listing for sequence aagtact?" }
### QUESTION What is Opponents, when Partner is Mervana Jugić-Salkić? ### CONTEXT CREATE TABLE table_name_8 (opponents VARCHAR, partner VARCHAR) ### ANSWER SELECT opponents FROM table_name_8 WHERE partner = "mervana jugić-salkić"
{ "answer": "SELECT opponents FROM table_name_8 WHERE partner = \"mervana jugić-salkić\"", "context": "CREATE TABLE table_name_8 (opponents VARCHAR, partner VARCHAR)", "question": "What is Opponents, when Partner is Mervana Jugić-Salkić?" }
### QUESTION Who was played against in the final on November 14, 1994? ### CONTEXT CREATE TABLE table_name_17 (opponent_in_the_final VARCHAR, date VARCHAR) ### ANSWER SELECT opponent_in_the_final FROM table_name_17 WHERE date = "november 14, 1994"
{ "answer": "SELECT opponent_in_the_final FROM table_name_17 WHERE date = \"november 14, 1994\"", "context": "CREATE TABLE table_name_17 (opponent_in_the_final VARCHAR, date VARCHAR)", "question": "Who was played against in the final on November 14, 1994?" }
### QUESTION Who were the partners during times that harry johnson hazel hotchkiss wightman was the opponent? ### CONTEXT CREATE TABLE table_2127933_3 (partner VARCHAR, opponents VARCHAR) ### ANSWER SELECT partner FROM table_2127933_3 WHERE opponents = "Harry Johnson Hazel Hotchkiss Wightman"
{ "answer": "SELECT partner FROM table_2127933_3 WHERE opponents = \"Harry Johnson Hazel Hotchkiss Wightman\"", "context": "CREATE TABLE table_2127933_3 (partner VARCHAR, opponents VARCHAR)", "question": "Who were the partners during times that harry johnson hazel hotchkiss wightman was the opponent?" }
### QUESTION Name the total number of swimsuits for evening gowns less than 8.21 and average of 8.453 with interview less than 9.09 ### CONTEXT CREATE TABLE table_name_54 (swimsuit VARCHAR, average VARCHAR, interview VARCHAR, evening_gown VARCHAR) ### ANSWER SELECT COUNT(swimsuit) FROM table_name_54 WHERE interview < 9.09 AND evening_gown < 8.21 AND average = 8.453
{ "answer": "SELECT COUNT(swimsuit) FROM table_name_54 WHERE interview < 9.09 AND evening_gown < 8.21 AND average = 8.453", "context": "CREATE TABLE table_name_54 (swimsuit VARCHAR, average VARCHAR, interview VARCHAR, evening_gown VARCHAR)", "question": "Name the total number of swimsuits for evening gowns less than 8.21 and average of 8.453 with interview less than 9.09" }
### QUESTION What is the main color(s) for marlboro? ### CONTEXT CREATE TABLE table_name_36 (main_colour_s_ VARCHAR, main_sponsor_s_ VARCHAR) ### ANSWER SELECT main_colour_s_ FROM table_name_36 WHERE main_sponsor_s_ = "marlboro"
{ "answer": "SELECT main_colour_s_ FROM table_name_36 WHERE main_sponsor_s_ = \"marlboro\"", "context": "CREATE TABLE table_name_36 (main_colour_s_ VARCHAR, main_sponsor_s_ VARCHAR)", "question": "What is the main color(s) for marlboro?" }
### QUESTION Name the cyrillic name for orthodox christianity village and bačko dobro polje ### CONTEXT CREATE TABLE table_2562572_20 (cyrillic_name_other_names VARCHAR, settlement VARCHAR, dominant_religion__2002_ VARCHAR, type VARCHAR) ### ANSWER SELECT cyrillic_name_other_names FROM table_2562572_20 WHERE dominant_religion__2002_ = "Orthodox Christianity" AND type = "village" AND settlement = "Bačko Dobro Polje"
{ "answer": "SELECT cyrillic_name_other_names FROM table_2562572_20 WHERE dominant_religion__2002_ = \"Orthodox Christianity\" AND type = \"village\" AND settlement = \"Bačko Dobro Polje\"", "context": "CREATE TABLE table_2562572_20 (cyrillic_name_other_names VARCHAR, settlement VARCHAR, dominant_religion__2002_ VARCHAR, type VARCHAR)", "question": "Name the cyrillic name for orthodox christianity village and bačko dobro polje" }
### QUESTION If the median income is $57,407, what is the per capita income? ### CONTEXT CREATE TABLE table_1840495_2 (per_capita_income VARCHAR, median_house__hold_income VARCHAR) ### ANSWER SELECT per_capita_income FROM table_1840495_2 WHERE median_house__hold_income = "$57,407"
{ "answer": "SELECT per_capita_income FROM table_1840495_2 WHERE median_house__hold_income = \"$57,407\"", "context": "CREATE TABLE table_1840495_2 (per_capita_income VARCHAR, median_house__hold_income VARCHAR)", "question": "If the median income is $57,407, what is the per capita income?" }
### QUESTION Which Rank points has a Score points of olympic silver medalist? ### CONTEXT CREATE TABLE table_name_42 (rank_points VARCHAR, score_points VARCHAR) ### ANSWER SELECT rank_points FROM table_name_42 WHERE score_points = "olympic silver medalist"
{ "answer": "SELECT rank_points FROM table_name_42 WHERE score_points = \"olympic silver medalist\"", "context": "CREATE TABLE table_name_42 (rank_points VARCHAR, score_points VARCHAR)", "question": "Which Rank points has a Score points of olympic silver medalist?" }
### QUESTION How many votes did Others receive where Kerry has 44.6%, and Bush more than 163,650 votes? ### CONTEXT CREATE TABLE table_name_65 (others__number VARCHAR, kerry__percentage VARCHAR, bush__number VARCHAR) ### ANSWER SELECT COUNT(others__number) FROM table_name_65 WHERE kerry__percentage = "44.6%" AND bush__number > 163 OFFSET 650
{ "answer": "SELECT COUNT(others__number) FROM table_name_65 WHERE kerry__percentage = \"44.6%\" AND bush__number > 163 OFFSET 650", "context": "CREATE TABLE table_name_65 (others__number VARCHAR, kerry__percentage VARCHAR, bush__number VARCHAR)", "question": "How many votes did Others receive where Kerry has 44.6%, and Bush more than 163,650 votes?" }
### QUESTION Name the NOSAWA Rongai for petey williams ### CONTEXT CREATE TABLE table_name_97 (nosawa_rongai VARCHAR, block_a VARCHAR) ### ANSWER SELECT nosawa_rongai FROM table_name_97 WHERE block_a = "petey williams"
{ "answer": "SELECT nosawa_rongai FROM table_name_97 WHERE block_a = \"petey williams\"", "context": "CREATE TABLE table_name_97 (nosawa_rongai VARCHAR, block_a VARCHAR)", "question": "Name the NOSAWA Rongai for petey williams" }
### QUESTION What is the least number of tropical cyclones when the strongest storm was Tiffany and less than 10 tropical lows. ### CONTEXT CREATE TABLE table_name_88 (Severe INTEGER, strongest_storm VARCHAR, tropical_lows VARCHAR) ### ANSWER SELECT MIN(Severe) AS tropical_cyclones FROM table_name_88 WHERE strongest_storm = "tiffany" AND tropical_lows > 10
{ "answer": "SELECT MIN(Severe) AS tropical_cyclones FROM table_name_88 WHERE strongest_storm = \"tiffany\" AND tropical_lows > 10", "context": "CREATE TABLE table_name_88 (Severe INTEGER, strongest_storm VARCHAR, tropical_lows VARCHAR)", "question": "What is the least number of tropical cyclones when the strongest storm was Tiffany and less than 10 tropical lows." }
### QUESTION What is the entrant earlier than 1956 with a Vanwall Special chassis? ### CONTEXT CREATE TABLE table_name_19 (entrant VARCHAR, year VARCHAR, chassis VARCHAR) ### ANSWER SELECT entrant FROM table_name_19 WHERE year < 1956 AND chassis = "vanwall special"
{ "answer": "SELECT entrant FROM table_name_19 WHERE year < 1956 AND chassis = \"vanwall special\"", "context": "CREATE TABLE table_name_19 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)", "question": "What is the entrant earlier than 1956 with a Vanwall Special chassis?" }
### QUESTION Who was the French Elector Elevated on 1288, May 16? ### CONTEXT CREATE TABLE table_name_92 (elector VARCHAR, nationality VARCHAR, elevated VARCHAR) ### ANSWER SELECT elector FROM table_name_92 WHERE nationality = "french" AND elevated = "1288, may 16"
{ "answer": "SELECT elector FROM table_name_92 WHERE nationality = \"french\" AND elevated = \"1288, may 16\"", "context": "CREATE TABLE table_name_92 (elector VARCHAR, nationality VARCHAR, elevated VARCHAR)", "question": "Who was the French Elector Elevated on 1288, May 16?" }
### QUESTION How few acres is the area of Clashroe? ### CONTEXT CREATE TABLE table_30120633_1 (area__acres__ INTEGER, townland VARCHAR) ### ANSWER SELECT MIN(area__acres__) FROM table_30120633_1 WHERE townland = "Clashroe"
{ "answer": "SELECT MIN(area__acres__) FROM table_30120633_1 WHERE townland = \"Clashroe\"", "context": "CREATE TABLE table_30120633_1 (area__acres__ INTEGER, townland VARCHAR)", "question": "How few acres is the area of Clashroe?" }
### QUESTION Who is the second member that was elected in 1555? ### CONTEXT CREATE TABLE table_name_34 (elected VARCHAR) ### ANSWER SELECT 2 AS nd_member FROM table_name_34 WHERE elected = "1555"
{ "answer": "SELECT 2 AS nd_member FROM table_name_34 WHERE elected = \"1555\"", "context": "CREATE TABLE table_name_34 (elected VARCHAR)", "question": "Who is the second member that was elected in 1555?" }
### QUESTION When was chuck morris, back, drafted? ### CONTEXT CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR) ### ANSWER SELECT MIN(pick) FROM table_name_51 WHERE position = "back" AND player = "chuck morris"
{ "answer": "SELECT MIN(pick) FROM table_name_51 WHERE position = \"back\" AND player = \"chuck morris\"", "context": "CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR)", "question": "When was chuck morris, back, drafted?" }
### QUESTION what is the most laps with the time/retired is differential and the grid is more than 2? ### CONTEXT CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR, grid VARCHAR) ### ANSWER SELECT MAX(laps) FROM table_name_35 WHERE time_retired = "differential" AND grid > 2
{ "answer": "SELECT MAX(laps) FROM table_name_35 WHERE time_retired = \"differential\" AND grid > 2", "context": "CREATE TABLE table_name_35 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)", "question": "what is the most laps with the time/retired is differential and the grid is more than 2?" }
### QUESTION With the distribution mechanism of Microsoft website and the security issues of 98-004, what is the version? ### CONTEXT CREATE TABLE table_2263152_1 (version VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR) ### ANSWER SELECT version FROM table_2263152_1 WHERE security_issues = "98-004" AND distribution_mechanism = "Microsoft website"
{ "answer": "SELECT version FROM table_2263152_1 WHERE security_issues = \"98-004\" AND distribution_mechanism = \"Microsoft website\"", "context": "CREATE TABLE table_2263152_1 (version VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR)", "question": "With the distribution mechanism of Microsoft website and the security issues of 98-004, what is the version?" }
### QUESTION how many times was the population estimate 2005 have an area (km2) more than 8,023.74? ### CONTEXT CREATE TABLE table_name_26 (population_estimate_2005 VARCHAR, area__km_2__ INTEGER) ### ANSWER SELECT COUNT(population_estimate_2005) FROM table_name_26 WHERE area__km_2__ > 8 OFFSET 023.74
{ "answer": "SELECT COUNT(population_estimate_2005) FROM table_name_26 WHERE area__km_2__ > 8 OFFSET 023.74", "context": "CREATE TABLE table_name_26 (population_estimate_2005 VARCHAR, area__km_2__ INTEGER)", "question": "how many times was the population estimate 2005 have an area (km2) more than 8,023.74?" }
### QUESTION How many episodes were written by Tom Scharpling and Daniel Dratch? ### CONTEXT CREATE TABLE table_25716397_1 (no_in_season VARCHAR, written_by VARCHAR) ### ANSWER SELECT COUNT(no_in_season) FROM table_25716397_1 WHERE written_by = "Tom Scharpling and Daniel Dratch"
{ "answer": "SELECT COUNT(no_in_season) FROM table_25716397_1 WHERE written_by = \"Tom Scharpling and Daniel Dratch\"", "context": "CREATE TABLE table_25716397_1 (no_in_season VARCHAR, written_by VARCHAR)", "question": "How many episodes were written by Tom Scharpling and Daniel Dratch?" }
### QUESTION Players of judith wiesner and alex antonitsch had what match w-l? ### CONTEXT CREATE TABLE table_name_64 (matches_w_l VARCHAR, players VARCHAR) ### ANSWER SELECT matches_w_l FROM table_name_64 WHERE players = "judith wiesner and alex antonitsch"
{ "answer": "SELECT matches_w_l FROM table_name_64 WHERE players = \"judith wiesner and alex antonitsch\"", "context": "CREATE TABLE table_name_64 (matches_w_l VARCHAR, players VARCHAR)", "question": "Players of judith wiesner and alex antonitsch had what match w-l?" }
### QUESTION Find the dates on which more than one revisions were made. ### CONTEXT CREATE TABLE Catalogs (date_of_latest_revision VARCHAR) ### ANSWER SELECT date_of_latest_revision FROM Catalogs GROUP BY date_of_latest_revision HAVING COUNT(*) > 1
{ "answer": "SELECT date_of_latest_revision FROM Catalogs GROUP BY date_of_latest_revision HAVING COUNT(*) > 1", "context": "CREATE TABLE Catalogs (date_of_latest_revision VARCHAR)", "question": "Find the dates on which more than one revisions were made." }
### QUESTION What is the smallest electorate for the Conservative party in South West Devon constituency, with over 2 conservatives and a name of Plymstock Radford? ### CONTEXT CREATE TABLE table_name_57 (electorate INTEGER, name VARCHAR, political_party VARCHAR, constituency VARCHAR) ### ANSWER SELECT MIN(electorate) FROM table_name_57 WHERE political_party = "conservative" AND constituency = "south west devon" AND "conservative" > 2 AND name = "plymstock radford"
{ "answer": "SELECT MIN(electorate) FROM table_name_57 WHERE political_party = \"conservative\" AND constituency = \"south west devon\" AND \"conservative\" > 2 AND name = \"plymstock radford\"", "context": "CREATE TABLE table_name_57 (electorate INTEGER, name VARCHAR, political_party VARCHAR, constituency VARCHAR)", "question": "What is the smallest electorate for the Conservative party in South West Devon constituency, with over 2 conservatives and a name of Plymstock Radford?" }
### QUESTION Which ranking has money of $82 and Al Watrous as the player? ### CONTEXT CREATE TABLE table_name_64 (place VARCHAR, money___$__ VARCHAR, player VARCHAR) ### ANSWER SELECT place FROM table_name_64 WHERE money___$__ = 82 AND player = "al watrous"
{ "answer": "SELECT place FROM table_name_64 WHERE money___$__ = 82 AND player = \"al watrous\"", "context": "CREATE TABLE table_name_64 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)", "question": "Which ranking has money of $82 and Al Watrous as the player?" }
### QUESTION Find the names of bank branches that have provided a loan to any customer whose credit score is below 100. ### CONTEXT CREATE TABLE bank (bname VARCHAR, branch_id VARCHAR); CREATE TABLE customer (cust_id VARCHAR, credit_score INTEGER); CREATE TABLE loan (branch_id VARCHAR, cust_id VARCHAR) ### ANSWER SELECT T2.bname FROM loan AS T1 JOIN bank AS T2 ON T1.branch_id = T2.branch_id JOIN customer AS T3 ON T1.cust_id = T3.cust_id WHERE T3.credit_score < 100
{ "answer": "SELECT T2.bname FROM loan AS T1 JOIN bank AS T2 ON T1.branch_id = T2.branch_id JOIN customer AS T3 ON T1.cust_id = T3.cust_id WHERE T3.credit_score < 100", "context": "CREATE TABLE bank (bname VARCHAR, branch_id VARCHAR); CREATE TABLE customer (cust_id VARCHAR, credit_score INTEGER); CREATE TABLE loan (branch_id VARCHAR, cust_id VARCHAR)", "question": "Find the names of bank branches that have provided a loan to any customer whose credit score is below 100." }
### QUESTION What Date has a Result of l 21–34? ### CONTEXT CREATE TABLE table_name_31 (date VARCHAR, result VARCHAR) ### ANSWER SELECT date FROM table_name_31 WHERE result = "l 21–34"
{ "answer": "SELECT date FROM table_name_31 WHERE result = \"l 21–34\"", "context": "CREATE TABLE table_name_31 (date VARCHAR, result VARCHAR)", "question": "What Date has a Result of l 21–34?" }
### QUESTION What are the names of the courses that have exactly 1 student enrollment? ### CONTEXT CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR) ### ANSWER SELECT T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name HAVING COUNT(*) = 1
{ "answer": "SELECT T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name HAVING COUNT(*) = 1", "context": "CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)", "question": "What are the names of the courses that have exactly 1 student enrollment?" }
### QUESTION How many dates did Daniel Ruiz win the Spanish Grand Prix? ### CONTEXT CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR, race_winner VARCHAR) ### ANSWER SELECT COUNT(date) FROM table_28925058_1 WHERE grand_prix = "Spanish grand_prix" AND race_winner = "Daniel Ruiz"
{ "answer": "SELECT COUNT(date) FROM table_28925058_1 WHERE grand_prix = \"Spanish grand_prix\" AND race_winner = \"Daniel Ruiz\"", "context": "CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR, race_winner VARCHAR)", "question": "How many dates did Daniel Ruiz win the Spanish Grand Prix?" }
### QUESTION Name the college/junior club team for jimmy jones ### CONTEXT CREATE TABLE table_1965650_2 (college_junior_club_team VARCHAR, player VARCHAR) ### ANSWER SELECT college_junior_club_team FROM table_1965650_2 WHERE player = "Jimmy Jones"
{ "answer": "SELECT college_junior_club_team FROM table_1965650_2 WHERE player = \"Jimmy Jones\"", "context": "CREATE TABLE table_1965650_2 (college_junior_club_team VARCHAR, player VARCHAR)", "question": "Name the college/junior club team for jimmy jones" }
### QUESTION yes or no for the gold coast with yes for melbourne, yes for adelaide, yes for auckland? ### CONTEXT CREATE TABLE table_name_2 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, adelaide VARCHAR) ### ANSWER SELECT gold_coast FROM table_name_2 WHERE melbourne = "yes" AND adelaide = "yes" AND auckland = "yes"
{ "answer": "SELECT gold_coast FROM table_name_2 WHERE melbourne = \"yes\" AND adelaide = \"yes\" AND auckland = \"yes\"", "context": "CREATE TABLE table_name_2 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, adelaide VARCHAR)", "question": "yes or no for the gold coast with yes for melbourne, yes for adelaide, yes for auckland?" }
### QUESTION What is the Singapore Gross with a Producer that is 2000? ### CONTEXT CREATE TABLE table_name_72 (singapore_gross VARCHAR, producer VARCHAR) ### ANSWER SELECT singapore_gross FROM table_name_72 WHERE producer = "2000"
{ "answer": "SELECT singapore_gross FROM table_name_72 WHERE producer = \"2000\"", "context": "CREATE TABLE table_name_72 (singapore_gross VARCHAR, producer VARCHAR)", "question": "What is the Singapore Gross with a Producer that is 2000?" }
### QUESTION who is the incumbent with candidates being tom ridge (r) 80.9% joylyn blackwell (d) 19.1% ### CONTEXT CREATE TABLE table_1341586_39 (incumbent VARCHAR, candidates VARCHAR) ### ANSWER SELECT incumbent FROM table_1341586_39 WHERE candidates = "Tom Ridge (R) 80.9% Joylyn Blackwell (D) 19.1%"
{ "answer": "SELECT incumbent FROM table_1341586_39 WHERE candidates = \"Tom Ridge (R) 80.9% Joylyn Blackwell (D) 19.1%\"", "context": "CREATE TABLE table_1341586_39 (incumbent VARCHAR, candidates VARCHAR)", "question": "who is the incumbent with candidates being tom ridge (r) 80.9% joylyn blackwell (d) 19.1%" }
### QUESTION How many reasons for change were listed when Edward Hempstead was the successor? ### CONTEXT CREATE TABLE table_225095_4 (reason_for_change VARCHAR, successor VARCHAR) ### ANSWER SELECT COUNT(reason_for_change) FROM table_225095_4 WHERE successor = "Edward Hempstead"
{ "answer": "SELECT COUNT(reason_for_change) FROM table_225095_4 WHERE successor = \"Edward Hempstead\"", "context": "CREATE TABLE table_225095_4 (reason_for_change VARCHAR, successor VARCHAR)", "question": "How many reasons for change were listed when Edward Hempstead was the successor?" }
### QUESTION Find the name of the campuses that is in Northridge, Los Angeles or in San Francisco, San Francisco. ### CONTEXT CREATE TABLE campuses (campus VARCHAR, LOCATION VARCHAR, county VARCHAR) ### ANSWER SELECT campus FROM campuses WHERE LOCATION = "Northridge" AND county = "Los Angeles" UNION SELECT campus FROM campuses WHERE LOCATION = "San Francisco" AND county = "San Francisco"
{ "answer": "SELECT campus FROM campuses WHERE LOCATION = \"Northridge\" AND county = \"Los Angeles\" UNION SELECT campus FROM campuses WHERE LOCATION = \"San Francisco\" AND county = \"San Francisco\"", "context": "CREATE TABLE campuses (campus VARCHAR, LOCATION VARCHAR, county VARCHAR)", "question": "Find the name of the campuses that is in Northridge, Los Angeles or in San Francisco, San Francisco." }
### QUESTION How many years was the number of laps 71? ### CONTEXT CREATE TABLE table_name_49 (year VARCHAR, laps VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_49 WHERE laps = 71
{ "answer": "SELECT COUNT(year) FROM table_name_49 WHERE laps = 71", "context": "CREATE TABLE table_name_49 (year VARCHAR, laps VARCHAR)", "question": "How many years was the number of laps 71?" }
### QUESTION Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing? ### CONTEXT CREATE TABLE table_27743641_2 (lmp2_winning_driver VARCHAR, lmp1_winning_team VARCHAR) ### ANSWER SELECT lmp2_winning_driver FROM table_27743641_2 WHERE lmp1_winning_team = "No. 20 Oryx Dyson Racing"
{ "answer": "SELECT lmp2_winning_driver FROM table_27743641_2 WHERE lmp1_winning_team = \"No. 20 Oryx Dyson Racing\"", "context": "CREATE TABLE table_27743641_2 (lmp2_winning_driver VARCHAR, lmp1_winning_team VARCHAR)", "question": "Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing?" }
### QUESTION Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen ### CONTEXT CREATE TABLE table_14496232_2 (mens_singles VARCHAR, womens_singles VARCHAR, mixed_doubles VARCHAR) ### ANSWER SELECT mens_singles FROM table_14496232_2 WHERE womens_singles = "Wang Lin" AND mixed_doubles = "Joachim Fischer Nielsen Christinna Pedersen"
{ "answer": "SELECT mens_singles FROM table_14496232_2 WHERE womens_singles = \"Wang Lin\" AND mixed_doubles = \"Joachim Fischer Nielsen Christinna Pedersen\"", "context": "CREATE TABLE table_14496232_2 (mens_singles VARCHAR, womens_singles VARCHAR, mixed_doubles VARCHAR)", "question": "Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen" }
### QUESTION What is the desired rate when the rate limit (p) is 50.33? ### CONTEXT CREATE TABLE table_25316812_1 (desired_rate__p_ VARCHAR, rate_limit__p_ VARCHAR) ### ANSWER SELECT desired_rate__p_ FROM table_25316812_1 WHERE rate_limit__p_ = "50.33"
{ "answer": "SELECT desired_rate__p_ FROM table_25316812_1 WHERE rate_limit__p_ = \"50.33\"", "context": "CREATE TABLE table_25316812_1 (desired_rate__p_ VARCHAR, rate_limit__p_ VARCHAR)", "question": "What is the desired rate when the rate limit (p) is 50.33?" }
### QUESTION Name the number of seats to be won being % of popular vote at 6.88% ### CONTEXT CREATE TABLE table_19283982_4 (_number_of_seats_to_be_won VARCHAR, _percentage_of_popular_vote VARCHAR) ### ANSWER SELECT _number_of_seats_to_be_won FROM table_19283982_4 WHERE _percentage_of_popular_vote = "6.88%"
{ "answer": "SELECT _number_of_seats_to_be_won FROM table_19283982_4 WHERE _percentage_of_popular_vote = \"6.88%\"", "context": "CREATE TABLE table_19283982_4 (_number_of_seats_to_be_won VARCHAR, _percentage_of_popular_vote VARCHAR)", "question": "Name the number of seats to be won being % of popular vote at 6.88%" }