text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
When id the episode broadcast with Mark Webber as Jamie and John's guest?
### CONTEXT
CREATE TABLE table_29141354_4 (first_broadcast VARCHAR, jamie_and_johns_guest VARCHAR)
### ANSWER
SELECT first_broadcast FROM table_29141354_4 WHERE jamie_and_johns_guest = "Mark Webber" | {
"answer": "SELECT first_broadcast FROM table_29141354_4 WHERE jamie_and_johns_guest = \"Mark Webber\"",
"context": "CREATE TABLE table_29141354_4 (first_broadcast VARCHAR, jamie_and_johns_guest VARCHAR)",
"question": "When id the episode broadcast with Mark Webber as Jamie and John's guest?"
} |
### QUESTION
Who is the home captain that played at Edgbaston?
### CONTEXT
CREATE TABLE table_name_22 (home_captain VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_captain FROM table_name_22 WHERE venue = "edgbaston" | {
"answer": "SELECT home_captain FROM table_name_22 WHERE venue = \"edgbaston\"",
"context": "CREATE TABLE table_name_22 (home_captain VARCHAR, venue VARCHAR)",
"question": "Who is the home captain that played at Edgbaston?"
} |
### QUESTION
What is the event when the method was submission (armbar), and Jeff Gibson was the opponent?
### CONTEXT
CREATE TABLE table_name_67 (event VARCHAR, method VARCHAR, opponent VARCHAR)
### ANSWER
SELECT event FROM table_name_67 WHERE method = "submission (armbar)" AND opponent = "jeff gibson" | {
"answer": "SELECT event FROM table_name_67 WHERE method = \"submission (armbar)\" AND opponent = \"jeff gibson\"",
"context": "CREATE TABLE table_name_67 (event VARCHAR, method VARCHAR, opponent VARCHAR)",
"question": "What is the event when the method was submission (armbar), and Jeff Gibson was the opponent?"
} |
### QUESTION
Which position does Deshawn Stevenson play?
### CONTEXT
CREATE TABLE table_11545282_18 (position VARCHAR, player VARCHAR)
### ANSWER
SELECT position FROM table_11545282_18 WHERE player = "DeShawn Stevenson" | {
"answer": "SELECT position FROM table_11545282_18 WHERE player = \"DeShawn Stevenson\"",
"context": "CREATE TABLE table_11545282_18 (position VARCHAR, player VARCHAR)",
"question": "Which position does Deshawn Stevenson play?"
} |
### QUESTION
Who wins the clive churchill medal when the losing team is the sydney roosters in 2010?
### CONTEXT
CREATE TABLE table_name_27 (clive_churchill_medal VARCHAR, losingteam VARCHAR, season VARCHAR)
### ANSWER
SELECT clive_churchill_medal FROM table_name_27 WHERE losingteam = "sydney roosters" AND season = 2010 | {
"answer": "SELECT clive_churchill_medal FROM table_name_27 WHERE losingteam = \"sydney roosters\" AND season = 2010",
"context": "CREATE TABLE table_name_27 (clive_churchill_medal VARCHAR, losingteam VARCHAR, season VARCHAR)",
"question": "Who wins the clive churchill medal when the losing team is the sydney roosters in 2010?"
} |
### QUESTION
How many laps recorded in 2001?
### CONTEXT
CREATE TABLE table_17802778_1 (laps VARCHAR, year VARCHAR)
### ANSWER
SELECT laps FROM table_17802778_1 WHERE year = 2001 | {
"answer": "SELECT laps FROM table_17802778_1 WHERE year = 2001",
"context": "CREATE TABLE table_17802778_1 (laps VARCHAR, year VARCHAR)",
"question": "How many laps recorded in 2001?"
} |
### QUESTION
Find the total revenue for each manufacturer.
### CONTEXT
CREATE TABLE manufacturers (name VARCHAR, revenue INTEGER)
### ANSWER
SELECT SUM(revenue), name FROM manufacturers GROUP BY name | {
"answer": "SELECT SUM(revenue), name FROM manufacturers GROUP BY name",
"context": "CREATE TABLE manufacturers (name VARCHAR, revenue INTEGER)",
"question": "Find the total revenue for each manufacturer."
} |
### QUESTION
Which country has its most recent year as being 2005 and has an Adult Men literacy rate of 96%?
### CONTEXT
CREATE TABLE table_name_62 (country VARCHAR, year__most_recent_ VARCHAR, adult_men VARCHAR)
### ANSWER
SELECT country FROM table_name_62 WHERE year__most_recent_ = 2005 AND adult_men = "96%" | {
"answer": "SELECT country FROM table_name_62 WHERE year__most_recent_ = 2005 AND adult_men = \"96%\"",
"context": "CREATE TABLE table_name_62 (country VARCHAR, year__most_recent_ VARCHAR, adult_men VARCHAR)",
"question": "Which country has its most recent year as being 2005 and has an Adult Men literacy rate of 96%?"
} |
### QUESTION
How many in total were elected first in lost renomination?
### CONTEXT
CREATE TABLE table_1342338_3 (first_elected VARCHAR, result VARCHAR)
### ANSWER
SELECT COUNT(first_elected) FROM table_1342338_3 WHERE result = "Lost renomination" | {
"answer": "SELECT COUNT(first_elected) FROM table_1342338_3 WHERE result = \"Lost renomination\"",
"context": "CREATE TABLE table_1342338_3 (first_elected VARCHAR, result VARCHAR)",
"question": "How many in total were elected first in lost renomination?"
} |
### QUESTION
Which Quantity has a Type of e h4v, and a Year(s) of Manufacture of 1920β1924?
### CONTEXT
CREATE TABLE table_name_87 (quantity INTEGER, type VARCHAR, year_s__of_manufacture VARCHAR)
### ANSWER
SELECT MIN(quantity) FROM table_name_87 WHERE type = "e h4v" AND year_s__of_manufacture = "1920β1924" | {
"answer": "SELECT MIN(quantity) FROM table_name_87 WHERE type = \"e h4v\" AND year_s__of_manufacture = \"1920β1924\"",
"context": "CREATE TABLE table_name_87 (quantity INTEGER, type VARCHAR, year_s__of_manufacture VARCHAR)",
"question": "Which Quantity has a Type of e h4v, and a Year(s) of Manufacture of 1920β1924?"
} |
### 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" | {
"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 are the name of courses that have at least five enrollments?
### CONTEXT
CREATE TABLE ENROLLED_IN (CID VARCHAR); CREATE TABLE COURSE (CName VARCHAR, CID VARCHAR)
### ANSWER
SELECT T1.CName FROM COURSE AS T1 JOIN ENROLLED_IN AS T2 ON T1.CID = T2.CID GROUP BY T2.CID HAVING COUNT(*) >= 5 | {
"answer": "SELECT T1.CName FROM COURSE AS T1 JOIN ENROLLED_IN AS T2 ON T1.CID = T2.CID GROUP BY T2.CID HAVING COUNT(*) >= 5",
"context": "CREATE TABLE ENROLLED_IN (CID VARCHAR); CREATE TABLE COURSE (CName VARCHAR, CID VARCHAR)",
"question": "What are the name of courses that have at least five enrollments?"
} |
### QUESTION
How many times did Saxby Chambliss have a lead margin of 21?
### CONTEXT
CREATE TABLE table_16751596_16 (republican VARCHAR, lead_margin VARCHAR)
### ANSWER
SELECT COUNT(republican) AS :_saxby_chambliss FROM table_16751596_16 WHERE lead_margin = 21 | {
"answer": "SELECT COUNT(republican) AS :_saxby_chambliss FROM table_16751596_16 WHERE lead_margin = 21",
"context": "CREATE TABLE table_16751596_16 (republican VARCHAR, lead_margin VARCHAR)",
"question": "How many times did Saxby Chambliss have a lead margin of 21?"
} |
### QUESTION
Who were the candidates where the result was retired Republican hold and the incumbent was Philemon Bliss?
### CONTEXT
CREATE TABLE table_2646656_3 (candidates VARCHAR, result VARCHAR, incumbent VARCHAR)
### ANSWER
SELECT candidates FROM table_2646656_3 WHERE result = "Retired Republican hold" AND incumbent = "Philemon Bliss" | {
"answer": "SELECT candidates FROM table_2646656_3 WHERE result = \"Retired Republican hold\" AND incumbent = \"Philemon Bliss\"",
"context": "CREATE TABLE table_2646656_3 (candidates VARCHAR, result VARCHAR, incumbent VARCHAR)",
"question": "Who were the candidates where the result was retired Republican hold and the incumbent was Philemon Bliss?"
} |
### QUESTION
What is the average number of employees of the departments whose rank is between 10 and 15?
### CONTEXT
CREATE TABLE department (num_employees INTEGER, ranking INTEGER)
### ANSWER
SELECT AVG(num_employees) FROM department WHERE ranking BETWEEN 10 AND 15 | {
"answer": "SELECT AVG(num_employees) FROM department WHERE ranking BETWEEN 10 AND 15",
"context": "CREATE TABLE department (num_employees INTEGER, ranking INTEGER)",
"question": "What is the average number of employees of the departments whose rank is between 10 and 15?"
} |
### QUESTION
When was the Result of 3β2, with a Score of 6β0, 6β4?
### CONTEXT
CREATE TABLE table_name_72 (date VARCHAR, result VARCHAR, score VARCHAR)
### ANSWER
SELECT date FROM table_name_72 WHERE result = "3β2" AND score = "6β0, 6β4" | {
"answer": "SELECT date FROM table_name_72 WHERE result = \"3β2\" AND score = \"6β0, 6β4\"",
"context": "CREATE TABLE table_name_72 (date VARCHAR, result VARCHAR, score VARCHAR)",
"question": "When was the Result of 3β2, with a Score of 6β0, 6β4?"
} |
### QUESTION
What is the lowest population density of Strakonice (st) with more than 112 settlements?
### CONTEXT
CREATE TABLE table_name_66 (pop_dens INTEGER, district VARCHAR, noof_settlements VARCHAR)
### ANSWER
SELECT MIN(pop_dens) FROM table_name_66 WHERE district = "strakonice (st)" AND noof_settlements > 112 | {
"answer": "SELECT MIN(pop_dens) FROM table_name_66 WHERE district = \"strakonice (st)\" AND noof_settlements > 112",
"context": "CREATE TABLE table_name_66 (pop_dens INTEGER, district VARCHAR, noof_settlements VARCHAR)",
"question": "What is the lowest population density of Strakonice (st) with more than 112 settlements?"
} |
### QUESTION
Show first name and id for all customers with at least 2 accounts.
### CONTEXT
CREATE TABLE Customers (customer_first_name VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR)
### ANSWER
SELECT T2.customer_first_name, T1.customer_id FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2 | {
"answer": "SELECT T2.customer_first_name, T1.customer_id FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2",
"context": "CREATE TABLE Customers (customer_first_name VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR)",
"question": "Show first name and id for all customers with at least 2 accounts."
} |
### QUESTION
What place did the singer in atomic kitten finish?
### CONTEXT
CREATE TABLE table_name_91 (finished VARCHAR, famous_for VARCHAR)
### ANSWER
SELECT finished FROM table_name_91 WHERE famous_for = "singer in atomic kitten" | {
"answer": "SELECT finished FROM table_name_91 WHERE famous_for = \"singer in atomic kitten\"",
"context": "CREATE TABLE table_name_91 (finished VARCHAR, famous_for VARCHAR)",
"question": "What place did the singer in atomic kitten finish?"
} |
### QUESTION
In how many episodes was Dave's team made up of David Walliams and Louis Walsh?
### CONTEXT
CREATE TABLE table_23292220_3 (episode VARCHAR, daves_team VARCHAR)
### ANSWER
SELECT COUNT(episode) FROM table_23292220_3 WHERE daves_team = "David Walliams and Louis Walsh" | {
"answer": "SELECT COUNT(episode) FROM table_23292220_3 WHERE daves_team = \"David Walliams and Louis Walsh\"",
"context": "CREATE TABLE table_23292220_3 (episode VARCHAR, daves_team VARCHAR)",
"question": "In how many episodes was Dave's team made up of David Walliams and Louis Walsh?"
} |
### QUESTION
What is the lowest Game, when Location is Philips Arena, and when Attendance is less than 15,619?
### CONTEXT
CREATE TABLE table_name_68 (game INTEGER, location VARCHAR, attendance VARCHAR)
### ANSWER
SELECT MIN(game) FROM table_name_68 WHERE location = "philips arena" AND attendance < 15 OFFSET 619 | {
"answer": "SELECT MIN(game) FROM table_name_68 WHERE location = \"philips arena\" AND attendance < 15 OFFSET 619",
"context": "CREATE TABLE table_name_68 (game INTEGER, location VARCHAR, attendance VARCHAR)",
"question": "What is the lowest Game, when Location is Philips Arena, and when Attendance is less than 15,619?"
} |
### QUESTION
Name the score for moscow, ussr 15 february 1971
### CONTEXT
CREATE TABLE table_name_57 (score_in_the_final VARCHAR, location VARCHAR, date VARCHAR)
### ANSWER
SELECT score_in_the_final FROM table_name_57 WHERE location = "moscow, ussr" AND date = "15 february 1971" | {
"answer": "SELECT score_in_the_final FROM table_name_57 WHERE location = \"moscow, ussr\" AND date = \"15 february 1971\"",
"context": "CREATE TABLE table_name_57 (score_in_the_final VARCHAR, location VARCHAR, date VARCHAR)",
"question": "Name the score for moscow, ussr 15 february 1971"
} |
### QUESTION
What is the english spelling of the word that has the strongs trasliteration of y e howram?
### CONTEXT
CREATE TABLE table_1242447_1 (english_spelling VARCHAR, strongs_transliteration VARCHAR)
### ANSWER
SELECT english_spelling FROM table_1242447_1 WHERE strongs_transliteration = "Y e howram" | {
"answer": "SELECT english_spelling FROM table_1242447_1 WHERE strongs_transliteration = \"Y e howram\"",
"context": "CREATE TABLE table_1242447_1 (english_spelling VARCHAR, strongs_transliteration VARCHAR)",
"question": "What is the english spelling of the word that has the strongs trasliteration of y e howram?"
} |
### QUESTION
What are the drivers' first, last names and id who had more than 8 pit stops or participated in more than 5 race results?
### CONTEXT
CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE results (driverid VARCHAR); CREATE TABLE pitstops (driverid VARCHAR)
### ANSWER
SELECT T1.forename, T1.surname, T1.driverid FROM drivers AS T1 JOIN pitstops AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 8 UNION SELECT T1.forename, T1.surname, T1.driverid FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 5 | {
"answer": "SELECT T1.forename, T1.surname, T1.driverid FROM drivers AS T1 JOIN pitstops AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 8 UNION SELECT T1.forename, T1.surname, T1.driverid FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid GROUP BY T1.driverid HAVING COUNT(*) > 5",
"context": "CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE results (driverid VARCHAR); CREATE TABLE pitstops (driverid VARCHAR)",
"question": "What are the drivers' first, last names and id who had more than 8 pit stops or participated in more than 5 race results?"
} |
### QUESTION
what is the sum of goals for when the position is less than 8, the losses is less than 10 the goals against is less than 35 and played is less than 38?
### CONTEXT
CREATE TABLE table_name_50 (goals_for INTEGER, played VARCHAR, goals_against VARCHAR, position VARCHAR, losses VARCHAR)
### ANSWER
SELECT SUM(goals_for) FROM table_name_50 WHERE position < 8 AND losses < 10 AND goals_against < 35 AND played < 38 | {
"answer": "SELECT SUM(goals_for) FROM table_name_50 WHERE position < 8 AND losses < 10 AND goals_against < 35 AND played < 38",
"context": "CREATE TABLE table_name_50 (goals_for INTEGER, played VARCHAR, goals_against VARCHAR, position VARCHAR, losses VARCHAR)",
"question": "what is the sum of goals for when the position is less than 8, the losses is less than 10 the goals against is less than 35 and played is less than 38?"
} |
### QUESTION
Who is the chairman when the current manager is bob peeters?
### CONTEXT
CREATE TABLE table_27374004_2 (chairman VARCHAR, current_manager VARCHAR)
### ANSWER
SELECT chairman FROM table_27374004_2 WHERE current_manager = "Bob Peeters" | {
"answer": "SELECT chairman FROM table_27374004_2 WHERE current_manager = \"Bob Peeters\"",
"context": "CREATE TABLE table_27374004_2 (chairman VARCHAR, current_manager VARCHAR)",
"question": "Who is the chairman when the current manager is bob peeters?"
} |
### QUESTION
Name the least point for mv agusta and rank of 13th for wins less than 0
### CONTEXT
CREATE TABLE table_name_52 (points INTEGER, wins VARCHAR, team VARCHAR, rank VARCHAR)
### ANSWER
SELECT MIN(points) FROM table_name_52 WHERE team = "mv agusta" AND rank = "13th" AND wins < 0 | {
"answer": "SELECT MIN(points) FROM table_name_52 WHERE team = \"mv agusta\" AND rank = \"13th\" AND wins < 0",
"context": "CREATE TABLE table_name_52 (points INTEGER, wins VARCHAR, team VARCHAR, rank VARCHAR)",
"question": "Name the least point for mv agusta and rank of 13th for wins less than 0"
} |
### QUESTION
How many pages were in the book by Stefano D'Arrigo?
### CONTEXT
CREATE TABLE table_name_39 (page_count VARCHAR, author VARCHAR)
### ANSWER
SELECT page_count FROM table_name_39 WHERE author = "stefano d'arrigo" | {
"answer": "SELECT page_count FROM table_name_39 WHERE author = \"stefano d'arrigo\"",
"context": "CREATE TABLE table_name_39 (page_count VARCHAR, author VARCHAR)",
"question": "How many pages were in the book by Stefano D'Arrigo?"
} |
### QUESTION
What was the report of the Belgian Grand Prix?
### CONTEXT
CREATE TABLE table_1132600_3 (report VARCHAR, grand_prix VARCHAR)
### ANSWER
SELECT report FROM table_1132600_3 WHERE grand_prix = "Belgian grand_prix" | {
"answer": "SELECT report FROM table_1132600_3 WHERE grand_prix = \"Belgian grand_prix\"",
"context": "CREATE TABLE table_1132600_3 (report VARCHAR, grand_prix VARCHAR)",
"question": "What was the report of the Belgian Grand Prix?"
} |
### QUESTION
What is the first name, last name, and phone of the customer with account name 162?
### CONTEXT
CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR, account_name VARCHAR)
### ANSWER
SELECT T2.customer_first_name, T2.customer_last_name, T2.customer_phone FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = "162" | {
"answer": "SELECT T2.customer_first_name, T2.customer_last_name, T2.customer_phone FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = \"162\"",
"context": "CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR, account_name VARCHAR)",
"question": "What is the first name, last name, and phone of the customer with account name 162?"
} |
### QUESTION
How many items are listed under 'andrew and georgies guest lee mack replaced andrew flint as team captain for one week' for episode 04x04?
### CONTEXT
CREATE TABLE table_29141354_4 (_episode_2 VARCHAR, andrew_and_georgies_guest_lee_mack_replaced_andrew_flintoff_as_team_captain_for_one_week_in_series_4 VARCHAR, episode VARCHAR)
### ANSWER
SELECT COUNT(andrew_and_georgies_guest_lee_mack_replaced_andrew_flintoff_as_team_captain_for_one_week_in_series_4), _episode_2 FROM table_29141354_4 WHERE episode = "04x04" | {
"answer": "SELECT COUNT(andrew_and_georgies_guest_lee_mack_replaced_andrew_flintoff_as_team_captain_for_one_week_in_series_4), _episode_2 FROM table_29141354_4 WHERE episode = \"04x04\"",
"context": "CREATE TABLE table_29141354_4 (_episode_2 VARCHAR, andrew_and_georgies_guest_lee_mack_replaced_andrew_flintoff_as_team_captain_for_one_week_in_series_4 VARCHAR, episode VARCHAR)",
"question": "How many items are listed under 'andrew and georgies guest lee mack replaced andrew flint as team captain for one week' for episode 04x04?"
} |
### QUESTION
Which Bronze has a Silver larger than 1, a Total larger than 3, a Nation of turkey, and a Gold smaller than 2?
### CONTEXT
CREATE TABLE table_name_53 (bronze INTEGER, gold VARCHAR, nation VARCHAR, silver VARCHAR, total VARCHAR)
### ANSWER
SELECT SUM(bronze) FROM table_name_53 WHERE silver > 1 AND total > 3 AND nation = "turkey" AND gold < 2 | {
"answer": "SELECT SUM(bronze) FROM table_name_53 WHERE silver > 1 AND total > 3 AND nation = \"turkey\" AND gold < 2",
"context": "CREATE TABLE table_name_53 (bronze INTEGER, gold VARCHAR, nation VARCHAR, silver VARCHAR, total VARCHAR)",
"question": "Which Bronze has a Silver larger than 1, a Total larger than 3, a Nation of turkey, and a Gold smaller than 2?"
} |
### QUESTION
What is the total number of her age figures where his age is less than 33, the bride was diontha walker, and the number of children was less than 0?
### CONTEXT
CREATE TABLE table_name_84 (her_age INTEGER, _number_of_children VARCHAR, his_age VARCHAR, name VARCHAR)
### ANSWER
SELECT SUM(her_age) FROM table_name_84 WHERE his_age < 33 AND name = "diontha walker" AND _number_of_children < 0 | {
"answer": "SELECT SUM(her_age) FROM table_name_84 WHERE his_age < 33 AND name = \"diontha walker\" AND _number_of_children < 0",
"context": "CREATE TABLE table_name_84 (her_age INTEGER, _number_of_children VARCHAR, his_age VARCHAR, name VARCHAR)",
"question": "What is the total number of her age figures where his age is less than 33, the bride was diontha walker, and the number of children was less than 0?"
} |
### QUESTION
Which Goals against has Wins of 13, and Goals for larger than 42, and more than 9 Losses?
### CONTEXT
CREATE TABLE table_name_45 (goals_against INTEGER, losses VARCHAR, wins VARCHAR, goals_for VARCHAR)
### ANSWER
SELECT AVG(goals_against) FROM table_name_45 WHERE wins = 13 AND goals_for > 42 AND losses > 9 | {
"answer": "SELECT AVG(goals_against) FROM table_name_45 WHERE wins = 13 AND goals_for > 42 AND losses > 9",
"context": "CREATE TABLE table_name_45 (goals_against INTEGER, losses VARCHAR, wins VARCHAR, goals_for VARCHAR)",
"question": "Which Goals against has Wins of 13, and Goals for larger than 42, and more than 9 Losses?"
} |
### QUESTION
What is the Musical Guest/Song with an original airdate of january 2008?
### CONTEXT
CREATE TABLE table_name_85 (musical_guest_song_performed VARCHAR, original_airdate VARCHAR)
### ANSWER
SELECT musical_guest_song_performed FROM table_name_85 WHERE original_airdate = "january 2008" | {
"answer": "SELECT musical_guest_song_performed FROM table_name_85 WHERE original_airdate = \"january 2008\"",
"context": "CREATE TABLE table_name_85 (musical_guest_song_performed VARCHAR, original_airdate VARCHAR)",
"question": "What is the Musical Guest/Song with an original airdate of january 2008?"
} |
### QUESTION
Name the class a for pearland
### CONTEXT
CREATE TABLE table_14601528_2 (class_a VARCHAR, class_aAAAA VARCHAR, Pearland VARCHAR)
### ANSWER
SELECT class_a FROM table_14601528_2 WHERE class_aAAAA = Pearland | {
"answer": "SELECT class_a FROM table_14601528_2 WHERE class_aAAAA = Pearland",
"context": "CREATE TABLE table_14601528_2 (class_a VARCHAR, class_aAAAA VARCHAR, Pearland VARCHAR)",
"question": "Name the class a for pearland"
} |
### QUESTION
What is the lowest Pick #, when Position is REC, and when CFL Team is Hamilton Tiger-Cats?
### CONTEXT
CREATE TABLE table_name_62 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR)
### ANSWER
SELECT MIN(pick__number) FROM table_name_62 WHERE position = "rec" AND cfl_team = "hamilton tiger-cats" | {
"answer": "SELECT MIN(pick__number) FROM table_name_62 WHERE position = \"rec\" AND cfl_team = \"hamilton tiger-cats\"",
"context": "CREATE TABLE table_name_62 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR)",
"question": "What is the lowest Pick #, when Position is REC, and when CFL Team is Hamilton Tiger-Cats?"
} |
### QUESTION
For player Wally Johnson, with goals larger than 0, the debut year later than 1904, and games greater than 136, what were the years at club?
### CONTEXT
CREATE TABLE table_name_5 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR, debut_year VARCHAR)
### ANSWER
SELECT years_at_club FROM table_name_5 WHERE goals > 0 AND debut_year > 1904 AND games > 136 AND player = "wally johnson" | {
"answer": "SELECT years_at_club FROM table_name_5 WHERE goals > 0 AND debut_year > 1904 AND games > 136 AND player = \"wally johnson\"",
"context": "CREATE TABLE table_name_5 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR, debut_year VARCHAR)",
"question": "For player Wally Johnson, with goals larger than 0, the debut year later than 1904, and games greater than 136, what were the years at club?"
} |
### QUESTION
What team has a location and attendance at the Seattle Center Coliseum 12,591?
### CONTEXT
CREATE TABLE table_name_22 (team VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT team FROM table_name_22 WHERE location_attendance = "seattle center coliseum 12,591" | {
"answer": "SELECT team FROM table_name_22 WHERE location_attendance = \"seattle center coliseum 12,591\"",
"context": "CREATE TABLE table_name_22 (team VARCHAR, location_attendance VARCHAR)",
"question": "What team has a location and attendance at the Seattle Center Coliseum 12,591?"
} |
### QUESTION
What is the Latitude of the Alajen Vallis named after 1997?
### CONTEXT
CREATE TABLE table_name_86 (latitude VARCHAR, year_named VARCHAR, name VARCHAR)
### ANSWER
SELECT latitude FROM table_name_86 WHERE year_named > 1997 AND name = "alajen vallis" | {
"answer": "SELECT latitude FROM table_name_86 WHERE year_named > 1997 AND name = \"alajen vallis\"",
"context": "CREATE TABLE table_name_86 (latitude VARCHAR, year_named VARCHAR, name VARCHAR)",
"question": "What is the Latitude of the Alajen Vallis named after 1997?"
} |
### QUESTION
Say the frequency of 1290 khz
### CONTEXT
CREATE TABLE table_name_31 (format VARCHAR, frequency VARCHAR)
### ANSWER
SELECT format FROM table_name_31 WHERE frequency = "1290 khz" | {
"answer": "SELECT format FROM table_name_31 WHERE frequency = \"1290 khz\"",
"context": "CREATE TABLE table_name_31 (format VARCHAR, frequency VARCHAR)",
"question": "Say the frequency of 1290 khz"
} |
### QUESTION
Tell me the average bronze for rank of 43 and total less than 11
### CONTEXT
CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR)
### ANSWER
SELECT AVG(bronze) FROM table_name_41 WHERE rank = "43" AND total < 11 | {
"answer": "SELECT AVG(bronze) FROM table_name_41 WHERE rank = \"43\" AND total < 11",
"context": "CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR)",
"question": "Tell me the average bronze for rank of 43 and total less than 11"
} |
### QUESTION
Tell me the capacity for city park stadium
### CONTEXT
CREATE TABLE table_name_15 (capacity VARCHAR, stadium VARCHAR)
### ANSWER
SELECT capacity FROM table_name_15 WHERE stadium = "city park stadium" | {
"answer": "SELECT capacity FROM table_name_15 WHERE stadium = \"city park stadium\"",
"context": "CREATE TABLE table_name_15 (capacity VARCHAR, stadium VARCHAR)",
"question": "Tell me the capacity for city park stadium"
} |
### QUESTION
What is the Tenure of the Officer who died in a helicopter accident with Badge/Serial Number 16805?
### CONTEXT
CREATE TABLE table_name_95 (tenure VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR)
### ANSWER
SELECT tenure FROM table_name_95 WHERE cause_of_death = "helicopter accident" AND badge_serial_number = "16805" | {
"answer": "SELECT tenure FROM table_name_95 WHERE cause_of_death = \"helicopter accident\" AND badge_serial_number = \"16805\"",
"context": "CREATE TABLE table_name_95 (tenure VARCHAR, cause_of_death VARCHAR, badge_serial_number VARCHAR)",
"question": "What is the Tenure of the Officer who died in a helicopter accident with Badge/Serial Number 16805?"
} |
### QUESTION
When bmw activee is the vehicle type how many clean electric grid california (san francisco) measurements are there?
### CONTEXT
CREATE TABLE table_24620684_2 (clean_electric_grid_california__san_francisco_ VARCHAR, vehicle VARCHAR)
### ANSWER
SELECT COUNT(clean_electric_grid_california__san_francisco_) FROM table_24620684_2 WHERE vehicle = "BMW ActiveE" | {
"answer": "SELECT COUNT(clean_electric_grid_california__san_francisco_) FROM table_24620684_2 WHERE vehicle = \"BMW ActiveE\"",
"context": "CREATE TABLE table_24620684_2 (clean_electric_grid_california__san_francisco_ VARCHAR, vehicle VARCHAR)",
"question": "When bmw activee is the vehicle type how many clean electric grid california (san francisco) measurements are there?"
} |
### QUESTION
Which rank had the Labour party winning in 2003, a swing to gain that was larger than 2.13, a lab hold as a result, and which took place in the Linlithgow constituency?
### CONTEXT
CREATE TABLE table_name_21 (rank VARCHAR, constituency VARCHAR, result VARCHAR, winning_party_2003 VARCHAR, swing_to_gain VARCHAR)
### ANSWER
SELECT rank FROM table_name_21 WHERE winning_party_2003 = "labour" AND swing_to_gain > 2.13 AND result = "lab hold" AND constituency = "linlithgow" | {
"answer": "SELECT rank FROM table_name_21 WHERE winning_party_2003 = \"labour\" AND swing_to_gain > 2.13 AND result = \"lab hold\" AND constituency = \"linlithgow\"",
"context": "CREATE TABLE table_name_21 (rank VARCHAR, constituency VARCHAR, result VARCHAR, winning_party_2003 VARCHAR, swing_to_gain VARCHAR)",
"question": "Which rank had the Labour party winning in 2003, a swing to gain that was larger than 2.13, a lab hold as a result, and which took place in the Linlithgow constituency?"
} |
### QUESTION
display the employee number, name( first name and last name ) and job title for all employees whose salary is more than any salary of those employees whose job title is PU_MAN.
### CONTEXT
CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, job_id VARCHAR, salary INTEGER)
### ANSWER
SELECT employee_id, first_name, last_name, job_id FROM employees WHERE salary > (SELECT MAX(salary) FROM employees WHERE job_id = 'PU_MAN') | {
"answer": "SELECT employee_id, first_name, last_name, job_id FROM employees WHERE salary > (SELECT MAX(salary) FROM employees WHERE job_id = 'PU_MAN')",
"context": "CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, job_id VARCHAR, salary INTEGER)",
"question": "display the employee number, name( first name and last name ) and job title for all employees whose salary is more than any salary of those employees whose job title is PU_MAN."
} |
### QUESTION
How many are in the Labour Party of a Fianna Fail of 3 with a total higher than 9 and more than 2 in the Green Party?
### CONTEXT
CREATE TABLE table_name_29 (labour_party INTEGER, green_party VARCHAR, fianna_fΓ‘il VARCHAR, total VARCHAR)
### ANSWER
SELECT SUM(labour_party) FROM table_name_29 WHERE fianna_fΓ‘il = 3 AND total > 9 AND green_party > 2 | {
"answer": "SELECT SUM(labour_party) FROM table_name_29 WHERE fianna_fΓ‘il = 3 AND total > 9 AND green_party > 2",
"context": "CREATE TABLE table_name_29 (labour_party INTEGER, green_party VARCHAR, fianna_fΓ‘il VARCHAR, total VARCHAR)",
"question": "How many are in the Labour Party of a Fianna Fail of 3 with a total higher than 9 and more than 2 in the Green Party?"
} |
### QUESTION
Show names for all employees who have certificates on both Boeing 737-800 and Airbus A340-300.
### CONTEXT
CREATE TABLE Employee (name VARCHAR, eid VARCHAR); CREATE TABLE Certificate (eid VARCHAR, aid VARCHAR); CREATE TABLE Aircraft (aid VARCHAR, name VARCHAR)
### ANSWER
SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800" INTERSECT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Airbus A340-300" | {
"answer": "SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = \"Boeing 737-800\" INTERSECT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = \"Airbus A340-300\"",
"context": "CREATE TABLE Employee (name VARCHAR, eid VARCHAR); CREATE TABLE Certificate (eid VARCHAR, aid VARCHAR); CREATE TABLE Aircraft (aid VARCHAR, name VARCHAR)",
"question": "Show names for all employees who have certificates on both Boeing 737-800 and Airbus A340-300."
} |
### QUESTION
When South warrnambool has more than 8 wins, what is the least amount of losses?
### CONTEXT
CREATE TABLE table_name_64 (losses INTEGER, club VARCHAR, wins VARCHAR)
### ANSWER
SELECT MIN(losses) FROM table_name_64 WHERE club = "south warrnambool" AND wins > 8 | {
"answer": "SELECT MIN(losses) FROM table_name_64 WHERE club = \"south warrnambool\" AND wins > 8",
"context": "CREATE TABLE table_name_64 (losses INTEGER, club VARCHAR, wins VARCHAR)",
"question": "When South warrnambool has more than 8 wins, what is the least amount of losses?"
} |
### QUESTION
What was the highest rank by average of a couple who had an average of 25.3 and had more than 10 dances?
### CONTEXT
CREATE TABLE table_name_27 (rank_by_average INTEGER, average VARCHAR, number_of_dances VARCHAR)
### ANSWER
SELECT MAX(rank_by_average) FROM table_name_27 WHERE average = 25.3 AND number_of_dances > 10 | {
"answer": "SELECT MAX(rank_by_average) FROM table_name_27 WHERE average = 25.3 AND number_of_dances > 10",
"context": "CREATE TABLE table_name_27 (rank_by_average INTEGER, average VARCHAR, number_of_dances VARCHAR)",
"question": "What was the highest rank by average of a couple who had an average of 25.3 and had more than 10 dances?"
} |
### QUESTION
What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms?
### CONTEXT
CREATE TABLE table_18461045_1 (kentucky VARCHAR, michigan VARCHAR)
### ANSWER
SELECT kentucky FROM table_18461045_1 WHERE michigan = "Grosse Pointe Farms-City LL Grosse Pointe Farms" | {
"answer": "SELECT kentucky FROM table_18461045_1 WHERE michigan = \"Grosse Pointe Farms-City LL Grosse Pointe Farms\"",
"context": "CREATE TABLE table_18461045_1 (kentucky VARCHAR, michigan VARCHAR)",
"question": "What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms? "
} |
### QUESTION
What are the names of the tourist attractions and the dates when the tourists named Vincent or Vivian visited there?
### CONTEXT
CREATE TABLE VISITORS (Tourist_ID VARCHAR, Tourist_Details VARCHAR); CREATE TABLE VISITS (Visit_Date VARCHAR, Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
### ANSWER
SELECT T1.Name, T3.Visit_Date FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Vincent" OR T2.Tourist_Details = "Vivian" | {
"answer": "SELECT T1.Name, T3.Visit_Date FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = \"Vincent\" OR T2.Tourist_Details = \"Vivian\"",
"context": "CREATE TABLE VISITORS (Tourist_ID VARCHAR, Tourist_Details VARCHAR); CREATE TABLE VISITS (Visit_Date VARCHAR, Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)",
"question": "What are the names of the tourist attractions and the dates when the tourists named Vincent or Vivian visited there?"
} |
### QUESTION
What is the payload for Class MRBM, and a range of 1,930km?
### CONTEXT
CREATE TABLE table_name_12 (payload VARCHAR, class VARCHAR, range__varies_with_payload_weight_ VARCHAR)
### ANSWER
SELECT payload FROM table_name_12 WHERE class = "mrbm" AND range__varies_with_payload_weight_ = "1,930km" | {
"answer": "SELECT payload FROM table_name_12 WHERE class = \"mrbm\" AND range__varies_with_payload_weight_ = \"1,930km\"",
"context": "CREATE TABLE table_name_12 (payload VARCHAR, class VARCHAR, range__varies_with_payload_weight_ VARCHAR)",
"question": "What is the payload for Class MRBM, and a range of 1,930km?"
} |
### QUESTION
What was the record for a week below 13 on July 12?
### CONTEXT
CREATE TABLE table_name_82 (record VARCHAR, week VARCHAR, date VARCHAR)
### ANSWER
SELECT record FROM table_name_82 WHERE week < 13 AND date = "july 12" | {
"answer": "SELECT record FROM table_name_82 WHERE week < 13 AND date = \"july 12\"",
"context": "CREATE TABLE table_name_82 (record VARCHAR, week VARCHAR, date VARCHAR)",
"question": "What was the record for a week below 13 on July 12?"
} |
### QUESTION
which Film has a Category of best actress β musical or comedy, and a Lost to of nicole kidman ( moulin rouge! )?
### CONTEXT
CREATE TABLE table_name_23 (film VARCHAR, category VARCHAR, lost_to VARCHAR)
### ANSWER
SELECT film FROM table_name_23 WHERE category = "best actress β musical or comedy" AND lost_to = "nicole kidman ( moulin rouge! )" | {
"answer": "SELECT film FROM table_name_23 WHERE category = \"best actress β musical or comedy\" AND lost_to = \"nicole kidman ( moulin rouge! )\"",
"context": "CREATE TABLE table_name_23 (film VARCHAR, category VARCHAR, lost_to VARCHAR)",
"question": "which Film has a Category of best actress β musical or comedy, and a Lost to of nicole kidman ( moulin rouge! )?"
} |
### QUESTION
What is the athlete from Edwardsville?
### CONTEXT
CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)
### ANSWER
SELECT athlete FROM table_1231316_7 WHERE location = "Edwardsville" | {
"answer": "SELECT athlete FROM table_1231316_7 WHERE location = \"Edwardsville\"",
"context": "CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)",
"question": "What is the athlete from Edwardsville?"
} |
### QUESTION
Which Attendance has a Game score less than 3, and a Score of 2 β 5?
### CONTEXT
CREATE TABLE table_name_58 (attendance INTEGER, game VARCHAR, score VARCHAR)
### ANSWER
SELECT AVG(attendance) FROM table_name_58 WHERE game < 3 AND score = "2 β 5" | {
"answer": "SELECT AVG(attendance) FROM table_name_58 WHERE game < 3 AND score = \"2 β 5\"",
"context": "CREATE TABLE table_name_58 (attendance INTEGER, game VARCHAR, score VARCHAR)",
"question": "Which Attendance has a Game score less than 3, and a Score of 2 β 5?"
} |
### QUESTION
Which Date had a City/Location of vancouver, british columbia?
### CONTEXT
CREATE TABLE table_name_65 (date VARCHAR, city_location VARCHAR)
### ANSWER
SELECT date FROM table_name_65 WHERE city_location = "vancouver, british columbia" | {
"answer": "SELECT date FROM table_name_65 WHERE city_location = \"vancouver, british columbia\"",
"context": "CREATE TABLE table_name_65 (date VARCHAR, city_location VARCHAR)",
"question": "Which Date had a City/Location of vancouver, british columbia?"
} |
### QUESTION
What is the highest number of points scored when Acadie-Bathurst had 4 tied games, less than 257 goals, and over 72 games played?
### CONTEXT
CREATE TABLE table_name_10 (points INTEGER, games VARCHAR, tied VARCHAR, goals_for VARCHAR)
### ANSWER
SELECT MAX(points) FROM table_name_10 WHERE tied = "4" AND goals_for < 257 AND games > 72 | {
"answer": "SELECT MAX(points) FROM table_name_10 WHERE tied = \"4\" AND goals_for < 257 AND games > 72",
"context": "CREATE TABLE table_name_10 (points INTEGER, games VARCHAR, tied VARCHAR, goals_for VARCHAR)",
"question": "What is the highest number of points scored when Acadie-Bathurst had 4 tied games, less than 257 goals, and over 72 games played?"
} |
### QUESTION
Who was the Semi-Finalist #2 in 2001?
### CONTEXT
CREATE TABLE table_name_26 (semi_finalist__number2 VARCHAR, year VARCHAR)
### ANSWER
SELECT semi_finalist__number2 FROM table_name_26 WHERE year = "2001" | {
"answer": "SELECT semi_finalist__number2 FROM table_name_26 WHERE year = \"2001\"",
"context": "CREATE TABLE table_name_26 (semi_finalist__number2 VARCHAR, year VARCHAR)",
"question": "Who was the Semi-Finalist #2 in 2001?"
} |
### QUESTION
Name the sprint classification for michael barry
### CONTEXT
CREATE TABLE table_23944514_15 (sprint_classification VARCHAR, aggressive_rider VARCHAR)
### ANSWER
SELECT sprint_classification FROM table_23944514_15 WHERE aggressive_rider = "Michael Barry" | {
"answer": "SELECT sprint_classification FROM table_23944514_15 WHERE aggressive_rider = \"Michael Barry\"",
"context": "CREATE TABLE table_23944514_15 (sprint_classification VARCHAR, aggressive_rider VARCHAR)",
"question": "Name the sprint classification for michael barry"
} |
### QUESTION
what is the episode # for production code 227
### CONTEXT
CREATE TABLE table_10269427_3 (episode__number VARCHAR, production_code VARCHAR)
### ANSWER
SELECT episode__number FROM table_10269427_3 WHERE production_code = 227 | {
"answer": "SELECT episode__number FROM table_10269427_3 WHERE production_code = 227",
"context": "CREATE TABLE table_10269427_3 (episode__number VARCHAR, production_code VARCHAR)",
"question": "what is the episode # for production code 227"
} |
### QUESTION
When did the Prime Minister of Italy take office?
### CONTEXT
CREATE TABLE table_10026563_1 (entered_office_as_head_of_state_or_government VARCHAR, office VARCHAR)
### ANSWER
SELECT entered_office_as_head_of_state_or_government FROM table_10026563_1 WHERE office = "Prime Minister of Italy" | {
"answer": "SELECT entered_office_as_head_of_state_or_government FROM table_10026563_1 WHERE office = \"Prime Minister of Italy\"",
"context": "CREATE TABLE table_10026563_1 (entered_office_as_head_of_state_or_government VARCHAR, office VARCHAR)",
"question": "When did the Prime Minister of Italy take office?"
} |
### QUESTION
Which person has an expiring term of December 31, 2020, and has Terry Branstad as the appointing governor?
### CONTEXT
CREATE TABLE table_name_8 (name VARCHAR, term_expires VARCHAR, appointing_governor VARCHAR)
### ANSWER
SELECT name FROM table_name_8 WHERE term_expires = "december 31, 2020" AND appointing_governor = "terry branstad" | {
"answer": "SELECT name FROM table_name_8 WHERE term_expires = \"december 31, 2020\" AND appointing_governor = \"terry branstad\"",
"context": "CREATE TABLE table_name_8 (name VARCHAR, term_expires VARCHAR, appointing_governor VARCHAR)",
"question": "Which person has an expiring term of December 31, 2020, and has Terry Branstad as the appointing governor?"
} |
### QUESTION
Which storm has a clash of 3 and a dance of 4?
### CONTEXT
CREATE TABLE table_name_58 (storm VARCHAR, dance VARCHAR, clash VARCHAR)
### ANSWER
SELECT storm FROM table_name_58 WHERE dance = "4" AND clash = "3" | {
"answer": "SELECT storm FROM table_name_58 WHERE dance = \"4\" AND clash = \"3\"",
"context": "CREATE TABLE table_name_58 (storm VARCHAR, dance VARCHAR, clash VARCHAR)",
"question": "Which storm has a clash of 3 and a dance of 4?"
} |
### QUESTION
With order number 7 and the theme is Motown, who were the original artists?
### CONTEXT
CREATE TABLE table_21501565_1 (original_artist VARCHAR, order__number VARCHAR, theme VARCHAR)
### ANSWER
SELECT original_artist FROM table_21501565_1 WHERE order__number = "7" AND theme = "Motown" | {
"answer": "SELECT original_artist FROM table_21501565_1 WHERE order__number = \"7\" AND theme = \"Motown\"",
"context": "CREATE TABLE table_21501565_1 (original_artist VARCHAR, order__number VARCHAR, theme VARCHAR)",
"question": "With order number 7 and the theme is Motown, who were the original artists?"
} |
### QUESTION
Which club has a League of american basketball association, and a Venue of tba?
### CONTEXT
CREATE TABLE table_name_86 (club VARCHAR, league VARCHAR, venue VARCHAR)
### ANSWER
SELECT club FROM table_name_86 WHERE league = "american basketball association" AND venue = "tba" | {
"answer": "SELECT club FROM table_name_86 WHERE league = \"american basketball association\" AND venue = \"tba\"",
"context": "CREATE TABLE table_name_86 (club VARCHAR, league VARCHAR, venue VARCHAR)",
"question": "Which club has a League of american basketball association, and a Venue of tba?"
} |
### QUESTION
What is the tournament on February 17, 2002?
### CONTEXT
CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR)
### ANSWER
SELECT tournament FROM table_name_21 WHERE date = "february 17, 2002" | {
"answer": "SELECT tournament FROM table_name_21 WHERE date = \"february 17, 2002\"",
"context": "CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR)",
"question": "What is the tournament on February 17, 2002?"
} |
### QUESTION
What was the percentage in Manitoba in 2011?
### CONTEXT
CREATE TABLE table_1717824_1 (_percentage_2011 VARCHAR, province VARCHAR)
### ANSWER
SELECT _percentage_2011 FROM table_1717824_1 WHERE province = "Manitoba" | {
"answer": "SELECT _percentage_2011 FROM table_1717824_1 WHERE province = \"Manitoba\"",
"context": "CREATE TABLE table_1717824_1 (_percentage_2011 VARCHAR, province VARCHAR)",
"question": "What was the percentage in Manitoba in 2011?"
} |
### QUESTION
In what stage did Jaime Vergara won, Team Classification was given to EPM-Une and Mountain Classification winner was Oscar Solis?
### CONTEXT
CREATE TABLE table_28853064_15 (stage VARCHAR, winner VARCHAR, team_classification VARCHAR, mountains_classification VARCHAR)
### ANSWER
SELECT stage FROM table_28853064_15 WHERE team_classification = "EPM-UNE" AND mountains_classification = "Oscar Solis" AND winner = "Jaime Vergara" | {
"answer": "SELECT stage FROM table_28853064_15 WHERE team_classification = \"EPM-UNE\" AND mountains_classification = \"Oscar Solis\" AND winner = \"Jaime Vergara\"",
"context": "CREATE TABLE table_28853064_15 (stage VARCHAR, winner VARCHAR, team_classification VARCHAR, mountains_classification VARCHAR)",
"question": "In what stage did Jaime Vergara won, Team Classification was given to EPM-Une and Mountain Classification winner was Oscar Solis?"
} |
### QUESTION
What are the duration of the longest and shortest pop tracks in milliseconds?
### CONTEXT
CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)
### ANSWER
SELECT MAX(Milliseconds), MIN(Milliseconds) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Pop" | {
"answer": "SELECT MAX(Milliseconds), MIN(Milliseconds) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = \"Pop\"",
"context": "CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)",
"question": "What are the duration of the longest and shortest pop tracks in milliseconds?"
} |
### QUESTION
Which Water (sqmi) has a County of benson, and an ANSI code smaller than 1759243?
### CONTEXT
CREATE TABLE table_name_13 (water__sqmi_ INTEGER, county VARCHAR, ansi_code VARCHAR)
### ANSWER
SELECT MIN(water__sqmi_) FROM table_name_13 WHERE county = "benson" AND ansi_code < 1759243 | {
"answer": "SELECT MIN(water__sqmi_) FROM table_name_13 WHERE county = \"benson\" AND ansi_code < 1759243",
"context": "CREATE TABLE table_name_13 (water__sqmi_ INTEGER, county VARCHAR, ansi_code VARCHAR)",
"question": "Which Water (sqmi) has a County of benson, and an ANSI code smaller than 1759243?"
} |
### QUESTION
What was the net power, when the type was wwer-440/230, and when construction was finished on 24.10.1977?
### CONTEXT
CREATE TABLE table_name_74 (net_power VARCHAR, type VARCHAR, finish_construction VARCHAR)
### ANSWER
SELECT net_power FROM table_name_74 WHERE type = "wwer-440/230" AND finish_construction = "24.10.1977" | {
"answer": "SELECT net_power FROM table_name_74 WHERE type = \"wwer-440/230\" AND finish_construction = \"24.10.1977\"",
"context": "CREATE TABLE table_name_74 (net_power VARCHAR, type VARCHAR, finish_construction VARCHAR)",
"question": "What was the net power, when the type was wwer-440/230, and when construction was finished on 24.10.1977?"
} |
### QUESTION
What is the percentage of literate people where india is andaman and Nicobar Islands?
### CONTEXT
CREATE TABLE table_14598_9 (literate_persons___percentage_ VARCHAR, india_state_ut VARCHAR)
### ANSWER
SELECT literate_persons___percentage_ FROM table_14598_9 WHERE india_state_ut = "Andaman and Nicobar Islands" | {
"answer": "SELECT literate_persons___percentage_ FROM table_14598_9 WHERE india_state_ut = \"Andaman and Nicobar Islands\"",
"context": "CREATE TABLE table_14598_9 (literate_persons___percentage_ VARCHAR, india_state_ut VARCHAR)",
"question": "What is the percentage of literate people where india is andaman and Nicobar Islands?"
} |
### QUESTION
What was the name for the race in the Miramas circuit?
### CONTEXT
CREATE TABLE table_name_31 (name VARCHAR, circuit VARCHAR)
### ANSWER
SELECT name FROM table_name_31 WHERE circuit = "miramas" | {
"answer": "SELECT name FROM table_name_31 WHERE circuit = \"miramas\"",
"context": "CREATE TABLE table_name_31 (name VARCHAR, circuit VARCHAR)",
"question": "What was the name for the race in the Miramas circuit?"
} |
### QUESTION
What is the document status description of the document with id 1?
### CONTEXT
CREATE TABLE Documents (Id VARCHAR); CREATE TABLE Ref_Document_Status (Id VARCHAR)
### ANSWER
SELECT Ref_Document_Status.document_status_description FROM Ref_Document_Status JOIN Documents ON Documents.document_status_code = Ref_Document_Status.document_status_code WHERE Documents.document_id = 1 | {
"answer": "SELECT Ref_Document_Status.document_status_description FROM Ref_Document_Status JOIN Documents ON Documents.document_status_code = Ref_Document_Status.document_status_code WHERE Documents.document_id = 1",
"context": "CREATE TABLE Documents (Id VARCHAR); CREATE TABLE Ref_Document_Status (Id VARCHAR)",
"question": "What is the document status description of the document with id 1?"
} |
### QUESTION
What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 larger than 47.91, for propylene, and an Upper index MJ/ Nm 3 larger than 77.04?
### CONTEXT
CREATE TABLE table_name_1 (upper_index_kcal__nm_3 INTEGER, upper_index_mj__nm_3 VARCHAR, lower_index_mj__nm_3 VARCHAR, fuel_gas VARCHAR)
### ANSWER
SELECT SUM(upper_index_kcal__nm_3) FROM table_name_1 WHERE lower_index_mj__nm_3 > 47.91 AND fuel_gas = "propylene" AND upper_index_mj__nm_3 > 77.04 | {
"answer": "SELECT SUM(upper_index_kcal__nm_3) FROM table_name_1 WHERE lower_index_mj__nm_3 > 47.91 AND fuel_gas = \"propylene\" AND upper_index_mj__nm_3 > 77.04",
"context": "CREATE TABLE table_name_1 (upper_index_kcal__nm_3 INTEGER, upper_index_mj__nm_3 VARCHAR, lower_index_mj__nm_3 VARCHAR, fuel_gas VARCHAR)",
"question": "What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 larger than 47.91, for propylene, and an Upper index MJ/ Nm 3 larger than 77.04?"
} |
### QUESTION
Name the least game for october 10 at shibe park
### CONTEXT
CREATE TABLE table_name_5 (game INTEGER, location VARCHAR, date VARCHAR)
### ANSWER
SELECT MIN(game) FROM table_name_5 WHERE location = "shibe park" AND date = "october 10" | {
"answer": "SELECT MIN(game) FROM table_name_5 WHERE location = \"shibe park\" AND date = \"october 10\"",
"context": "CREATE TABLE table_name_5 (game INTEGER, location VARCHAR, date VARCHAR)",
"question": "Name the least game for october 10 at shibe park"
} |
### QUESTION
Who were the Brazil scorers for the World Cup Competition with a 1-2 score?
### CONTEXT
CREATE TABLE table_name_18 (brazil_scorers VARCHAR, competition VARCHAR, score VARCHAR)
### ANSWER
SELECT brazil_scorers FROM table_name_18 WHERE competition = "world cup" AND score = "1-2" | {
"answer": "SELECT brazil_scorers FROM table_name_18 WHERE competition = \"world cup\" AND score = \"1-2\"",
"context": "CREATE TABLE table_name_18 (brazil_scorers VARCHAR, competition VARCHAR, score VARCHAR)",
"question": "Who were the Brazil scorers for the World Cup Competition with a 1-2 score?"
} |
### QUESTION
Who's in the high assists with a w 97β94 (ot) score?
### CONTEXT
CREATE TABLE table_27721131_2 (high_assists VARCHAR, score VARCHAR)
### ANSWER
SELECT high_assists FROM table_27721131_2 WHERE score = "W 97β94 (OT)" | {
"answer": "SELECT high_assists FROM table_27721131_2 WHERE score = \"W 97β94 (OT)\"",
"context": "CREATE TABLE table_27721131_2 (high_assists VARCHAR, score VARCHAR)",
"question": "Who's in the high assists with a w 97β94 (ot) score?"
} |
### QUESTION
List all the results for mahmoud ahmadinejad when candidate mir-hossein mousavi obtained 218481 votes.
### CONTEXT
CREATE TABLE table_23390604_1 (mahmoud_ahmadinejad VARCHAR, mir_hossein_mousavi VARCHAR)
### ANSWER
SELECT mahmoud_ahmadinejad FROM table_23390604_1 WHERE mir_hossein_mousavi = 218481 | {
"answer": "SELECT mahmoud_ahmadinejad FROM table_23390604_1 WHERE mir_hossein_mousavi = 218481",
"context": "CREATE TABLE table_23390604_1 (mahmoud_ahmadinejad VARCHAR, mir_hossein_mousavi VARCHAR)",
"question": "List all the results for mahmoud ahmadinejad when candidate mir-hossein mousavi obtained 218481 votes."
} |
### QUESTION
Which Home has a Visitor of quebec nordiques, and a Score of 3β4, and a Record of 8β8β1?
### CONTEXT
CREATE TABLE table_name_62 (home VARCHAR, record VARCHAR, visitor VARCHAR, score VARCHAR)
### ANSWER
SELECT home FROM table_name_62 WHERE visitor = "quebec nordiques" AND score = "3β4" AND record = "8β8β1" | {
"answer": "SELECT home FROM table_name_62 WHERE visitor = \"quebec nordiques\" AND score = \"3β4\" AND record = \"8β8β1\"",
"context": "CREATE TABLE table_name_62 (home VARCHAR, record VARCHAR, visitor VARCHAR, score VARCHAR)",
"question": "Which Home has a Visitor of quebec nordiques, and a Score of 3β4, and a Record of 8β8β1?"
} |
### QUESTION
What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is Yes?
### CONTEXT
CREATE TABLE table_name_19 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)
### ANSWER
SELECT reserved_instruments FROM table_name_19 WHERE conduct_of_litigation = "yes" AND probate_activities = "yes" | {
"answer": "SELECT reserved_instruments FROM table_name_19 WHERE conduct_of_litigation = \"yes\" AND probate_activities = \"yes\"",
"context": "CREATE TABLE table_name_19 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)",
"question": "What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is Yes?"
} |
### QUESTION
What is the average year with an award of platinum?
### CONTEXT
CREATE TABLE table_name_44 (year INTEGER, award_description_s_ VARCHAR)
### ANSWER
SELECT AVG(year) FROM table_name_44 WHERE award_description_s_ = "platinum" | {
"answer": "SELECT AVG(year) FROM table_name_44 WHERE award_description_s_ = \"platinum\"",
"context": "CREATE TABLE table_name_44 (year INTEGER, award_description_s_ VARCHAR)",
"question": "What is the average year with an award of platinum?"
} |
### QUESTION
Find the organisation type description of the organisation detailed as 'quo'.
### CONTEXT
CREATE TABLE Organisations (organisation_type VARCHAR, organisation_details VARCHAR); CREATE TABLE organisation_Types (organisation_type_description VARCHAR, organisation_type VARCHAR)
### ANSWER
SELECT T1.organisation_type_description FROM organisation_Types AS T1 JOIN Organisations AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_details = 'quo' | {
"answer": "SELECT T1.organisation_type_description FROM organisation_Types AS T1 JOIN Organisations AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_details = 'quo'",
"context": "CREATE TABLE Organisations (organisation_type VARCHAR, organisation_details VARCHAR); CREATE TABLE organisation_Types (organisation_type_description VARCHAR, organisation_type VARCHAR)",
"question": "Find the organisation type description of the organisation detailed as 'quo'."
} |
### QUESTION
what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547?
### CONTEXT
CREATE TABLE table_name_89 (year INTEGER, earnings___$__ VARCHAR, tournaments_played VARCHAR, cuts_made VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_89 WHERE tournaments_played < 2 AND cuts_made = 1 AND earnings___$__ < 10 OFFSET 547 | {
"answer": "SELECT SUM(year) FROM table_name_89 WHERE tournaments_played < 2 AND cuts_made = 1 AND earnings___$__ < 10 OFFSET 547",
"context": "CREATE TABLE table_name_89 (year INTEGER, earnings___$__ VARCHAR, tournaments_played VARCHAR, cuts_made VARCHAR)",
"question": "what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547?"
} |
### QUESTION
Which Incumbent has a District of California 5?
### CONTEXT
CREATE TABLE table_name_99 (incumbent VARCHAR, district VARCHAR)
### ANSWER
SELECT incumbent FROM table_name_99 WHERE district = "california 5" | {
"answer": "SELECT incumbent FROM table_name_99 WHERE district = \"california 5\"",
"context": "CREATE TABLE table_name_99 (incumbent VARCHAR, district VARCHAR)",
"question": "Which Incumbent has a District of California 5?"
} |
### QUESTION
WHich Tournament has a Partnering of diego pΓ©rez and a Opponents in the final of christer allgardh carl limberger?
### CONTEXT
CREATE TABLE table_name_39 (tournament VARCHAR, partnering VARCHAR, opponents_in_the_final VARCHAR)
### ANSWER
SELECT tournament FROM table_name_39 WHERE partnering = "diego pΓ©rez" AND opponents_in_the_final = "christer allgardh carl limberger" | {
"answer": "SELECT tournament FROM table_name_39 WHERE partnering = \"diego pΓ©rez\" AND opponents_in_the_final = \"christer allgardh carl limberger\"",
"context": "CREATE TABLE table_name_39 (tournament VARCHAR, partnering VARCHAR, opponents_in_the_final VARCHAR)",
"question": "WHich Tournament has a Partnering of diego pΓ©rez and a Opponents in the final of christer allgardh carl limberger?"
} |
### QUESTION
What's the total for the wc belgrade event with 10 rank points?
### CONTEXT
CREATE TABLE table_name_3 (total VARCHAR, event VARCHAR, rank_points VARCHAR)
### ANSWER
SELECT total FROM table_name_3 WHERE event = "wc belgrade" AND rank_points = "10" | {
"answer": "SELECT total FROM table_name_3 WHERE event = \"wc belgrade\" AND rank_points = \"10\"",
"context": "CREATE TABLE table_name_3 (total VARCHAR, event VARCHAR, rank_points VARCHAR)",
"question": "What's the total for the wc belgrade event with 10 rank points?"
} |
### QUESTION
What were the points per game in the selection where the rebounds per game were 15.0?
### CONTEXT
CREATE TABLE table_25774493_3 (points_per_game VARCHAR, rebounds_per_game VARCHAR)
### ANSWER
SELECT points_per_game FROM table_25774493_3 WHERE rebounds_per_game = "15.0" | {
"answer": "SELECT points_per_game FROM table_25774493_3 WHERE rebounds_per_game = \"15.0\"",
"context": "CREATE TABLE table_25774493_3 (points_per_game VARCHAR, rebounds_per_game VARCHAR)",
"question": "What were the points per game in the selection where the rebounds per game were 15.0?"
} |
### QUESTION
Show the document id with paragraph text 'Brazil' and 'Ireland'.
### CONTEXT
CREATE TABLE Paragraphs (document_id VARCHAR, paragraph_text VARCHAR)
### ANSWER
SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Brazil' INTERSECT SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Ireland' | {
"answer": "SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Brazil' INTERSECT SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Ireland'",
"context": "CREATE TABLE Paragraphs (document_id VARCHAR, paragraph_text VARCHAR)",
"question": "Show the document id with paragraph text 'Brazil' and 'Ireland'."
} |
### QUESTION
What is the highest block that has 15.09.1981 as the date, and a height greater than 202?
### CONTEXT
CREATE TABLE table_name_76 (block INTEGER, date_of_birth VARCHAR, height VARCHAR)
### ANSWER
SELECT MAX(block) FROM table_name_76 WHERE date_of_birth = "15.09.1981" AND height > 202 | {
"answer": "SELECT MAX(block) FROM table_name_76 WHERE date_of_birth = \"15.09.1981\" AND height > 202",
"context": "CREATE TABLE table_name_76 (block INTEGER, date_of_birth VARCHAR, height VARCHAR)",
"question": "What is the highest block that has 15.09.1981 as the date, and a height greater than 202?"
} |
### QUESTION
What is the Date of the Middlesbrough Home game?
### CONTEXT
CREATE TABLE table_name_42 (date VARCHAR, home_team VARCHAR)
### ANSWER
SELECT date FROM table_name_42 WHERE home_team = "middlesbrough" | {
"answer": "SELECT date FROM table_name_42 WHERE home_team = \"middlesbrough\"",
"context": "CREATE TABLE table_name_42 (date VARCHAR, home_team VARCHAR)",
"question": "What is the Date of the Middlesbrough Home game?"
} |
### QUESTION
Who was the rider who had less than 30 laps, ended in an accident with a car manufactured by yamaha on a grid larger than 3?
### CONTEXT
CREATE TABLE table_name_30 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, manufacturer VARCHAR)
### ANSWER
SELECT rider FROM table_name_30 WHERE laps < 30 AND manufacturer = "yamaha" AND time = "accident" AND grid > 3 | {
"answer": "SELECT rider FROM table_name_30 WHERE laps < 30 AND manufacturer = \"yamaha\" AND time = \"accident\" AND grid > 3",
"context": "CREATE TABLE table_name_30 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, manufacturer VARCHAR)",
"question": "Who was the rider who had less than 30 laps, ended in an accident with a car manufactured by yamaha on a grid larger than 3?"
} |
### QUESTION
What is the current version of windows 8 with an RTM build of 9200?
### CONTEXT
CREATE TABLE table_name_14 (current_version VARCHAR, rtm_build VARCHAR, name VARCHAR)
### ANSWER
SELECT current_version FROM table_name_14 WHERE rtm_build = "9200" AND name = "windows 8" | {
"answer": "SELECT current_version FROM table_name_14 WHERE rtm_build = \"9200\" AND name = \"windows 8\"",
"context": "CREATE TABLE table_name_14 (current_version VARCHAR, rtm_build VARCHAR, name VARCHAR)",
"question": "What is the current version of windows 8 with an RTM build of 9200?"
} |
### QUESTION
what is the total number of seats 2006 that has parties and voter turnout in % and whose %2006 is greater than 51.5?
### CONTEXT
CREATE TABLE table_name_33 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR)
### ANSWER
SELECT SUM(seats_2006) FROM table_name_33 WHERE parties_and_voter_communities = "voter turnout in %" AND _percentage_2006 > 51.5 | {
"answer": "SELECT SUM(seats_2006) FROM table_name_33 WHERE parties_and_voter_communities = \"voter turnout in %\" AND _percentage_2006 > 51.5",
"context": "CREATE TABLE table_name_33 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR)",
"question": "what is the total number of seats 2006 that has parties and voter turnout in % and whose %2006 is greater than 51.5?"
} |
### QUESTION
Show the Thai name of wan phruehatsabodi?
### CONTEXT
CREATE TABLE table_name_29 (thai_name VARCHAR, transcription VARCHAR)
### ANSWER
SELECT thai_name FROM table_name_29 WHERE transcription = "wan phruehatsabodi" | {
"answer": "SELECT thai_name FROM table_name_29 WHERE transcription = \"wan phruehatsabodi\"",
"context": "CREATE TABLE table_name_29 (thai_name VARCHAR, transcription VARCHAR)",
"question": "Show the Thai name of wan phruehatsabodi?"
} |
### QUESTION
What is the lowest number of Laps that have a Time of +24.440, and a Grid higher than 18?
### CONTEXT
CREATE TABLE table_name_39 (laps INTEGER, time VARCHAR, grid VARCHAR)
### ANSWER
SELECT MIN(laps) FROM table_name_39 WHERE time = "+24.440" AND grid > 18 | {
"answer": "SELECT MIN(laps) FROM table_name_39 WHERE time = \"+24.440\" AND grid > 18",
"context": "CREATE TABLE table_name_39 (laps INTEGER, time VARCHAR, grid VARCHAR)",
"question": "What is the lowest number of Laps that have a Time of +24.440, and a Grid higher than 18?"
} |
### QUESTION
List all the locations where net capacity is 950?
### CONTEXT
CREATE TABLE table_213088_1 (location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ VARCHAR, net_capacity__mw_ VARCHAR)
### ANSWER
SELECT location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ FROM table_213088_1 WHERE net_capacity__mw_ = 950 | {
"answer": "SELECT location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ FROM table_213088_1 WHERE net_capacity__mw_ = 950",
"context": "CREATE TABLE table_213088_1 (location_chernobyl_1_chernobyl_2_chernobyl_3_chernobyl_4_chernobyl_5_ignalina_1_ignalina_2_ignalina_3_kursk_1_kursk_2_kursk_3_kursk_4_kursk_5_kursk_6_leningrad_1_leningrad_2_leningrad_3_leningrad_4_smolensk_1_smolensk_2_smolensk_3_smolensk_4_directorate_for_construction_of_kostoma_npp__for_kostroma_1_and_2__table_31_technology_and_soviet_energy_availability___november_1981___ntis_order__numberpb82_133455__for_ignalina_4_ VARCHAR, net_capacity__mw_ VARCHAR)",
"question": "List all the locations where net capacity is 950?"
} |
Subsets and Splits