text
stringlengths
150
1.06k
source
dict
### QUESTION What is the rank of the cinema when the headquarters are in toronto, ON and the screens is less than 1,438? ### CONTEXT CREATE TABLE table_name_19 (rank INTEGER, headquarters VARCHAR, screens VARCHAR) ### ANSWER SELECT AVG(rank) FROM table_name_19 WHERE headquarters = "toronto, on" AND screens < 1 OFFSET 438</s>
{ "answer": "SELECT AVG(rank) FROM table_name_19 WHERE headquarters = \"toronto, on\" AND screens < 1 OFFSET 438", "context": "CREATE TABLE table_name_19 (rank INTEGER, headquarters VARCHAR, screens VARCHAR)", "question": "What is the rank of the cinema when the headquarters are in toronto, ON and the screens is less than 1,438?" }
### QUESTION In what poll is John Oxendine at 32%? ### CONTEXT CREATE TABLE table_name_67 (poll_source VARCHAR, john_oxendine VARCHAR) ### ANSWER SELECT poll_source FROM table_name_67 WHERE john_oxendine = "32%"</s>
{ "answer": "SELECT poll_source FROM table_name_67 WHERE john_oxendine = \"32%\"", "context": "CREATE TABLE table_name_67 (poll_source VARCHAR, john_oxendine VARCHAR)", "question": "In what poll is John Oxendine at 32%?" }
### QUESTION What is the largest number of races when there are less than 6 podiums, the series is the formula renault 2.0 eurocup, and there are more than 0 wins? ### CONTEXT CREATE TABLE table_name_5 (races INTEGER, wins VARCHAR, podiums VARCHAR, series VARCHAR) ### ANSWER SELECT MAX(races) FROM table_name_5 WHERE podiums < 6 AND series = "formula renault 2.0 eurocup" AND wins > 0</s>
{ "answer": "SELECT MAX(races) FROM table_name_5 WHERE podiums < 6 AND series = \"formula renault 2.0 eurocup\" AND wins > 0", "context": "CREATE TABLE table_name_5 (races INTEGER, wins VARCHAR, podiums VARCHAR, series VARCHAR)", "question": "What is the largest number of races when there are less than 6 podiums, the series is the formula renault 2.0 eurocup, and there are more than 0 wins?" }
### QUESTION What is the sum of Year opened when the span feet is more than 1247, and the spam metres is 384? ### CONTEXT CREATE TABLE table_name_13 (year_opened INTEGER, span_feet VARCHAR, span_metres VARCHAR) ### ANSWER SELECT SUM(year_opened) FROM table_name_13 WHERE span_feet > 1247 AND span_metres = 384</s>
{ "answer": "SELECT SUM(year_opened) FROM table_name_13 WHERE span_feet > 1247 AND span_metres = 384", "context": "CREATE TABLE table_name_13 (year_opened INTEGER, span_feet VARCHAR, span_metres VARCHAR)", "question": "What is the sum of Year opened when the span feet is more than 1247, and the spam metres is 384?" }
### QUESTION What is the enrollment associated with a capacity greater then 35,650? ### CONTEXT CREATE TABLE table_name_46 (enrollment INTEGER, capacity INTEGER) ### ANSWER SELECT MIN(enrollment) FROM table_name_46 WHERE capacity > 35 OFFSET 650</s>
{ "answer": "SELECT MIN(enrollment) FROM table_name_46 WHERE capacity > 35 OFFSET 650", "context": "CREATE TABLE table_name_46 (enrollment INTEGER, capacity INTEGER)", "question": "What is the enrollment associated with a capacity greater then 35,650?" }
### QUESTION What is the highest K 2 O, when Na 2 O is greater than 1.87, when Fe 2 O 3 is greater than 0.07, when Objects is Ritual Disk, and when Al 2 O 3 is less than 0.62? ### CONTEXT CREATE TABLE table_name_40 (k_2_o INTEGER, al_2_o_3 VARCHAR, objects VARCHAR, na_2_o VARCHAR, fe_2_o_3 VARCHAR) ### ANSWER SELECT MAX(k_2_o) FROM table_name_40 WHERE na_2_o > 1.87 AND fe_2_o_3 > 0.07 AND objects = "ritual disk" AND al_2_o_3 < 0.62</s>
{ "answer": "SELECT MAX(k_2_o) FROM table_name_40 WHERE na_2_o > 1.87 AND fe_2_o_3 > 0.07 AND objects = \"ritual disk\" AND al_2_o_3 < 0.62", "context": "CREATE TABLE table_name_40 (k_2_o INTEGER, al_2_o_3 VARCHAR, objects VARCHAR, na_2_o VARCHAR, fe_2_o_3 VARCHAR)", "question": "What is the highest K 2 O, when Na 2 O is greater than 1.87, when Fe 2 O 3 is greater than 0.07, when Objects is Ritual Disk, and when Al 2 O 3 is less than 0.62?" }
### QUESTION What is the date of appointment for the team with a resigned manner of departure and replaced by Sandy Clark? ### CONTEXT CREATE TABLE table_name_2 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR) ### ANSWER SELECT date_of_appointment FROM table_name_2 WHERE manner_of_departure = "resigned" AND replaced_by = "sandy clark"</s>
{ "answer": "SELECT date_of_appointment FROM table_name_2 WHERE manner_of_departure = \"resigned\" AND replaced_by = \"sandy clark\"", "context": "CREATE TABLE table_name_2 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR)", "question": "What is the date of appointment for the team with a resigned manner of departure and replaced by Sandy Clark?" }
### QUESTION With a House Edge of 3.63% and a Non-Suited Match of 4:1, what is the Double Non-Suited Match? ### CONTEXT CREATE TABLE table_name_1 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR) ### ANSWER SELECT Double AS non_suited_match FROM table_name_1 WHERE non_suited_match = "4:1" AND house_edge = "3.63%"</s>
{ "answer": "SELECT Double AS non_suited_match FROM table_name_1 WHERE non_suited_match = \"4:1\" AND house_edge = \"3.63%\"", "context": "CREATE TABLE table_name_1 (Double VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR)", "question": "With a House Edge of 3.63% and a Non-Suited Match of 4:1, what is the Double Non-Suited Match?" }
### QUESTION For the tournament played on 16 Jan 2011, what was the winning score? ### CONTEXT CREATE TABLE table_name_21 (winning_score VARCHAR, date VARCHAR) ### ANSWER SELECT winning_score FROM table_name_21 WHERE date = "16 jan 2011"</s>
{ "answer": "SELECT winning_score FROM table_name_21 WHERE date = \"16 jan 2011\"", "context": "CREATE TABLE table_name_21 (winning_score VARCHAR, date VARCHAR)", "question": "For the tournament played on 16 Jan 2011, what was the winning score?" }
### QUESTION Who drives a BMW Sauber with a Grid larger than 2 and a Time/Retired of +15.037? ### CONTEXT CREATE TABLE table_name_37 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR) ### ANSWER SELECT driver FROM table_name_37 WHERE grid > 2 AND constructor = "bmw sauber" AND time_retired = "+15.037"</s>
{ "answer": "SELECT driver FROM table_name_37 WHERE grid > 2 AND constructor = \"bmw sauber\" AND time_retired = \"+15.037\"", "context": "CREATE TABLE table_name_37 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR)", "question": "Who drives a BMW Sauber with a Grid larger than 2 and a Time/Retired of +15.037?" }
### QUESTION Participation as of actor, film editor has what average year? ### CONTEXT CREATE TABLE table_name_11 (year INTEGER, participation_as VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_11 WHERE participation_as = "actor, film editor"</s>
{ "answer": "SELECT AVG(year) FROM table_name_11 WHERE participation_as = \"actor, film editor\"", "context": "CREATE TABLE table_name_11 (year INTEGER, participation_as VARCHAR)", "question": "Participation as of actor, film editor has what average year?" }
### QUESTION For the tournament ending with a margin of victory of 6 strokes, what was the winning score? ### CONTEXT CREATE TABLE table_name_90 (winning_score VARCHAR, margin_of_victory VARCHAR) ### ANSWER SELECT winning_score FROM table_name_90 WHERE margin_of_victory = "6 strokes"</s>
{ "answer": "SELECT winning_score FROM table_name_90 WHERE margin_of_victory = \"6 strokes\"", "context": "CREATE TABLE table_name_90 (winning_score VARCHAR, margin_of_victory VARCHAR)", "question": "For the tournament ending with a margin of victory of 6 strokes, what was the winning score?" }
### QUESTION What is the total for University of Dublin, having a panel of 0 for agricultural, was nominated by Taoiseach more than 0, and an industrial and commercial panel less than 0? ### CONTEXT CREATE TABLE table_name_94 (university_of_dublin VARCHAR, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR, nominated_by_the_taoiseach VARCHAR) ### ANSWER SELECT COUNT(university_of_dublin) FROM table_name_94 WHERE agricultural_panel = 0 AND nominated_by_the_taoiseach > 0 AND industrial_and_commercial_panel < 0</s>
{ "answer": "SELECT COUNT(university_of_dublin) FROM table_name_94 WHERE agricultural_panel = 0 AND nominated_by_the_taoiseach > 0 AND industrial_and_commercial_panel < 0", "context": "CREATE TABLE table_name_94 (university_of_dublin VARCHAR, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)", "question": "What is the total for University of Dublin, having a panel of 0 for agricultural, was nominated by Taoiseach more than 0, and an industrial and commercial panel less than 0?" }
### QUESTION What is the average for the agricultural panel that has a National University of Ireland less than 0? ### CONTEXT CREATE TABLE table_name_16 (agricultural_panel INTEGER, national_university_of_ireland INTEGER) ### ANSWER SELECT AVG(agricultural_panel) FROM table_name_16 WHERE national_university_of_ireland < 0</s>
{ "answer": "SELECT AVG(agricultural_panel) FROM table_name_16 WHERE national_university_of_ireland < 0", "context": "CREATE TABLE table_name_16 (agricultural_panel INTEGER, national_university_of_ireland INTEGER)", "question": "What is the average for the agricultural panel that has a National University of Ireland less than 0?" }
### QUESTION What is the lowest number of uncommitted superdelegates for a state with more than 16 total and 2 for Hillary Clinton? ### CONTEXT CREATE TABLE table_name_16 (uncommitted INTEGER, total VARCHAR, hillary_clinton VARCHAR) ### ANSWER SELECT MIN(uncommitted) FROM table_name_16 WHERE total > 16 AND hillary_clinton = 2</s>
{ "answer": "SELECT MIN(uncommitted) FROM table_name_16 WHERE total > 16 AND hillary_clinton = 2", "context": "CREATE TABLE table_name_16 (uncommitted INTEGER, total VARCHAR, hillary_clinton VARCHAR)", "question": "What is the lowest number of uncommitted superdelegates for a state with more than 16 total and 2 for Hillary Clinton?" }
### QUESTION Name the 2009 for wta premier mandatory tournaments ### CONTEXT CREATE TABLE table_name_99 (tournament VARCHAR) ### ANSWER SELECT 2009 FROM table_name_99 WHERE tournament = "wta premier mandatory tournaments"</s>
{ "answer": "SELECT 2009 FROM table_name_99 WHERE tournament = \"wta premier mandatory tournaments\"", "context": "CREATE TABLE table_name_99 (tournament VARCHAR)", "question": "Name the 2009 for wta premier mandatory tournaments" }
### QUESTION What Japanese prefecture has Ibaraki, Tsukuba? ### CONTEXT CREATE TABLE table_name_15 (japanese VARCHAR, prefecture VARCHAR, name VARCHAR) ### ANSWER SELECT japanese FROM table_name_15 WHERE prefecture = "ibaraki" AND name = "tsukuba"</s>
{ "answer": "SELECT japanese FROM table_name_15 WHERE prefecture = \"ibaraki\" AND name = \"tsukuba\"", "context": "CREATE TABLE table_name_15 (japanese VARCHAR, prefecture VARCHAR, name VARCHAR)", "question": "What Japanese prefecture has Ibaraki, Tsukuba?" }
### QUESTION What is the july average low associated with a january average high of 30.4? ### CONTEXT CREATE TABLE table_name_28 (july__avg_low_ VARCHAR, january__avg_high_Β°f_ VARCHAR) ### ANSWER SELECT COUNT(july__avg_low_) AS Β°f_ FROM table_name_28 WHERE january__avg_high_Β°f_ = "30.4"</s>
{ "answer": "SELECT COUNT(july__avg_low_) AS Β°f_ FROM table_name_28 WHERE january__avg_high_Β°f_ = \"30.4\"", "context": "CREATE TABLE table_name_28 (july__avg_low_ VARCHAR, january__avg_high_Β°f_ VARCHAR)", "question": "What is the july average low associated with a january average high of 30.4?" }
### QUESTION What are the smallest assets with a Company of piraeus bank, and a Revenue (US$ billion) smaller than 3.9? ### CONTEXT CREATE TABLE table_name_16 (assets__us INTEGER, company VARCHAR, revenues__us$_billion_ VARCHAR) ### ANSWER SELECT MIN(assets__us) AS $_billion_ FROM table_name_16 WHERE company = "piraeus bank" AND revenues__us$_billion_ < 3.9</s>
{ "answer": "SELECT MIN(assets__us) AS $_billion_ FROM table_name_16 WHERE company = \"piraeus bank\" AND revenues__us$_billion_ < 3.9", "context": "CREATE TABLE table_name_16 (assets__us INTEGER, company VARCHAR, revenues__us$_billion_ VARCHAR)", "question": "What are the smallest assets with a Company of piraeus bank, and a Revenue (US$ billion) smaller than 3.9?" }
### QUESTION What is the connection with Australia when the connection with America shows born in the u.s.; mother is u.s. citizen? ### CONTEXT CREATE TABLE table_name_74 (connection_with_australia VARCHAR, connection_with_america VARCHAR) ### ANSWER SELECT connection_with_australia FROM table_name_74 WHERE connection_with_america = "born in the u.s.; mother is u.s. citizen"</s>
{ "answer": "SELECT connection_with_australia FROM table_name_74 WHERE connection_with_america = \"born in the u.s.; mother is u.s. citizen\"", "context": "CREATE TABLE table_name_74 (connection_with_australia VARCHAR, connection_with_america VARCHAR)", "question": "What is the connection with Australia when the connection with America shows born in the u.s.; mother is u.s. citizen?" }
### QUESTION Which company has a market value greater than 1, Assets (US$ billion) smaller than 10.7, a Rank smaller than 10, and revenue (US$ billion) of 9.3? ### CONTEXT CREATE TABLE table_name_41 (company VARCHAR, revenues__us$_billion_ VARCHAR, rank VARCHAR, market_value__us$_billion_ VARCHAR, assets__us$_billion_ VARCHAR) ### ANSWER SELECT company FROM table_name_41 WHERE market_value__us$_billion_ > 1 AND assets__us$_billion_ < 10.7 AND rank < 10 AND revenues__us$_billion_ = 9.3</s>
{ "answer": "SELECT company FROM table_name_41 WHERE market_value__us$_billion_ > 1 AND assets__us$_billion_ < 10.7 AND rank < 10 AND revenues__us$_billion_ = 9.3", "context": "CREATE TABLE table_name_41 (company VARCHAR, revenues__us$_billion_ VARCHAR, rank VARCHAR, market_value__us$_billion_ VARCHAR, assets__us$_billion_ VARCHAR)", "question": "Which company has a market value greater than 1, Assets (US$ billion) smaller than 10.7, a Rank smaller than 10, and revenue (US$ billion) of 9.3?" }
### QUESTION What is the average market value with a revenue greater than 6.2, a Company of national bank of greece, and a Rank smaller than 1? ### CONTEXT CREATE TABLE table_name_87 (market_value__us INTEGER, rank VARCHAR, revenues__us$_billion_ VARCHAR, company VARCHAR) ### ANSWER SELECT AVG(market_value__us) AS $_billion_ FROM table_name_87 WHERE revenues__us$_billion_ > 6.2 AND company = "national bank of greece" AND rank < 1</s>
{ "answer": "SELECT AVG(market_value__us) AS $_billion_ FROM table_name_87 WHERE revenues__us$_billion_ > 6.2 AND company = \"national bank of greece\" AND rank < 1", "context": "CREATE TABLE table_name_87 (market_value__us INTEGER, rank VARCHAR, revenues__us$_billion_ VARCHAR, company VARCHAR)", "question": "What is the average market value with a revenue greater than 6.2, a Company of national bank of greece, and a Rank smaller than 1?" }
### QUESTION What is the person born in Australia, rick springfield notable for? ### CONTEXT CREATE TABLE table_name_23 (notable_for VARCHAR, connection_with_australia VARCHAR, name VARCHAR) ### ANSWER SELECT notable_for FROM table_name_23 WHERE connection_with_australia = "born in australia" AND name = "rick springfield"</s>
{ "answer": "SELECT notable_for FROM table_name_23 WHERE connection_with_australia = \"born in australia\" AND name = \"rick springfield\"", "context": "CREATE TABLE table_name_23 (notable_for VARCHAR, connection_with_australia VARCHAR, name VARCHAR)", "question": "What is the person born in Australia, rick springfield notable for?" }
### QUESTION Name the venue for eng by 6 wkts ### CONTEXT CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR) ### ANSWER SELECT venue FROM table_name_46 WHERE result = "eng by 6 wkts"</s>
{ "answer": "SELECT venue FROM table_name_46 WHERE result = \"eng by 6 wkts\"", "context": "CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR)", "question": "Name the venue for eng by 6 wkts" }
### QUESTION What is the location of the Sea Pines Heritage Classic tournament? ### CONTEXT CREATE TABLE table_name_68 (location VARCHAR, tournament VARCHAR) ### ANSWER SELECT location FROM table_name_68 WHERE tournament = "sea pines heritage classic"</s>
{ "answer": "SELECT location FROM table_name_68 WHERE tournament = \"sea pines heritage classic\"", "context": "CREATE TABLE table_name_68 (location VARCHAR, tournament VARCHAR)", "question": "What is the location of the Sea Pines Heritage Classic tournament?" }
### QUESTION Which winner has a points classification of Tony Rominger at stage 17? ### CONTEXT CREATE TABLE table_name_72 (winner VARCHAR, points_classification VARCHAR, stage VARCHAR) ### ANSWER SELECT winner FROM table_name_72 WHERE points_classification = "tony rominger" AND stage = "17"</s>
{ "answer": "SELECT winner FROM table_name_72 WHERE points_classification = \"tony rominger\" AND stage = \"17\"", "context": "CREATE TABLE table_name_72 (winner VARCHAR, points_classification VARCHAR, stage VARCHAR)", "question": "Which winner has a points classification of Tony Rominger at stage 17?" }
### QUESTION Which stage has a mountains classification of Mariano Piccoli, a points classification of Mario Cipollini and was won by Laudelino Cubino? ### CONTEXT CREATE TABLE table_name_93 (stage VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR) ### ANSWER SELECT stage FROM table_name_93 WHERE mountains_classification = "mariano piccoli" AND points_classification = "mario cipollini" AND winner = "laudelino cubino"</s>
{ "answer": "SELECT stage FROM table_name_93 WHERE mountains_classification = \"mariano piccoli\" AND points_classification = \"mario cipollini\" AND winner = \"laudelino cubino\"", "context": "CREATE TABLE table_name_93 (stage VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)", "question": "Which stage has a mountains classification of Mariano Piccoli, a points classification of Mario Cipollini and was won by Laudelino Cubino?" }
### QUESTION What is the 2011 when the Tournament was the grand slam tournaments? ### CONTEXT CREATE TABLE table_name_63 (tournament VARCHAR) ### ANSWER SELECT 2011 FROM table_name_63 WHERE tournament = "grand slam tournaments"</s>
{ "answer": "SELECT 2011 FROM table_name_63 WHERE tournament = \"grand slam tournaments\"", "context": "CREATE TABLE table_name_63 (tournament VARCHAR)", "question": "What is the 2011 when the Tournament was the grand slam tournaments?" }
### QUESTION Which mountains classification has a general classification of Tony Rominger and was won by Maurizio Fondriest? ### CONTEXT CREATE TABLE table_name_70 (mountains_classification VARCHAR, general_classification VARCHAR, winner VARCHAR) ### ANSWER SELECT mountains_classification FROM table_name_70 WHERE general_classification = "tony rominger" AND winner = "maurizio fondriest"</s>
{ "answer": "SELECT mountains_classification FROM table_name_70 WHERE general_classification = \"tony rominger\" AND winner = \"maurizio fondriest\"", "context": "CREATE TABLE table_name_70 (mountains_classification VARCHAR, general_classification VARCHAR, winner VARCHAR)", "question": "Which mountains classification has a general classification of Tony Rominger and was won by Maurizio Fondriest?" }
### QUESTION Which Name has a Height (cm) of 175 and a Birthplace of detroit, michigan ### CONTEXT CREATE TABLE table_name_42 (name VARCHAR, height__cm_ VARCHAR, birthplace VARCHAR) ### ANSWER SELECT name FROM table_name_42 WHERE height__cm_ = 175 AND birthplace = "detroit, michigan"</s>
{ "answer": "SELECT name FROM table_name_42 WHERE height__cm_ = 175 AND birthplace = \"detroit, michigan\"", "context": "CREATE TABLE table_name_42 (name VARCHAR, height__cm_ VARCHAR, birthplace VARCHAR)", "question": "Which Name has a Height (cm) of 175 and a Birthplace of detroit, michigan" }
### QUESTION What is the position of the team that played at the venue, Central, Gomel? ### CONTEXT CREATE TABLE table_name_71 (position_in_1999 VARCHAR, venue VARCHAR) ### ANSWER SELECT position_in_1999 FROM table_name_71 WHERE venue = "central, gomel"</s>
{ "answer": "SELECT position_in_1999 FROM table_name_71 WHERE venue = \"central, gomel\"", "context": "CREATE TABLE table_name_71 (position_in_1999 VARCHAR, venue VARCHAR)", "question": "What is the position of the team that played at the venue, Central, Gomel?" }
### QUESTION What is the smallest number of assists with 70 Pims and less than 19 goals? ### CONTEXT CREATE TABLE table_name_71 (assists INTEGER, pims VARCHAR, goals VARCHAR) ### ANSWER SELECT MIN(assists) FROM table_name_71 WHERE pims = 70 AND goals < 19</s>
{ "answer": "SELECT MIN(assists) FROM table_name_71 WHERE pims = 70 AND goals < 19", "context": "CREATE TABLE table_name_71 (assists INTEGER, pims VARCHAR, goals VARCHAR)", "question": "What is the smallest number of assists with 70 Pims and less than 19 goals?" }
### QUESTION Find the names of courses taught by the tutor who has personal name "Julio". ### CONTEXT CREATE TABLE Course_Authors_and_Tutors (author_id VARCHAR, personal_name VARCHAR); CREATE TABLE Courses (course_name VARCHAR, author_id VARCHAR) ### ANSWER SELECT T2.course_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T1.personal_name = "Julio"</s>
{ "answer": "SELECT T2.course_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T1.personal_name = \"Julio\"", "context": "CREATE TABLE Course_Authors_and_Tutors (author_id VARCHAR, personal_name VARCHAR); CREATE TABLE Courses (course_name VARCHAR, author_id VARCHAR)", "question": "Find the names of courses taught by the tutor who has personal name \"Julio\"." }
### QUESTION Can you tell me the highest Cargo traffic that has the Airport of barcelona airport, and the Aircraft movements smaller than 290,004? ### CONTEXT CREATE TABLE table_name_82 (cargo_traffic INTEGER, airport VARCHAR, aircraft_movements VARCHAR) ### ANSWER SELECT MAX(cargo_traffic) FROM table_name_82 WHERE airport = "barcelona airport" AND aircraft_movements < 290 OFFSET 004</s>
{ "answer": "SELECT MAX(cargo_traffic) FROM table_name_82 WHERE airport = \"barcelona airport\" AND aircraft_movements < 290 OFFSET 004", "context": "CREATE TABLE table_name_82 (cargo_traffic INTEGER, airport VARCHAR, aircraft_movements VARCHAR)", "question": "Can you tell me the highest Cargo traffic that has the Airport of barcelona airport, and the Aircraft movements smaller than 290,004?" }
### QUESTION Who held the same position in 2014 that Garion Weller held in 2014? ### CONTEXT CREATE TABLE table_name_82 (Id VARCHAR) ### ANSWER SELECT 2014 FROM table_name_82 WHERE 2012 = "garion weller"</s>
{ "answer": "SELECT 2014 FROM table_name_82 WHERE 2012 = \"garion weller\"", "context": "CREATE TABLE table_name_82 (Id VARCHAR)", "question": "Who held the same position in 2014 that Garion Weller held in 2014?" }
### QUESTION What is the Former local authority for Ecclesfield? ### CONTEXT CREATE TABLE table_name_96 (former_local_authority VARCHAR, name VARCHAR) ### ANSWER SELECT former_local_authority FROM table_name_96 WHERE name = "ecclesfield"</s>
{ "answer": "SELECT former_local_authority FROM table_name_96 WHERE name = \"ecclesfield\"", "context": "CREATE TABLE table_name_96 (former_local_authority VARCHAR, name VARCHAR)", "question": "What is the Former local authority for Ecclesfield?" }
### QUESTION Which skip's third is Steffen Walstad? ### CONTEXT CREATE TABLE table_name_1 (skip VARCHAR, third VARCHAR) ### ANSWER SELECT skip FROM table_name_1 WHERE third = "steffen walstad"</s>
{ "answer": "SELECT skip FROM table_name_1 WHERE third = \"steffen walstad\"", "context": "CREATE TABLE table_name_1 (skip VARCHAR, third VARCHAR)", "question": "Which skip's third is Steffen Walstad?" }
### QUESTION How many Poles have a Class of 125cc, and a Team of matteoni racing team, and Points larger than 3? ### CONTEXT CREATE TABLE table_name_39 (poles INTEGER, points VARCHAR, class VARCHAR, team VARCHAR) ### ANSWER SELECT SUM(poles) FROM table_name_39 WHERE class = "125cc" AND team = "matteoni racing team" AND points > 3</s>
{ "answer": "SELECT SUM(poles) FROM table_name_39 WHERE class = \"125cc\" AND team = \"matteoni racing team\" AND points > 3", "context": "CREATE TABLE table_name_39 (poles INTEGER, points VARCHAR, class VARCHAR, team VARCHAR)", "question": "How many Poles have a Class of 125cc, and a Team of matteoni racing team, and Points larger than 3?" }
### QUESTION How many wins has a podiums greater than 1 and 9 as the races with a season after 1984? ### CONTEXT CREATE TABLE table_name_13 (wins VARCHAR, season VARCHAR, podiums VARCHAR, races VARCHAR) ### ANSWER SELECT COUNT(wins) FROM table_name_13 WHERE podiums > 1 AND races = 9 AND season > 1984</s>
{ "answer": "SELECT COUNT(wins) FROM table_name_13 WHERE podiums > 1 AND races = 9 AND season > 1984", "context": "CREATE TABLE table_name_13 (wins VARCHAR, season VARCHAR, podiums VARCHAR, races VARCHAR)", "question": "How many wins has a podiums greater than 1 and 9 as the races with a season after 1984?" }
### QUESTION Which month and year held the Bolivia Special title? ### CONTEXT CREATE TABLE table_name_18 (month_ VARCHAR, _year VARCHAR, title VARCHAR) ### ANSWER SELECT month_ & _year FROM table_name_18 WHERE title = "bolivia special"</s>
{ "answer": "SELECT month_ & _year FROM table_name_18 WHERE title = \"bolivia special\"", "context": "CREATE TABLE table_name_18 (month_ VARCHAR, _year VARCHAR, title VARCHAR)", "question": "Which month and year held the Bolivia Special title?" }
### QUESTION What position is the player that is from Canada and on the Boston Bruins ### CONTEXT CREATE TABLE table_name_51 (position VARCHAR, nationality VARCHAR, nhl_team VARCHAR) ### ANSWER SELECT position FROM table_name_51 WHERE nationality = "canada" AND nhl_team = "boston bruins"</s>
{ "answer": "SELECT position FROM table_name_51 WHERE nationality = \"canada\" AND nhl_team = \"boston bruins\"", "context": "CREATE TABLE table_name_51 (position VARCHAR, nationality VARCHAR, nhl_team VARCHAR)", "question": "What position is the player that is from Canada and on the Boston Bruins" }
### QUESTION What is the lowest rank of Deutsche Telekom with a market value over 209,628? ### CONTEXT CREATE TABLE table_name_85 (rank INTEGER, name VARCHAR, market_value___usd_million_ VARCHAR) ### ANSWER SELECT MIN(rank) FROM table_name_85 WHERE name = "deutsche telekom" AND market_value___usd_million_ > 209 OFFSET 628</s>
{ "answer": "SELECT MIN(rank) FROM table_name_85 WHERE name = \"deutsche telekom\" AND market_value___usd_million_ > 209 OFFSET 628", "context": "CREATE TABLE table_name_85 (rank INTEGER, name VARCHAR, market_value___usd_million_ VARCHAR)", "question": "What is the lowest rank of Deutsche Telekom with a market value over 209,628?" }
### QUESTION Which Rank is the highest one that has a Change smaller than 44, and a Centre of buenos aires, and a Rating larger than 628? ### CONTEXT CREATE TABLE table_name_2 (rank INTEGER, rating VARCHAR, change VARCHAR, centre VARCHAR) ### ANSWER SELECT MAX(rank) FROM table_name_2 WHERE change < 44 AND centre = "buenos aires" AND rating > 628</s>
{ "answer": "SELECT MAX(rank) FROM table_name_2 WHERE change < 44 AND centre = \"buenos aires\" AND rating > 628", "context": "CREATE TABLE table_name_2 (rank INTEGER, rating VARCHAR, change VARCHAR, centre VARCHAR)", "question": "Which Rank is the highest one that has a Change smaller than 44, and a Centre of buenos aires, and a Rating larger than 628?" }
### QUESTION Who was the 3rd place team at Pardubice? ### CONTEXT CREATE TABLE table_name_41 (venue VARCHAR) ### ANSWER SELECT 3 AS rd_place FROM table_name_41 WHERE venue = "pardubice"</s>
{ "answer": "SELECT 3 AS rd_place FROM table_name_41 WHERE venue = \"pardubice\"", "context": "CREATE TABLE table_name_41 (venue VARCHAR)", "question": "Who was the 3rd place team at Pardubice?" }
### QUESTION Operation of find-min has what Fibonacci? ### CONTEXT CREATE TABLE table_name_18 (fibonacci VARCHAR, operation VARCHAR) ### ANSWER SELECT fibonacci FROM table_name_18 WHERE operation = "find-min"</s>
{ "answer": "SELECT fibonacci FROM table_name_18 WHERE operation = \"find-min\"", "context": "CREATE TABLE table_name_18 (fibonacci VARCHAR, operation VARCHAR)", "question": "Operation of find-min has what Fibonacci?" }
### QUESTION What percent of the population has phone in Russia? ### CONTEXT CREATE TABLE table_name_15 (_number_of_phones_as__percentage_of_population INTEGER, country_or_region VARCHAR) ### ANSWER SELECT AVG(_number_of_phones_as__percentage_of_population) FROM table_name_15 WHERE country_or_region = "russia"</s>
{ "answer": "SELECT AVG(_number_of_phones_as__percentage_of_population) FROM table_name_15 WHERE country_or_region = \"russia\"", "context": "CREATE TABLE table_name_15 (_number_of_phones_as__percentage_of_population INTEGER, country_or_region VARCHAR)", "question": "What percent of the population has phone in Russia?" }
### QUESTION How many mobile phones were there as of April 2013? ### CONTEXT CREATE TABLE table_name_11 (number_of_mobile_phones VARCHAR, last_updated_date VARCHAR) ### ANSWER SELECT number_of_mobile_phones FROM table_name_11 WHERE last_updated_date = "april 2013"</s>
{ "answer": "SELECT number_of_mobile_phones FROM table_name_11 WHERE last_updated_date = \"april 2013\"", "context": "CREATE TABLE table_name_11 (number_of_mobile_phones VARCHAR, last_updated_date VARCHAR)", "question": "How many mobile phones were there as of April 2013?" }
### QUESTION How many silver medals were awarded to the Nation with less than 2 gold, more than 6 bronze and a rank higher than 5? ### CONTEXT CREATE TABLE table_name_33 (silver INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR) ### ANSWER SELECT SUM(silver) FROM table_name_33 WHERE rank > 5 AND bronze > 6 AND gold < 2</s>
{ "answer": "SELECT SUM(silver) FROM table_name_33 WHERE rank > 5 AND bronze > 6 AND gold < 2", "context": "CREATE TABLE table_name_33 (silver INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR)", "question": "How many silver medals were awarded to the Nation with less than 2 gold, more than 6 bronze and a rank higher than 5?" }
### QUESTION What Entrant has a 1952 maserati straight-6 engine? ### CONTEXT CREATE TABLE table_name_29 (entrant VARCHAR, engine VARCHAR, year VARCHAR) ### ANSWER SELECT entrant FROM table_name_29 WHERE engine = "maserati straight-6" AND year = 1952</s>
{ "answer": "SELECT entrant FROM table_name_29 WHERE engine = \"maserati straight-6\" AND year = 1952", "context": "CREATE TABLE table_name_29 (entrant VARCHAR, engine VARCHAR, year VARCHAR)", "question": "What Entrant has a 1952 maserati straight-6 engine?" }
### QUESTION Name the pole position for belgian grand prix ### CONTEXT CREATE TABLE table_name_75 (pole_position VARCHAR, grand_prix VARCHAR) ### ANSWER SELECT pole_position FROM table_name_75 WHERE grand_prix = "belgian grand prix"</s>
{ "answer": "SELECT pole_position FROM table_name_75 WHERE grand_prix = \"belgian grand prix\"", "context": "CREATE TABLE table_name_75 (pole_position VARCHAR, grand_prix VARCHAR)", "question": "Name the pole position for belgian grand prix" }
### QUESTION What NHL team has a player in the position of Left Wing that came from the Toronto Marlboros (omjhl)? ### CONTEXT CREATE TABLE table_name_81 (nhl_team VARCHAR, position VARCHAR, college_junior_club_team VARCHAR) ### ANSWER SELECT nhl_team FROM table_name_81 WHERE position = "left wing" AND college_junior_club_team = "toronto marlboros (omjhl)"</s>
{ "answer": "SELECT nhl_team FROM table_name_81 WHERE position = \"left wing\" AND college_junior_club_team = \"toronto marlboros (omjhl)\"", "context": "CREATE TABLE table_name_81 (nhl_team VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)", "question": "What NHL team has a player in the position of Left Wing that came from the Toronto Marlboros (omjhl)?" }
### QUESTION Which tournament had an outcome of winner, a hard surface, and happened on August 26, 2006? ### CONTEXT CREATE TABLE table_name_76 (tournament VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR) ### ANSWER SELECT tournament FROM table_name_76 WHERE outcome = "winner" AND surface = "hard" AND date = "august 26, 2006"</s>
{ "answer": "SELECT tournament FROM table_name_76 WHERE outcome = \"winner\" AND surface = \"hard\" AND date = \"august 26, 2006\"", "context": "CREATE TABLE table_name_76 (tournament VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR)", "question": "Which tournament had an outcome of winner, a hard surface, and happened on August 26, 2006?" }
### QUESTION Which Brazil scorers have a Result of w, and a Competition of world cup qualifying, and a Date of february 28, 1954? ### CONTEXT CREATE TABLE table_name_5 (brazil_scorers VARCHAR, date VARCHAR, result VARCHAR, competition VARCHAR) ### ANSWER SELECT brazil_scorers FROM table_name_5 WHERE result = "w" AND competition = "world cup qualifying" AND date = "february 28, 1954"</s>
{ "answer": "SELECT brazil_scorers FROM table_name_5 WHERE result = \"w\" AND competition = \"world cup qualifying\" AND date = \"february 28, 1954\"", "context": "CREATE TABLE table_name_5 (brazil_scorers VARCHAR, date VARCHAR, result VARCHAR, competition VARCHAR)", "question": "Which Brazil scorers have a Result of w, and a Competition of world cup qualifying, and a Date of february 28, 1954?" }
### QUESTION What is the Location, when the Winner is the Baltimore Colts, when the Year is before 1972, and when the Result is 14-6? ### CONTEXT CREATE TABLE table_name_90 (location VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR) ### ANSWER SELECT location FROM table_name_90 WHERE winner = "baltimore colts" AND year < 1972 AND result = "14-6"</s>
{ "answer": "SELECT location FROM table_name_90 WHERE winner = \"baltimore colts\" AND year < 1972 AND result = \"14-6\"", "context": "CREATE TABLE table_name_90 (location VARCHAR, result VARCHAR, winner VARCHAR, year VARCHAR)", "question": "What is the Location, when the Winner is the Baltimore Colts, when the Year is before 1972, and when the Result is 14-6?" }
### QUESTION How many pages does the ISBN 1-40122-328-1 have? ### CONTEXT CREATE TABLE table_name_47 (pages INTEGER, isbn VARCHAR) ### ANSWER SELECT SUM(pages) FROM table_name_47 WHERE isbn = "1-40122-328-1"</s>
{ "answer": "SELECT SUM(pages) FROM table_name_47 WHERE isbn = \"1-40122-328-1\"", "context": "CREATE TABLE table_name_47 (pages INTEGER, isbn VARCHAR)", "question": "How many pages does the ISBN 1-40122-328-1 have?" }
### QUESTION What is the lowest jersey # that has evergreen park, illinois as the birthplace, with a weight (km) greater than 86? ### CONTEXT CREATE TABLE table_name_62 (jersey__number INTEGER, birthplace VARCHAR, weight__kg_ VARCHAR) ### ANSWER SELECT MIN(jersey__number) FROM table_name_62 WHERE birthplace = "evergreen park, illinois" AND weight__kg_ > 86</s>
{ "answer": "SELECT MIN(jersey__number) FROM table_name_62 WHERE birthplace = \"evergreen park, illinois\" AND weight__kg_ > 86", "context": "CREATE TABLE table_name_62 (jersey__number INTEGER, birthplace VARCHAR, weight__kg_ VARCHAR)", "question": "What is the lowest jersey # that has evergreen park, illinois as the birthplace, with a weight (km) greater than 86?" }
### QUESTION What is the highest number when there were more than 50 long and less than 762 yards? ### CONTEXT CREATE TABLE table_name_81 (number INTEGER, long VARCHAR, yards VARCHAR) ### ANSWER SELECT MAX(number) FROM table_name_81 WHERE long > 50 AND yards < 762</s>
{ "answer": "SELECT MAX(number) FROM table_name_81 WHERE long > 50 AND yards < 762", "context": "CREATE TABLE table_name_81 (number INTEGER, long VARCHAR, yards VARCHAR)", "question": "What is the highest number when there were more than 50 long and less than 762 yards?" }
### QUESTION Which Runner-up has a Winning score of βˆ’20 (70-69-64-65=268)? ### CONTEXT CREATE TABLE table_name_69 (runner_up VARCHAR, winning_score VARCHAR) ### ANSWER SELECT runner_up FROM table_name_69 WHERE winning_score = βˆ’20(70 - 69 - 64 - 65 = 268)</s>
{ "answer": "SELECT runner_up FROM table_name_69 WHERE winning_score = βˆ’20(70 - 69 - 64 - 65 = 268)", "context": "CREATE TABLE table_name_69 (runner_up VARCHAR, winning_score VARCHAR)", "question": "Which Runner-up has a Winning score of βˆ’20 (70-69-64-65=268)?" }
### QUESTION Who held the Intergiro classificaiton when the Trofeo Fast Team is gb-mg maglificio? ### CONTEXT CREATE TABLE table_name_29 (intergiro_classification VARCHAR, trofeo_fast_team VARCHAR) ### ANSWER SELECT intergiro_classification FROM table_name_29 WHERE trofeo_fast_team = "gb-mg maglificio"</s>
{ "answer": "SELECT intergiro_classification FROM table_name_29 WHERE trofeo_fast_team = \"gb-mg maglificio\"", "context": "CREATE TABLE table_name_29 (intergiro_classification VARCHAR, trofeo_fast_team VARCHAR)", "question": "Who held the Intergiro classificaiton when the Trofeo Fast Team is gb-mg maglificio?" }
### QUESTION During which stage was the Intergiro classification held by Miguel Indurain, the Points classification held by Mario Cipollini, and the Young rider classification held by Leonardo Sierra? ### CONTEXT CREATE TABLE table_name_76 (stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR, points_classification VARCHAR) ### ANSWER SELECT stage FROM table_name_76 WHERE intergiro_classification = "miguel indurain" AND points_classification = "mario cipollini" AND young_rider_classification = "leonardo sierra"</s>
{ "answer": "SELECT stage FROM table_name_76 WHERE intergiro_classification = \"miguel indurain\" AND points_classification = \"mario cipollini\" AND young_rider_classification = \"leonardo sierra\"", "context": "CREATE TABLE table_name_76 (stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR, points_classification VARCHAR)", "question": "During which stage was the Intergiro classification held by Miguel Indurain, the Points classification held by Mario Cipollini, and the Young rider classification held by Leonardo Sierra?" }
### QUESTION Who was the winner when the General classification was held by Miguel Indurain, the Points classification held by Mario Cipollini, the Mountains classification held by Claudio Chiappucci, and the Young RIder classification held by Pavel Tonkov? ### CONTEXT CREATE TABLE table_name_10 (winner VARCHAR, young_rider_classification VARCHAR, mountains_classification VARCHAR, general_classification VARCHAR, points_classification VARCHAR) ### ANSWER SELECT winner FROM table_name_10 WHERE general_classification = "miguel indurain" AND points_classification = "mario cipollini" AND mountains_classification = "claudio chiappucci" AND young_rider_classification = "pavel tonkov"</s>
{ "answer": "SELECT winner FROM table_name_10 WHERE general_classification = \"miguel indurain\" AND points_classification = \"mario cipollini\" AND mountains_classification = \"claudio chiappucci\" AND young_rider_classification = \"pavel tonkov\"", "context": "CREATE TABLE table_name_10 (winner VARCHAR, young_rider_classification VARCHAR, mountains_classification VARCHAR, general_classification VARCHAR, points_classification VARCHAR)", "question": "Who was the winner when the General classification was held by Miguel Indurain, the Points classification held by Mario Cipollini, the Mountains classification held by Claudio Chiappucci, and the Young RIder classification held by Pavel Tonkov?" }
### QUESTION What is the average Games Played for Bo Oshoniyi, who had more than 1170 minutes and 10 loses? ### CONTEXT CREATE TABLE table_name_5 (games_played INTEGER, minutes VARCHAR, loses VARCHAR, player VARCHAR) ### ANSWER SELECT AVG(games_played) FROM table_name_5 WHERE loses = 10 AND player = "bo oshoniyi" AND minutes > 1170</s>
{ "answer": "SELECT AVG(games_played) FROM table_name_5 WHERE loses = 10 AND player = \"bo oshoniyi\" AND minutes > 1170", "context": "CREATE TABLE table_name_5 (games_played INTEGER, minutes VARCHAR, loses VARCHAR, player VARCHAR)", "question": "What is the average Games Played for Bo Oshoniyi, who had more than 1170 minutes and 10 loses?" }
### QUESTION Which Description has a Year of Issue of 1983, and a Thickness of 1.7mm, and a Weight of 3.50grams? ### CONTEXT CREATE TABLE table_name_8 (description VARCHAR, weight VARCHAR, year_of_issue VARCHAR, thickness VARCHAR) ### ANSWER SELECT description FROM table_name_8 WHERE year_of_issue = 1983 AND thickness = "1.7mm" AND weight = "3.50grams"</s>
{ "answer": "SELECT description FROM table_name_8 WHERE year_of_issue = 1983 AND thickness = \"1.7mm\" AND weight = \"3.50grams\"", "context": "CREATE TABLE table_name_8 (description VARCHAR, weight VARCHAR, year_of_issue VARCHAR, thickness VARCHAR)", "question": "Which Description has a Year of Issue of 1983, and a Thickness of 1.7mm, and a Weight of 3.50grams?" }
### QUESTION Who was the Republican candidate against the Democratic candidate Arthur Levitt? ### CONTEXT CREATE TABLE table_name_65 (republican_ticket VARCHAR, democratic_ticket VARCHAR) ### ANSWER SELECT republican_ticket FROM table_name_65 WHERE democratic_ticket = "arthur levitt"</s>
{ "answer": "SELECT republican_ticket FROM table_name_65 WHERE democratic_ticket = \"arthur levitt\"", "context": "CREATE TABLE table_name_65 (republican_ticket VARCHAR, democratic_ticket VARCHAR)", "question": "Who was the Republican candidate against the Democratic candidate Arthur Levitt?" }
### QUESTION What is the Total Tax Revenue that has an n.a. Stamp Duty Reserve Tax in the years 1995-96? ### CONTEXT CREATE TABLE table_name_75 (over_total_tax_revenue__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR, year VARCHAR) ### ANSWER SELECT over_total_tax_revenue__in__percentage_ FROM table_name_75 WHERE stamp_duty_reserve_tax = "n.a." AND year = "1995-96"</s>
{ "answer": "SELECT over_total_tax_revenue__in__percentage_ FROM table_name_75 WHERE stamp_duty_reserve_tax = \"n.a.\" AND year = \"1995-96\"", "context": "CREATE TABLE table_name_75 (over_total_tax_revenue__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR, year VARCHAR)", "question": "What is the Total Tax Revenue that has an n.a. Stamp Duty Reserve Tax in the years 1995-96?" }
### QUESTION What is the largest Founded with an Institution of cloud county community college? ### CONTEXT CREATE TABLE table_name_67 (founded INTEGER, institution VARCHAR) ### ANSWER SELECT MAX(founded) FROM table_name_67 WHERE institution = "cloud county community college"</s>
{ "answer": "SELECT MAX(founded) FROM table_name_67 WHERE institution = \"cloud county community college\"", "context": "CREATE TABLE table_name_67 (founded INTEGER, institution VARCHAR)", "question": "What is the largest Founded with an Institution of cloud county community college?" }
### QUESTION What was the score of the match against roger federer on April 3, 2006? ### CONTEXT CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_44 WHERE opponent = "roger federer" AND date = "april 3, 2006"</s>
{ "answer": "SELECT score FROM table_name_44 WHERE opponent = \"roger federer\" AND date = \"april 3, 2006\"", "context": "CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR, date VARCHAR)", "question": "What was the score of the match against roger federer on April 3, 2006?" }
### QUESTION What was the outcome of the match against andy roddick? ### CONTEXT CREATE TABLE table_name_78 (outcome VARCHAR, opponent VARCHAR) ### ANSWER SELECT outcome FROM table_name_78 WHERE opponent = "andy roddick"</s>
{ "answer": "SELECT outcome FROM table_name_78 WHERE opponent = \"andy roddick\"", "context": "CREATE TABLE table_name_78 (outcome VARCHAR, opponent VARCHAR)", "question": "What was the outcome of the match against andy roddick?" }
### QUESTION Which gender has an Authority of state, Years of 1–8, and a Decile smaller than 10, and a Roll of 36? ### CONTEXT CREATE TABLE table_name_76 (gender VARCHAR, roll VARCHAR, decile VARCHAR, authority VARCHAR, years VARCHAR) ### ANSWER SELECT gender FROM table_name_76 WHERE authority = "state" AND years = "1–8" AND decile < 10 AND roll = 36</s>
{ "answer": "SELECT gender FROM table_name_76 WHERE authority = \"state\" AND years = \"1–8\" AND decile < 10 AND roll = 36", "context": "CREATE TABLE table_name_76 (gender VARCHAR, roll VARCHAR, decile VARCHAR, authority VARCHAR, years VARCHAR)", "question": "Which gender has an Authority of state, Years of 1–8, and a Decile smaller than 10, and a Roll of 36?" }
### QUESTION How many points have 500cc for the class, a win greater than 0, with a year after 1974? ### CONTEXT CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, class VARCHAR, wins VARCHAR) ### ANSWER SELECT SUM(points) FROM table_name_77 WHERE class = "500cc" AND wins > 0 AND year > 1974</s>
{ "answer": "SELECT SUM(points) FROM table_name_77 WHERE class = \"500cc\" AND wins > 0 AND year > 1974", "context": "CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, class VARCHAR, wins VARCHAR)", "question": "How many points have 500cc for the class, a win greater than 0, with a year after 1974?" }
### QUESTION How many San Jose wins have an LA goals larger than 6, and an LA wins smaller than 21? ### CONTEXT CREATE TABLE table_name_43 (san_jose_wins VARCHAR, la_goals VARCHAR, la_wins VARCHAR) ### ANSWER SELECT COUNT(san_jose_wins) FROM table_name_43 WHERE la_goals > 6 AND la_wins < 21</s>
{ "answer": "SELECT COUNT(san_jose_wins) FROM table_name_43 WHERE la_goals > 6 AND la_wins < 21", "context": "CREATE TABLE table_name_43 (san_jose_wins VARCHAR, la_goals VARCHAR, la_wins VARCHAR)", "question": "How many San Jose wins have an LA goals larger than 6, and an LA wins smaller than 21?" }
### QUESTION What's the total number of FA Cup with a Play-offs of 3, and the Name of Mitch Cook Category:Articles with hCards and has a Total thats less than 11? ### CONTEXT CREATE TABLE table_name_64 (fa_cup VARCHAR, total VARCHAR, play_offs VARCHAR, name VARCHAR) ### ANSWER SELECT COUNT(fa_cup) FROM table_name_64 WHERE play_offs = 3 AND name = "mitch cook category:articles with hcards" AND total < 11</s>
{ "answer": "SELECT COUNT(fa_cup) FROM table_name_64 WHERE play_offs = 3 AND name = \"mitch cook category:articles with hcards\" AND total < 11", "context": "CREATE TABLE table_name_64 (fa_cup VARCHAR, total VARCHAR, play_offs VARCHAR, name VARCHAR)", "question": "What's the total number of FA Cup with a Play-offs of 3, and the Name of Mitch Cook Category:Articles with hCards and has a Total thats less than 11?" }
### QUESTION What kind of Voltage has a Frequency of 2000mhz, and a Release date in q3 2008? ### CONTEXT CREATE TABLE table_name_64 (voltage VARCHAR, frequency VARCHAR, release_date VARCHAR) ### ANSWER SELECT voltage FROM table_name_64 WHERE frequency = "2000mhz" AND release_date = "q3 2008"</s>
{ "answer": "SELECT voltage FROM table_name_64 WHERE frequency = \"2000mhz\" AND release_date = \"q3 2008\"", "context": "CREATE TABLE table_name_64 (voltage VARCHAR, frequency VARCHAR, release_date VARCHAR)", "question": "What kind of Voltage has a Frequency of 2000mhz, and a Release date in q3 2008?" }
### QUESTION What's the total number of League Cup with a Play-off larger than 2, and a Name of Mitch Cook Category:Articles with hCards? ### CONTEXT CREATE TABLE table_name_8 (league VARCHAR, play_offs VARCHAR, name VARCHAR) ### ANSWER SELECT COUNT(league) AS Cup FROM table_name_8 WHERE play_offs > 2 AND name = "mitch cook category:articles with hcards"</s>
{ "answer": "SELECT COUNT(league) AS Cup FROM table_name_8 WHERE play_offs > 2 AND name = \"mitch cook category:articles with hcards\"", "context": "CREATE TABLE table_name_8 (league VARCHAR, play_offs VARCHAR, name VARCHAR)", "question": "What's the total number of League Cup with a Play-off larger than 2, and a Name of Mitch Cook Category:Articles with hCards?" }
### QUESTION What is the average Channel 4 weekly rank for less than 2.19 million viewers on December 7, 2007? ### CONTEXT CREATE TABLE table_name_20 (channel_4_weekly_rank_a INTEGER, viewers__millions_ VARCHAR, airdate VARCHAR) ### ANSWER SELECT AVG(channel_4_weekly_rank_a) FROM table_name_20 WHERE viewers__millions_ < 2.19 AND airdate = "december 7, 2007"</s>
{ "answer": "SELECT AVG(channel_4_weekly_rank_a) FROM table_name_20 WHERE viewers__millions_ < 2.19 AND airdate = \"december 7, 2007\"", "context": "CREATE TABLE table_name_20 (channel_4_weekly_rank_a INTEGER, viewers__millions_ VARCHAR, airdate VARCHAR)", "question": "What is the average Channel 4 weekly rank for less than 2.19 million viewers on December 7, 2007?" }
### QUESTION What is the to par that has england as the country, with 66 as a score? ### CONTEXT CREATE TABLE table_name_95 (to_par VARCHAR, country VARCHAR, score VARCHAR) ### ANSWER SELECT to_par FROM table_name_95 WHERE country = "england" AND score = 66</s>
{ "answer": "SELECT to_par FROM table_name_95 WHERE country = \"england\" AND score = 66", "context": "CREATE TABLE table_name_95 (to_par VARCHAR, country VARCHAR, score VARCHAR)", "question": "What is the to par that has england as the country, with 66 as a score?" }
### QUESTION Who owns the item that was a T326 before conversion and re-entered service on 11 September 1985? ### CONTEXT CREATE TABLE table_name_42 (owner VARCHAR, re_entered_service__p_ VARCHAR, pre_conversion VARCHAR) ### ANSWER SELECT owner FROM table_name_42 WHERE re_entered_service__p_ = "11 september 1985" AND pre_conversion = "t326"</s>
{ "answer": "SELECT owner FROM table_name_42 WHERE re_entered_service__p_ = \"11 september 1985\" AND pre_conversion = \"t326\"", "context": "CREATE TABLE table_name_42 (owner VARCHAR, re_entered_service__p_ VARCHAR, pre_conversion VARCHAR)", "question": "Who owns the item that was a T326 before conversion and re-entered service on 11 September 1985?" }
### QUESTION Which of V/Line Passenger's pre-conversions re-entered service on 23 November 1984? ### CONTEXT CREATE TABLE table_name_16 (pre_conversion VARCHAR, owner VARCHAR, re_entered_service__p_ VARCHAR) ### ANSWER SELECT pre_conversion FROM table_name_16 WHERE owner = "v/line passenger" AND re_entered_service__p_ = "23 november 1984"</s>
{ "answer": "SELECT pre_conversion FROM table_name_16 WHERE owner = \"v/line passenger\" AND re_entered_service__p_ = \"23 november 1984\"", "context": "CREATE TABLE table_name_16 (pre_conversion VARCHAR, owner VARCHAR, re_entered_service__p_ VARCHAR)", "question": "Which of V/Line Passenger's pre-conversions re-entered service on 23 November 1984?" }
### QUESTION What is the average win percentage of a season with a GB of 5? ### CONTEXT CREATE TABLE table_name_76 (win__percentage INTEGER, gb_ VARCHAR, d_ VARCHAR) ### ANSWER SELECT AVG(win__percentage) FROM table_name_76 WHERE gb_[d_] = "5"</s>
{ "answer": "SELECT AVG(win__percentage) FROM table_name_76 WHERE gb_[d_] = \"5\"", "context": "CREATE TABLE table_name_76 (win__percentage INTEGER, gb_ VARCHAR, d_ VARCHAR)", "question": "What is the average win percentage of a season with a GB of 5?" }
### QUESTION What is the name of the country that has internetlists of β€”, and ONIsecurityfiltering of β€”? ### CONTEXT CREATE TABLE table_name_80 (country VARCHAR, internetlists VARCHAR, onisecurityfiltering VARCHAR) ### ANSWER SELECT country FROM table_name_80 WHERE internetlists = "β€”" AND onisecurityfiltering = "β€”"</s>
{ "answer": "SELECT country FROM table_name_80 WHERE internetlists = \"β€”\" AND onisecurityfiltering = \"β€”\"", "context": "CREATE TABLE table_name_80 (country VARCHAR, internetlists VARCHAR, onisecurityfiltering VARCHAR)", "question": "What is the name of the country that has internetlists of β€”, and ONIsecurityfiltering of β€”?" }
### QUESTION Who was the home team when the record was 27–14–6? ### CONTEXT CREATE TABLE table_name_15 (home VARCHAR, record VARCHAR) ### ANSWER SELECT home FROM table_name_15 WHERE record = "27–14–6"</s>
{ "answer": "SELECT home FROM table_name_15 WHERE record = \"27–14–6\"", "context": "CREATE TABLE table_name_15 (home VARCHAR, record VARCHAR)", "question": "Who was the home team when the record was 27–14–6?" }
### QUESTION Socket of fcbga1088, and a Voltage of 1v, and a Part number(s) of nu80579ez600cnu80579ez600ct is what mult? ### CONTEXT CREATE TABLE table_name_3 (mult VARCHAR, part_number_s_ VARCHAR, socket VARCHAR, voltage VARCHAR) ### ANSWER SELECT mult FROM table_name_3 WHERE socket = "fcbga1088" AND voltage = "1v" AND part_number_s_ = "nu80579ez600cnu80579ez600ct"</s>
{ "answer": "SELECT mult FROM table_name_3 WHERE socket = \"fcbga1088\" AND voltage = \"1v\" AND part_number_s_ = \"nu80579ez600cnu80579ez600ct\"", "context": "CREATE TABLE table_name_3 (mult VARCHAR, part_number_s_ VARCHAR, socket VARCHAR, voltage VARCHAR)", "question": "Socket of fcbga1088, and a Voltage of 1v, and a Part number(s) of nu80579ez600cnu80579ez600ct is what mult?" }
### QUESTION Release date of 2008 q3, and a Part number(s) of nu80579ez009c has what Release price ( USD )? ### CONTEXT CREATE TABLE table_name_3 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR) ### ANSWER SELECT release_price___usd__ FROM table_name_3 WHERE release_date = "2008 q3" AND part_number_s_ = "nu80579ez009c"</s>
{ "answer": "SELECT release_price___usd__ FROM table_name_3 WHERE release_date = \"2008 q3\" AND part_number_s_ = \"nu80579ez009c\"", "context": "CREATE TABLE table_name_3 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR)", "question": "Release date of 2008 q3, and a Part number(s) of nu80579ez009c has what Release price ( USD )?" }
### QUESTION What is the name of the player with a To par of –4? ### CONTEXT CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR) ### ANSWER SELECT player FROM table_name_41 WHERE to_par = "–4"</s>
{ "answer": "SELECT player FROM table_name_41 WHERE to_par = \"–4\"", "context": "CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR)", "question": "What is the name of the player with a To par of –4?" }
### QUESTION What is the final score for the game played on January 10, 2011 with partner Mashona Washington? ### CONTEXT CREATE TABLE table_name_22 (score VARCHAR, partner VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_22 WHERE partner = "mashona washington" AND date = "january 10, 2011"</s>
{ "answer": "SELECT score FROM table_name_22 WHERE partner = \"mashona washington\" AND date = \"january 10, 2011\"", "context": "CREATE TABLE table_name_22 (score VARCHAR, partner VARCHAR, date VARCHAR)", "question": "What is the final score for the game played on January 10, 2011 with partner Mashona Washington?" }
### QUESTION what language is seethaiah in ### CONTEXT CREATE TABLE table_name_27 (language VARCHAR, film_name VARCHAR) ### ANSWER SELECT language FROM table_name_27 WHERE film_name = "seethaiah"</s>
{ "answer": "SELECT language FROM table_name_27 WHERE film_name = \"seethaiah\"", "context": "CREATE TABLE table_name_27 (language VARCHAR, film_name VARCHAR)", "question": "what language is seethaiah in" }
### QUESTION What was the senior status for the judge who was terminated because of death, with a Chief Judge entry of β€”? ### CONTEXT CREATE TABLE table_name_22 (senior_status VARCHAR, reason_for_termination VARCHAR, chief_judge VARCHAR) ### ANSWER SELECT senior_status FROM table_name_22 WHERE reason_for_termination = "death" AND chief_judge = "β€”"</s>
{ "answer": "SELECT senior_status FROM table_name_22 WHERE reason_for_termination = \"death\" AND chief_judge = \"β€”\"", "context": "CREATE TABLE table_name_22 (senior_status VARCHAR, reason_for_termination VARCHAR, chief_judge VARCHAR)", "question": "What was the senior status for the judge who was terminated because of death, with a Chief Judge entry of β€”?" }
### QUESTION What Field was played at in an away game against the bayhawks? ### CONTEXT CREATE TABLE table_name_99 (field VARCHAR, home_away VARCHAR, opponent VARCHAR) ### ANSWER SELECT field FROM table_name_99 WHERE home_away = "away" AND opponent = "bayhawks"</s>
{ "answer": "SELECT field FROM table_name_99 WHERE home_away = \"away\" AND opponent = \"bayhawks\"", "context": "CREATE TABLE table_name_99 (field VARCHAR, home_away VARCHAR, opponent VARCHAR)", "question": "What Field was played at in an away game against the bayhawks?" }
### QUESTION What is the Political group for p. maelius capitolinus? ### CONTEXT CREATE TABLE table_name_58 (political_group VARCHAR, name VARCHAR) ### ANSWER SELECT political_group FROM table_name_58 WHERE name = "p. maelius capitolinus"</s>
{ "answer": "SELECT political_group FROM table_name_58 WHERE name = \"p. maelius capitolinus\"", "context": "CREATE TABLE table_name_58 (political_group VARCHAR, name VARCHAR)", "question": "What is the Political group for p. maelius capitolinus?" }
### QUESTION What is the Type for l. publilius philo vulscus? ### CONTEXT CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR) ### ANSWER SELECT type FROM table_name_46 WHERE name = "l. publilius philo vulscus"</s>
{ "answer": "SELECT type FROM table_name_46 WHERE name = \"l. publilius philo vulscus\"", "context": "CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR)", "question": "What is the Type for l. publilius philo vulscus?" }
### QUESTION What are the lowest points in 2004? ### CONTEXT CREATE TABLE table_name_96 (points INTEGER, year VARCHAR) ### ANSWER SELECT MIN(points) FROM table_name_96 WHERE year = 2004</s>
{ "answer": "SELECT MIN(points) FROM table_name_96 WHERE year = 2004", "context": "CREATE TABLE table_name_96 (points INTEGER, year VARCHAR)", "question": "What are the lowest points in 2004?" }
### 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"</s>
{ "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 score of the match on November 15, 2011? ### CONTEXT CREATE TABLE table_name_44 (score VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_44 WHERE date = "november 15, 2011"</s>
{ "answer": "SELECT score FROM table_name_44 WHERE date = \"november 15, 2011\"", "context": "CREATE TABLE table_name_44 (score VARCHAR, date VARCHAR)", "question": "What is the score of the match on November 15, 2011?" }
### QUESTION Which driver had points over 252 in the season of 2012 with a percentage of possible points at 55.60%? ### CONTEXT CREATE TABLE table_name_40 (driver VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, season VARCHAR) ### ANSWER SELECT driver FROM table_name_40 WHERE points > 252 AND season = "2012" AND percentage_of_possible_points = "55.60%"</s>
{ "answer": "SELECT driver FROM table_name_40 WHERE points > 252 AND season = \"2012\" AND percentage_of_possible_points = \"55.60%\"", "context": "CREATE TABLE table_name_40 (driver VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, season VARCHAR)", "question": "Which driver had points over 252 in the season of 2012 with a percentage of possible points at 55.60%?" }
### QUESTION What is the resurrection of 144,000 date with a Christ made king date in 1914, a separting sheep & goats date during Christ's presence, and a judgment of religion date in 1878? ### CONTEXT CREATE TABLE table_name_63 (resurrection_of144 VARCHAR, judgmentof_religion VARCHAR, christ_madeking VARCHAR, separating_sheep_ VARCHAR, goats VARCHAR) ### ANSWER SELECT resurrection_of144, 000 FROM table_name_63 WHERE christ_madeking = "1914" AND separating_sheep_ & goats = "during christ's presence" AND judgmentof_religion = "1878"</s>
{ "answer": "SELECT resurrection_of144, 000 FROM table_name_63 WHERE christ_madeking = \"1914\" AND separating_sheep_ & goats = \"during christ's presence\" AND judgmentof_religion = \"1878\"", "context": "CREATE TABLE table_name_63 (resurrection_of144 VARCHAR, judgmentof_religion VARCHAR, christ_madeking VARCHAR, separating_sheep_ VARCHAR, goats VARCHAR)", "question": "What is the resurrection of 144,000 date with a Christ made king date in 1914, a separting sheep & goats date during Christ's presence, and a judgment of religion date in 1878?" }
### QUESTION Name the title for marion burns leading lady and role of john mason ### CONTEXT CREATE TABLE table_name_89 (title VARCHAR, leading_lady VARCHAR, role VARCHAR) ### ANSWER SELECT title FROM table_name_89 WHERE leading_lady = "marion burns" AND role = "john mason"</s>
{ "answer": "SELECT title FROM table_name_89 WHERE leading_lady = \"marion burns\" AND role = \"john mason\"", "context": "CREATE TABLE table_name_89 (title VARCHAR, leading_lady VARCHAR, role VARCHAR)", "question": "Name the title for marion burns leading lady and role of john mason" }
### QUESTION Name the role for studio of rep with sheila mannors leading lady and title of westward ho ### CONTEXT CREATE TABLE table_name_11 (role VARCHAR, title VARCHAR, studio VARCHAR, leading_lady VARCHAR) ### ANSWER SELECT role FROM table_name_11 WHERE studio = "rep" AND leading_lady = "sheila mannors" AND title = "westward ho"</s>
{ "answer": "SELECT role FROM table_name_11 WHERE studio = \"rep\" AND leading_lady = \"sheila mannors\" AND title = \"westward ho\"", "context": "CREATE TABLE table_name_11 (role VARCHAR, title VARCHAR, studio VARCHAR, leading_lady VARCHAR)", "question": "Name the role for studio of rep with sheila mannors leading lady and title of westward ho" }
### QUESTION What was the average Points of the season driver Fernando Alonso had a percentage of possible points of 53.05%? ### CONTEXT CREATE TABLE table_name_15 (points INTEGER, driver VARCHAR, percentage_of_possible_points VARCHAR) ### ANSWER SELECT AVG(points) FROM table_name_15 WHERE driver = "fernando alonso" AND percentage_of_possible_points = "53.05%"</s>
{ "answer": "SELECT AVG(points) FROM table_name_15 WHERE driver = \"fernando alonso\" AND percentage_of_possible_points = \"53.05%\"", "context": "CREATE TABLE table_name_15 (points INTEGER, driver VARCHAR, percentage_of_possible_points VARCHAR)", "question": "What was the average Points of the season driver Fernando Alonso had a percentage of possible points of 53.05%?" }
### QUESTION Name the average concacaf for merconorte larger than 0 and player of jared borgetti ### CONTEXT CREATE TABLE table_name_59 (concacaf INTEGER, superliga VARCHAR, merconorte VARCHAR, player VARCHAR) ### ANSWER SELECT AVG(concacaf) FROM table_name_59 WHERE merconorte > 0 AND player = "jared borgetti" AND superliga > 0</s>
{ "answer": "SELECT AVG(concacaf) FROM table_name_59 WHERE merconorte > 0 AND player = \"jared borgetti\" AND superliga > 0", "context": "CREATE TABLE table_name_59 (concacaf INTEGER, superliga VARCHAR, merconorte VARCHAR, player VARCHAR)", "question": "Name the average concacaf for merconorte larger than 0 and player of jared borgetti" }
### QUESTION What is the sum of goals for Torpedo Moscow in division 1 with an apps value less than 29? ### CONTEXT CREATE TABLE table_name_48 (goals INTEGER, apps VARCHAR, team VARCHAR, division VARCHAR) ### ANSWER SELECT SUM(goals) FROM table_name_48 WHERE team = "torpedo moscow" AND division = 1 AND apps < 29</s>
{ "answer": "SELECT SUM(goals) FROM table_name_48 WHERE team = \"torpedo moscow\" AND division = 1 AND apps < 29", "context": "CREATE TABLE table_name_48 (goals INTEGER, apps VARCHAR, team VARCHAR, division VARCHAR)", "question": "What is the sum of goals for Torpedo Moscow in division 1 with an apps value less than 29?" }