text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
What is the maximum lost with points 1 more than 58 and 66 goals against?
### CONTEXT
CREATE TABLE table_name_9 (lost INTEGER, points_1 VARCHAR, goals_against VARCHAR)
### ANSWER
SELECT MAX(lost) FROM table_name_9 WHERE points_1 > 58 AND goals_against = 66
|
{
"answer": "SELECT MAX(lost) FROM table_name_9 WHERE points_1 > 58 AND goals_against = 66",
"context": "CREATE TABLE table_name_9 (lost INTEGER, points_1 VARCHAR, goals_against VARCHAR)",
"question": "What is the maximum lost with points 1 more than 58 and 66 goals against?"
}
|
### QUESTION
When relay is the station type and 5kw is the power kw what is the branding?
### CONTEXT
CREATE TABLE table_23394920_1 (branding VARCHAR, power_kw VARCHAR, station_type VARCHAR)
### ANSWER
SELECT branding FROM table_23394920_1 WHERE power_kw = "5kW" AND station_type = "Relay"
|
{
"answer": "SELECT branding FROM table_23394920_1 WHERE power_kw = \"5kW\" AND station_type = \"Relay\"",
"context": "CREATE TABLE table_23394920_1 (branding VARCHAR, power_kw VARCHAR, station_type VARCHAR)",
"question": "When relay is the station type and 5kw is the power kw what is the branding?"
}
|
### QUESTION
Who were the original artist(s) on harder to breathe?
### CONTEXT
CREATE TABLE table_28715942_2 (original_artist VARCHAR, track VARCHAR)
### ANSWER
SELECT original_artist FROM table_28715942_2 WHERE track = "Harder To Breathe"
|
{
"answer": "SELECT original_artist FROM table_28715942_2 WHERE track = \"Harder To Breathe\"",
"context": "CREATE TABLE table_28715942_2 (original_artist VARCHAR, track VARCHAR)",
"question": "Who were the original artist(s) on harder to breathe?"
}
|
### QUESTION
What is the highest Win #, when Winner is "Knoxville Cherokees", when Playoff Result is "Lost 1st Round ( LOU )", and when Points is less than 94?
### CONTEXT
CREATE TABLE table_name_87 (win__number INTEGER, points VARCHAR, winner VARCHAR, playoff_result VARCHAR)
### ANSWER
SELECT MAX(win__number) FROM table_name_87 WHERE winner = "knoxville cherokees" AND playoff_result = "lost 1st round ( lou )" AND points < 94
|
{
"answer": "SELECT MAX(win__number) FROM table_name_87 WHERE winner = \"knoxville cherokees\" AND playoff_result = \"lost 1st round ( lou )\" AND points < 94",
"context": "CREATE TABLE table_name_87 (win__number INTEGER, points VARCHAR, winner VARCHAR, playoff_result VARCHAR)",
"question": "What is the highest Win #, when Winner is \"Knoxville Cherokees\", when Playoff Result is \"Lost 1st Round ( LOU )\", and when Points is less than 94?"
}
|
### QUESTION
What day did the Diamondbacks go 2-7?
### CONTEXT
CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR, score VARCHAR)
### ANSWER
SELECT date FROM table_name_92 WHERE opponent = "diamondbacks" AND score = "2-7"
|
{
"answer": "SELECT date FROM table_name_92 WHERE opponent = \"diamondbacks\" AND score = \"2-7\"",
"context": "CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR, score VARCHAR)",
"question": "What day did the Diamondbacks go 2-7?"
}
|
### QUESTION
what is the number of teams where conmebol 1996 did not qualify?
### CONTEXT
CREATE TABLE table_14310205_1 (team VARCHAR, conmebol_1996 VARCHAR)
### ANSWER
SELECT COUNT(team) FROM table_14310205_1 WHERE conmebol_1996 = "did not qualify"
|
{
"answer": "SELECT COUNT(team) FROM table_14310205_1 WHERE conmebol_1996 = \"did not qualify\"",
"context": "CREATE TABLE table_14310205_1 (team VARCHAR, conmebol_1996 VARCHAR)",
"question": "what is the number of teams where conmebol 1996 did not qualify?"
}
|
### QUESTION
WHAT IS THE SIXTH WITH A SECOND OF WHITE LIES?
### CONTEXT
CREATE TABLE table_name_66 (sixth VARCHAR, second VARCHAR)
### ANSWER
SELECT sixth FROM table_name_66 WHERE second = "white lies"
|
{
"answer": "SELECT sixth FROM table_name_66 WHERE second = \"white lies\"",
"context": "CREATE TABLE table_name_66 (sixth VARCHAR, second VARCHAR)",
"question": "WHAT IS THE SIXTH WITH A SECOND OF WHITE LIES?"
}
|
### QUESTION
Find the first name and gpa of the students whose gpa is lower than the average gpa of all students.
### CONTEXT
CREATE TABLE student (stu_fname VARCHAR, stu_gpa INTEGER)
### ANSWER
SELECT stu_fname, stu_gpa FROM student WHERE stu_gpa < (SELECT AVG(stu_gpa) FROM student)
|
{
"answer": "SELECT stu_fname, stu_gpa FROM student WHERE stu_gpa < (SELECT AVG(stu_gpa) FROM student)",
"context": "CREATE TABLE student (stu_fname VARCHAR, stu_gpa INTEGER)",
"question": "Find the first name and gpa of the students whose gpa is lower than the average gpa of all students."
}
|
### QUESTION
What is the rad number for the dead end in rank 22?
### CONTEXT
CREATE TABLE table_name_75 (road_number VARCHAR, type VARCHAR, rank VARCHAR)
### ANSWER
SELECT road_number FROM table_name_75 WHERE type = "dead end" AND rank = "22"
|
{
"answer": "SELECT road_number FROM table_name_75 WHERE type = \"dead end\" AND rank = \"22\"",
"context": "CREATE TABLE table_name_75 (road_number VARCHAR, type VARCHAR, rank VARCHAR)",
"question": "What is the rad number for the dead end in rank 22?"
}
|
### QUESTION
Name the broadcast day and timings for tv saitama
### CONTEXT
CREATE TABLE table_21076286_2 (broadcast_day_and_timings__in_jst__ VARCHAR, broadcast_network VARCHAR)
### ANSWER
SELECT broadcast_day_and_timings__in_jst__ FROM table_21076286_2 WHERE broadcast_network = "TV Saitama"
|
{
"answer": "SELECT broadcast_day_and_timings__in_jst__ FROM table_21076286_2 WHERE broadcast_network = \"TV Saitama\"",
"context": "CREATE TABLE table_21076286_2 (broadcast_day_and_timings__in_jst__ VARCHAR, broadcast_network VARCHAR)",
"question": "Name the broadcast day and timings for tv saitama"
}
|
### QUESTION
What is the Location and Attendance with a Record of 21–22?
### CONTEXT
CREATE TABLE table_name_16 (location_attendance VARCHAR, record VARCHAR)
### ANSWER
SELECT location_attendance FROM table_name_16 WHERE record = "21–22"
|
{
"answer": "SELECT location_attendance FROM table_name_16 WHERE record = \"21–22\"",
"context": "CREATE TABLE table_name_16 (location_attendance VARCHAR, record VARCHAR)",
"question": "What is the Location and Attendance with a Record of 21–22?"
}
|
### QUESTION
What is the Date when christophe rochus was partner, and the score was 2–6, 7–6 (7–5) , 0–6?
### CONTEXT
CREATE TABLE table_name_97 (date VARCHAR, partner VARCHAR, score VARCHAR)
### ANSWER
SELECT date FROM table_name_97 WHERE partner = "christophe rochus" AND score = "2–6, 7–6 (7–5) , 0–6"
|
{
"answer": "SELECT date FROM table_name_97 WHERE partner = \"christophe rochus\" AND score = \"2–6, 7–6 (7–5) , 0–6\"",
"context": "CREATE TABLE table_name_97 (date VARCHAR, partner VARCHAR, score VARCHAR)",
"question": "What is the Date when christophe rochus was partner, and the score was 2–6, 7–6 (7–5) , 0–6?"
}
|
### QUESTION
What was the result of Declan Donnellan's nomination?
### CONTEXT
CREATE TABLE table_name_23 (result VARCHAR, nominee VARCHAR)
### ANSWER
SELECT result FROM table_name_23 WHERE nominee = "declan donnellan"
|
{
"answer": "SELECT result FROM table_name_23 WHERE nominee = \"declan donnellan\"",
"context": "CREATE TABLE table_name_23 (result VARCHAR, nominee VARCHAR)",
"question": "What was the result of Declan Donnellan's nomination?"
}
|
### QUESTION
What is the highest round of a player from Sweden who plays right wing?
### CONTEXT
CREATE TABLE table_name_59 (round INTEGER, nationality VARCHAR, position VARCHAR)
### ANSWER
SELECT MAX(round) FROM table_name_59 WHERE nationality = "sweden" AND position = "right wing"
|
{
"answer": "SELECT MAX(round) FROM table_name_59 WHERE nationality = \"sweden\" AND position = \"right wing\"",
"context": "CREATE TABLE table_name_59 (round INTEGER, nationality VARCHAR, position VARCHAR)",
"question": "What is the highest round of a player from Sweden who plays right wing?"
}
|
### QUESTION
What is the Catalog when the format is ed remaster cd, and a Label of village records, and a Date of march 13, 2002?
### CONTEXT
CREATE TABLE table_name_1 (catalog VARCHAR, date VARCHAR, format VARCHAR, label VARCHAR)
### ANSWER
SELECT catalog FROM table_name_1 WHERE format = "ed remaster cd" AND label = "village records" AND date = "march 13, 2002"
|
{
"answer": "SELECT catalog FROM table_name_1 WHERE format = \"ed remaster cd\" AND label = \"village records\" AND date = \"march 13, 2002\"",
"context": "CREATE TABLE table_name_1 (catalog VARCHAR, date VARCHAR, format VARCHAR, label VARCHAR)",
"question": "What is the Catalog when the format is ed remaster cd, and a Label of village records, and a Date of march 13, 2002?"
}
|
### QUESTION
Name the rufus guest for 15 december 2008
### CONTEXT
CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, first_broadcast VARCHAR)
### ANSWER
SELECT COUNT(rufus_guest) FROM table_19930660_1 WHERE first_broadcast = "15 December 2008"
|
{
"answer": "SELECT COUNT(rufus_guest) FROM table_19930660_1 WHERE first_broadcast = \"15 December 2008\"",
"context": "CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, first_broadcast VARCHAR)",
"question": "Name the rufus guest for 15 december 2008"
}
|
### QUESTION
display the department name and number of employees in each of the department.
### CONTEXT
CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (department_id VARCHAR)
### ANSWER
SELECT T2.department_name, COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id GROUP BY T2.department_name
|
{
"answer": "SELECT T2.department_name, COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id GROUP BY T2.department_name",
"context": "CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (department_id VARCHAR)",
"question": "display the department name and number of employees in each of the department."
}
|
### QUESTION
On what date did a friendly competition, hosted in Dubai, result in a draw?
### CONTEXT
CREATE TABLE table_name_79 (date VARCHAR, venue VARCHAR, result VARCHAR, competition VARCHAR)
### ANSWER
SELECT date FROM table_name_79 WHERE result = "draw" AND competition = "friendly" AND venue = "dubai"
|
{
"answer": "SELECT date FROM table_name_79 WHERE result = \"draw\" AND competition = \"friendly\" AND venue = \"dubai\"",
"context": "CREATE TABLE table_name_79 (date VARCHAR, venue VARCHAR, result VARCHAR, competition VARCHAR)",
"question": "On what date did a friendly competition, hosted in Dubai, result in a draw?"
}
|
### QUESTION
What are the names of representatives in descending order of votes?
### CONTEXT
CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)
### ANSWER
SELECT T2.Name FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY votes DESC
|
{
"answer": "SELECT T2.Name FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY votes DESC",
"context": "CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)",
"question": "What are the names of representatives in descending order of votes?"
}
|
### QUESTION
In the tie where Southampton was the away team, who was the home team?
### CONTEXT
CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)
### ANSWER
SELECT home_team FROM table_name_97 WHERE away_team = "southampton"
|
{
"answer": "SELECT home_team FROM table_name_97 WHERE away_team = \"southampton\"",
"context": "CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)",
"question": "In the tie where Southampton was the away team, who was the home team?"
}
|
### QUESTION
What is the country that has a place of T6 that Eduardo Romero plays for?
### CONTEXT
CREATE TABLE table_name_73 (country VARCHAR, place VARCHAR, player VARCHAR)
### ANSWER
SELECT country FROM table_name_73 WHERE place = "t6" AND player = "eduardo romero"
|
{
"answer": "SELECT country FROM table_name_73 WHERE place = \"t6\" AND player = \"eduardo romero\"",
"context": "CREATE TABLE table_name_73 (country VARCHAR, place VARCHAR, player VARCHAR)",
"question": "What is the country that has a place of T6 that Eduardo Romero plays for?"
}
|
### QUESTION
who had all the high rebounds when high assists is by dwyane wade (9)
### CONTEXT
CREATE TABLE table_13762472_4 (high_rebounds VARCHAR, high_assists VARCHAR)
### ANSWER
SELECT high_rebounds FROM table_13762472_4 WHERE high_assists = "Dwyane Wade (9)"
|
{
"answer": "SELECT high_rebounds FROM table_13762472_4 WHERE high_assists = \"Dwyane Wade (9)\"",
"context": "CREATE TABLE table_13762472_4 (high_rebounds VARCHAR, high_assists VARCHAR)",
"question": "who had all the high rebounds when high assists is by dwyane wade (9)"
}
|
### QUESTION
What is the name on the Republican ticket when the Workers ticket is edward lindgren?
### CONTEXT
CREATE TABLE table_name_63 (republican_ticket VARCHAR, workers_ticket VARCHAR)
### ANSWER
SELECT republican_ticket FROM table_name_63 WHERE workers_ticket = "edward lindgren"
|
{
"answer": "SELECT republican_ticket FROM table_name_63 WHERE workers_ticket = \"edward lindgren\"",
"context": "CREATE TABLE table_name_63 (republican_ticket VARCHAR, workers_ticket VARCHAR)",
"question": "What is the name on the Republican ticket when the Workers ticket is edward lindgren?"
}
|
### QUESTION
What was the time when the laps were smaller than 66 and the grid was 15?
### CONTEXT
CREATE TABLE table_name_62 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
### ANSWER
SELECT time_retired FROM table_name_62 WHERE laps < 66 AND grid = 15
|
{
"answer": "SELECT time_retired FROM table_name_62 WHERE laps < 66 AND grid = 15",
"context": "CREATE TABLE table_name_62 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)",
"question": "What was the time when the laps were smaller than 66 and the grid was 15?"
}
|
### QUESTION
How many players were drafted from the Boston Cannons in the round?
### CONTEXT
CREATE TABLE table_name_74 (round INTEGER, team VARCHAR)
### ANSWER
SELECT SUM(round) FROM table_name_74 WHERE team = "boston cannons"
|
{
"answer": "SELECT SUM(round) FROM table_name_74 WHERE team = \"boston cannons\"",
"context": "CREATE TABLE table_name_74 (round INTEGER, team VARCHAR)",
"question": "How many players were drafted from the Boston Cannons in the round?"
}
|
### QUESTION
How many countries were sampled for the index in 2nd place in the LA ranking and 23rd in the world ranking?
### CONTEXT
CREATE TABLE table_19948664_1 (countries_sampled VARCHAR, ranking_la__2_ VARCHAR, world_ranking__1_ VARCHAR)
### ANSWER
SELECT countries_sampled FROM table_19948664_1 WHERE ranking_la__2_ = "2nd" AND world_ranking__1_ = "23rd"
|
{
"answer": "SELECT countries_sampled FROM table_19948664_1 WHERE ranking_la__2_ = \"2nd\" AND world_ranking__1_ = \"23rd\"",
"context": "CREATE TABLE table_19948664_1 (countries_sampled VARCHAR, ranking_la__2_ VARCHAR, world_ranking__1_ VARCHAR)",
"question": "How many countries were sampled for the index in 2nd place in the LA ranking and 23rd in the world ranking?"
}
|
### QUESTION
When did the opponent knockout Barry Prior in more than 2 rounds?
### CONTEXT
CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR)
### ANSWER
SELECT date FROM table_name_53 WHERE method = "knockout" AND round > 2 AND opponent = "barry prior"
|
{
"answer": "SELECT date FROM table_name_53 WHERE method = \"knockout\" AND round > 2 AND opponent = \"barry prior\"",
"context": "CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR)",
"question": "When did the opponent knockout Barry Prior in more than 2 rounds?"
}
|
### QUESTION
How many no votes were there in the partial public funding of election campaigns legislation?
### CONTEXT
CREATE TABLE table_256286_63 (no_votes VARCHAR, description VARCHAR)
### ANSWER
SELECT no_votes FROM table_256286_63 WHERE description = "Partial public funding of election campaigns"
|
{
"answer": "SELECT no_votes FROM table_256286_63 WHERE description = \"Partial public funding of election campaigns\"",
"context": "CREATE TABLE table_256286_63 (no_votes VARCHAR, description VARCHAR)",
"question": "How many no votes were there in the partial public funding of election campaigns legislation?"
}
|
### QUESTION
What is the population for the Irish Name Leitir mealláin?
### CONTEXT
CREATE TABLE table_101196_1 (population VARCHAR, irish_name VARCHAR)
### ANSWER
SELECT population FROM table_101196_1 WHERE irish_name = "Leitir Mealláin"
|
{
"answer": "SELECT population FROM table_101196_1 WHERE irish_name = \"Leitir Mealláin\"",
"context": "CREATE TABLE table_101196_1 (population VARCHAR, irish_name VARCHAR)",
"question": "What is the population for the Irish Name Leitir mealláin?"
}
|
### QUESTION
What is the highest rank with the notes of sa/b, and a time of 6:39.07?
### CONTEXT
CREATE TABLE table_name_56 (rank INTEGER, notes VARCHAR, time VARCHAR)
### ANSWER
SELECT MAX(rank) FROM table_name_56 WHERE notes = "sa/b" AND time = "6:39.07"
|
{
"answer": "SELECT MAX(rank) FROM table_name_56 WHERE notes = \"sa/b\" AND time = \"6:39.07\"",
"context": "CREATE TABLE table_name_56 (rank INTEGER, notes VARCHAR, time VARCHAR)",
"question": "What is the highest rank with the notes of sa/b, and a time of 6:39.07?"
}
|
### QUESTION
Name the segment b for 167
### CONTEXT
CREATE TABLE table_15187735_13 (segment_b VARCHAR, episode VARCHAR)
### ANSWER
SELECT segment_b FROM table_15187735_13 WHERE episode = 167
|
{
"answer": "SELECT segment_b FROM table_15187735_13 WHERE episode = 167",
"context": "CREATE TABLE table_15187735_13 (segment_b VARCHAR, episode VARCHAR)",
"question": "Name the segment b for 167"
}
|
### QUESTION
In what Week resulting in the bottom 3 was Endre Jansen Partner?
### CONTEXT
CREATE TABLE table_name_97 (week INTEGER, result VARCHAR, partner VARCHAR)
### ANSWER
SELECT MAX(week) FROM table_name_97 WHERE result = "bottom 3" AND partner = "endre jansen"
|
{
"answer": "SELECT MAX(week) FROM table_name_97 WHERE result = \"bottom 3\" AND partner = \"endre jansen\"",
"context": "CREATE TABLE table_name_97 (week INTEGER, result VARCHAR, partner VARCHAR)",
"question": "In what Week resulting in the bottom 3 was Endre Jansen Partner?"
}
|
### QUESTION
What c class engine did philipp eng and team hs technik motorsport use?
### CONTEXT
CREATE TABLE table_name_2 (engine VARCHAR, driver VARCHAR, class VARCHAR, team VARCHAR)
### ANSWER
SELECT engine FROM table_name_2 WHERE class = "c" AND team = "hs technik motorsport" AND driver = "philipp eng"
|
{
"answer": "SELECT engine FROM table_name_2 WHERE class = \"c\" AND team = \"hs technik motorsport\" AND driver = \"philipp eng\"",
"context": "CREATE TABLE table_name_2 (engine VARCHAR, driver VARCHAR, class VARCHAR, team VARCHAR)",
"question": "What c class engine did philipp eng and team hs technik motorsport use?"
}
|
### QUESTION
What name was number 7 when Mason was number 1, Owen was number 6, Jackson was number 9, and Logan was number 10?
### CONTEXT
CREATE TABLE table_name_68 (no_7 VARCHAR, no_6 VARCHAR, no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR)
### ANSWER
SELECT no_7 FROM table_name_68 WHERE no_1 = "mason" AND no_9 = "jackson" AND no_10 = "logan" AND no_6 = "owen"
|
{
"answer": "SELECT no_7 FROM table_name_68 WHERE no_1 = \"mason\" AND no_9 = \"jackson\" AND no_10 = \"logan\" AND no_6 = \"owen\"",
"context": "CREATE TABLE table_name_68 (no_7 VARCHAR, no_6 VARCHAR, no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR)",
"question": "What name was number 7 when Mason was number 1, Owen was number 6, Jackson was number 9, and Logan was number 10?"
}
|
### QUESTION
What college, junior, or club team did defence player Rory Fitzpatrick play for?
### CONTEXT
CREATE TABLE table_name_81 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR)
### ANSWER
SELECT college_junior_club_team FROM table_name_81 WHERE position = "defence" AND player = "rory fitzpatrick"
|
{
"answer": "SELECT college_junior_club_team FROM table_name_81 WHERE position = \"defence\" AND player = \"rory fitzpatrick\"",
"context": "CREATE TABLE table_name_81 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR)",
"question": "What college, junior, or club team did defence player Rory Fitzpatrick play for?"
}
|
### QUESTION
What's the exposure fusion of Panoramaplus x4?
### CONTEXT
CREATE TABLE table_name_38 (exposure_fusion VARCHAR, name VARCHAR)
### ANSWER
SELECT exposure_fusion FROM table_name_38 WHERE name = "panoramaplus x4"
|
{
"answer": "SELECT exposure_fusion FROM table_name_38 WHERE name = \"panoramaplus x4\"",
"context": "CREATE TABLE table_name_38 (exposure_fusion VARCHAR, name VARCHAR)",
"question": "What's the exposure fusion of Panoramaplus x4?"
}
|
### QUESTION
What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade?
### CONTEXT
CREATE TABLE table_name_33 (tournament VARCHAR, partner VARCHAR, opponent_in_the_final VARCHAR)
### ANSWER
SELECT tournament FROM table_name_33 WHERE partner = "nicole thijssen" AND opponent_in_the_final = "nina bratchikova & frederica piedade"
|
{
"answer": "SELECT tournament FROM table_name_33 WHERE partner = \"nicole thijssen\" AND opponent_in_the_final = \"nina bratchikova & frederica piedade\"",
"context": "CREATE TABLE table_name_33 (tournament VARCHAR, partner VARCHAR, opponent_in_the_final VARCHAR)",
"question": "What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade?"
}
|
### QUESTION
What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps?
### CONTEXT
CREATE TABLE table_name_98 (year INTEGER, drivers VARCHAR, poles VARCHAR, fast_laps VARCHAR)
### ANSWER
SELECT AVG(year) FROM table_name_98 WHERE poles < 2 AND fast_laps = 0 AND drivers = "adrian quaife-hobbs"
|
{
"answer": "SELECT AVG(year) FROM table_name_98 WHERE poles < 2 AND fast_laps = 0 AND drivers = \"adrian quaife-hobbs\"",
"context": "CREATE TABLE table_name_98 (year INTEGER, drivers VARCHAR, poles VARCHAR, fast_laps VARCHAR)",
"question": "What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps?"
}
|
### QUESTION
What is the highest Total Passengers when the annual change is 18.3%, and the rank is less than 11?
### CONTEXT
CREATE TABLE table_name_49 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR)
### ANSWER
SELECT MAX(total_passengers) FROM table_name_49 WHERE annual_change = "18.3%" AND rank < 11
|
{
"answer": "SELECT MAX(total_passengers) FROM table_name_49 WHERE annual_change = \"18.3%\" AND rank < 11",
"context": "CREATE TABLE table_name_49 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR)",
"question": "What is the highest Total Passengers when the annual change is 18.3%, and the rank is less than 11?"
}
|
### QUESTION
What was the ticket price on September 16, 1986?
### CONTEXT
CREATE TABLE table_name_56 (ticket_price_s_ VARCHAR, date_s_ VARCHAR)
### ANSWER
SELECT ticket_price_s_ FROM table_name_56 WHERE date_s_ = "september 16, 1986"
|
{
"answer": "SELECT ticket_price_s_ FROM table_name_56 WHERE date_s_ = \"september 16, 1986\"",
"context": "CREATE TABLE table_name_56 (ticket_price_s_ VARCHAR, date_s_ VARCHAR)",
"question": "What was the ticket price on September 16, 1986?"
}
|
### QUESTION
Find the average credit score of the customers who have some loan.
### CONTEXT
CREATE TABLE loan (credit_score INTEGER, cust_id VARCHAR); CREATE TABLE customer (credit_score INTEGER, cust_id VARCHAR)
### ANSWER
SELECT AVG(credit_score) FROM customer WHERE cust_id IN (SELECT cust_id FROM loan)
|
{
"answer": "SELECT AVG(credit_score) FROM customer WHERE cust_id IN (SELECT cust_id FROM loan)",
"context": "CREATE TABLE loan (credit_score INTEGER, cust_id VARCHAR); CREATE TABLE customer (credit_score INTEGER, cust_id VARCHAR)",
"question": "Find the average credit score of the customers who have some loan."
}
|
### QUESTION
Which actor from Serbia was nominated for best actor in a supporting role?
### CONTEXT
CREATE TABLE table_10236830_4 (actors_name VARCHAR, nomination VARCHAR, country VARCHAR)
### ANSWER
SELECT actors_name FROM table_10236830_4 WHERE nomination = "Best Actor in a Supporting Role" AND country = "Serbia"
|
{
"answer": "SELECT actors_name FROM table_10236830_4 WHERE nomination = \"Best Actor in a Supporting Role\" AND country = \"Serbia\"",
"context": "CREATE TABLE table_10236830_4 (actors_name VARCHAR, nomination VARCHAR, country VARCHAR)",
"question": "Which actor from Serbia was nominated for best actor in a supporting role?"
}
|
### QUESTION
What is the sum of the Europe totals for players with other appearances of 0, league appearances under 328, and a position of MF?
### CONTEXT
CREATE TABLE table_name_72 (europe INTEGER, position VARCHAR, others VARCHAR, league VARCHAR)
### ANSWER
SELECT SUM(europe) FROM table_name_72 WHERE others = 0 AND league < 328 AND position = "mf"
|
{
"answer": "SELECT SUM(europe) FROM table_name_72 WHERE others = 0 AND league < 328 AND position = \"mf\"",
"context": "CREATE TABLE table_name_72 (europe INTEGER, position VARCHAR, others VARCHAR, league VARCHAR)",
"question": "What is the sum of the Europe totals for players with other appearances of 0, league appearances under 328, and a position of MF?"
}
|
### QUESTION
How many maac are there that have 14th as the ncaa and the overall is 20-10?
### CONTEXT
CREATE TABLE table_21756039_1 (maac VARCHAR, ncaa_seed VARCHAR, overall VARCHAR)
### ANSWER
SELECT COUNT(maac) FROM table_21756039_1 WHERE ncaa_seed = "14th" AND overall = "20-10"
|
{
"answer": "SELECT COUNT(maac) FROM table_21756039_1 WHERE ncaa_seed = \"14th\" AND overall = \"20-10\"",
"context": "CREATE TABLE table_21756039_1 (maac VARCHAR, ncaa_seed VARCHAR, overall VARCHAR)",
"question": "How many maac are there that have 14th as the ncaa and the overall is 20-10?"
}
|
### QUESTION
When did the 113 episode air?
### CONTEXT
CREATE TABLE table_10718631_2 (original_air_date VARCHAR, no_in_series VARCHAR)
### ANSWER
SELECT original_air_date FROM table_10718631_2 WHERE no_in_series = 113
|
{
"answer": "SELECT original_air_date FROM table_10718631_2 WHERE no_in_series = 113",
"context": "CREATE TABLE table_10718631_2 (original_air_date VARCHAR, no_in_series VARCHAR)",
"question": "When did the 113 episode air?"
}
|
### QUESTION
What is Beyer Peacock's SR number with a SECR number of 769?
### CONTEXT
CREATE TABLE table_name_10 (sr_no INTEGER, builder VARCHAR, secr_no VARCHAR)
### ANSWER
SELECT AVG(sr_no) FROM table_name_10 WHERE builder = "beyer peacock" AND secr_no = 769
|
{
"answer": "SELECT AVG(sr_no) FROM table_name_10 WHERE builder = \"beyer peacock\" AND secr_no = 769",
"context": "CREATE TABLE table_name_10 (sr_no INTEGER, builder VARCHAR, secr_no VARCHAR)",
"question": "What is Beyer Peacock's SR number with a SECR number of 769?"
}
|
### QUESTION
Who was the home captain at Sabina Park?
### CONTEXT
CREATE TABLE table_name_89 (home_captain VARCHAR, venue VARCHAR)
### ANSWER
SELECT home_captain FROM table_name_89 WHERE venue = "sabina park"
|
{
"answer": "SELECT home_captain FROM table_name_89 WHERE venue = \"sabina park\"",
"context": "CREATE TABLE table_name_89 (home_captain VARCHAR, venue VARCHAR)",
"question": "Who was the home captain at Sabina Park?"
}
|
### QUESTION
What is Segment A where Segment C is Sushi (part 1)?
### CONTEXT
CREATE TABLE table_15187735_15 (segment_a VARCHAR, segment_c VARCHAR)
### ANSWER
SELECT segment_a FROM table_15187735_15 WHERE segment_c = "Sushi (Part 1)"
|
{
"answer": "SELECT segment_a FROM table_15187735_15 WHERE segment_c = \"Sushi (Part 1)\"",
"context": "CREATE TABLE table_15187735_15 (segment_a VARCHAR, segment_c VARCHAR)",
"question": "What is Segment A where Segment C is Sushi (part 1)? "
}
|
### QUESTION
What was the population of a country with a population density of 14.3/km² (/sqmi)?
### CONTEXT
CREATE TABLE table_26769_1 (population__july_2009_est_ VARCHAR, population_density_per_km² VARCHAR)
### ANSWER
SELECT population__july_2009_est_ FROM table_26769_1 WHERE population_density_per_km² = "14.3/km² (/sqmi)"
|
{
"answer": "SELECT population__july_2009_est_ FROM table_26769_1 WHERE population_density_per_km² = \"14.3/km² (/sqmi)\"",
"context": "CREATE TABLE table_26769_1 (population__july_2009_est_ VARCHAR, population_density_per_km² VARCHAR)",
"question": "What was the population of a country with a population density of 14.3/km² (/sqmi)?"
}
|
### QUESTION
What is Score, when Partnering is "Alexander Waske", and when Opponents In The Final is "Rafael Nadal Bartolomé Salvá-Vidal"?
### CONTEXT
CREATE TABLE table_name_26 (score VARCHAR, partnering VARCHAR, opponents_in_the_final VARCHAR)
### ANSWER
SELECT score FROM table_name_26 WHERE partnering = "alexander waske" AND opponents_in_the_final = "rafael nadal bartolomé salvá-vidal"
|
{
"answer": "SELECT score FROM table_name_26 WHERE partnering = \"alexander waske\" AND opponents_in_the_final = \"rafael nadal bartolomé salvá-vidal\"",
"context": "CREATE TABLE table_name_26 (score VARCHAR, partnering VARCHAR, opponents_in_the_final VARCHAR)",
"question": "What is Score, when Partnering is \"Alexander Waske\", and when Opponents In The Final is \"Rafael Nadal Bartolomé Salvá-Vidal\"?"
}
|
### QUESTION
Where were the Pan American Games held?
### CONTEXT
CREATE TABLE table_name_80 (venue VARCHAR, competition VARCHAR)
### ANSWER
SELECT venue FROM table_name_80 WHERE competition = "pan american games"
|
{
"answer": "SELECT venue FROM table_name_80 WHERE competition = \"pan american games\"",
"context": "CREATE TABLE table_name_80 (venue VARCHAR, competition VARCHAR)",
"question": "Where were the Pan American Games held?"
}
|
### QUESTION
Before 1979, what position was the European Indoor Championships?
### CONTEXT
CREATE TABLE table_name_78 (position VARCHAR, competition VARCHAR, year VARCHAR)
### ANSWER
SELECT position FROM table_name_78 WHERE competition = "european indoor championships" AND year < 1979
|
{
"answer": "SELECT position FROM table_name_78 WHERE competition = \"european indoor championships\" AND year < 1979",
"context": "CREATE TABLE table_name_78 (position VARCHAR, competition VARCHAR, year VARCHAR)",
"question": "Before 1979, what position was the European Indoor Championships?"
}
|
### QUESTION
What is the maximum specific impulse with a 4423 m/s effective exhaust velocity?
### CONTEXT
CREATE TABLE table_15944_5 (specific_impulse__s_ INTEGER, effective_exhaust_velocity__m_s_ VARCHAR)
### ANSWER
SELECT MAX(specific_impulse__s_) FROM table_15944_5 WHERE effective_exhaust_velocity__m_s_ = 4423
|
{
"answer": "SELECT MAX(specific_impulse__s_) FROM table_15944_5 WHERE effective_exhaust_velocity__m_s_ = 4423",
"context": "CREATE TABLE table_15944_5 (specific_impulse__s_ INTEGER, effective_exhaust_velocity__m_s_ VARCHAR)",
"question": "What is the maximum specific impulse with a 4423 m/s effective exhaust velocity?"
}
|
### QUESTION
What is the Lower index Kcal/ Nm 3 entry, for the row with entries of an Upper index Kcal/ Nm 3 smaller than 19,376, and a Lower index MJ/ Nm 3 of 74.54?
### CONTEXT
CREATE TABLE table_name_5 (lower_index_kcal__nm_3 INTEGER, lower_index_mj__nm_3 VARCHAR, upper_index_kcal__nm_3 VARCHAR)
### ANSWER
SELECT AVG(lower_index_kcal__nm_3) FROM table_name_5 WHERE lower_index_mj__nm_3 = 74.54 AND upper_index_kcal__nm_3 < 19 OFFSET 376
|
{
"answer": "SELECT AVG(lower_index_kcal__nm_3) FROM table_name_5 WHERE lower_index_mj__nm_3 = 74.54 AND upper_index_kcal__nm_3 < 19 OFFSET 376",
"context": "CREATE TABLE table_name_5 (lower_index_kcal__nm_3 INTEGER, lower_index_mj__nm_3 VARCHAR, upper_index_kcal__nm_3 VARCHAR)",
"question": "What is the Lower index Kcal/ Nm 3 entry, for the row with entries of an Upper index Kcal/ Nm 3 smaller than 19,376, and a Lower index MJ/ Nm 3 of 74.54?"
}
|
### QUESTION
What Norwegian title has 218 pages and Translated Title of Breaking Dawn?
### CONTEXT
CREATE TABLE table_name_37 (norwegian_title VARCHAR, pages VARCHAR, translated_title VARCHAR)
### ANSWER
SELECT norwegian_title FROM table_name_37 WHERE pages = 218 AND translated_title = "breaking dawn"
|
{
"answer": "SELECT norwegian_title FROM table_name_37 WHERE pages = 218 AND translated_title = \"breaking dawn\"",
"context": "CREATE TABLE table_name_37 (norwegian_title VARCHAR, pages VARCHAR, translated_title VARCHAR)",
"question": "What Norwegian title has 218 pages and Translated Title of Breaking Dawn?"
}
|
### QUESTION
Which Song has a Weeks at number one larger than 2, and an Issue date(s) of 17 april - 8 may?
### CONTEXT
CREATE TABLE table_name_52 (song VARCHAR, weeks_at_number_one VARCHAR, issue_date_s_ VARCHAR)
### ANSWER
SELECT song FROM table_name_52 WHERE weeks_at_number_one > 2 AND issue_date_s_ = "17 april - 8 may"
|
{
"answer": "SELECT song FROM table_name_52 WHERE weeks_at_number_one > 2 AND issue_date_s_ = \"17 april - 8 may\"",
"context": "CREATE TABLE table_name_52 (song VARCHAR, weeks_at_number_one VARCHAR, issue_date_s_ VARCHAR)",
"question": "Which Song has a Weeks at number one larger than 2, and an Issue date(s) of 17 april - 8 may?"
}
|
### QUESTION
Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43?
### CONTEXT
CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)
### ANSWER
SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "alabama" AND pick > 43
|
{
"answer": "SELECT MIN(round) FROM table_name_87 WHERE school_club_team = \"alabama\" AND pick > 43",
"context": "CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)",
"question": "Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43?"
}
|
### QUESTION
What are the titles and directors of the movies whose star is greater than the average stars of the movies directed by James Cameron?
### CONTEXT
CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Movie (title VARCHAR, director VARCHAR, mID VARCHAR)
### ANSWER
SELECT T2.title, T2.director FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars > (SELECT AVG(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T2.director = "James Cameron")
|
{
"answer": "SELECT T2.title, T2.director FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars > (SELECT AVG(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T2.director = \"James Cameron\")",
"context": "CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Movie (title VARCHAR, director VARCHAR, mID VARCHAR)",
"question": "What are the titles and directors of the movies whose star is greater than the average stars of the movies directed by James Cameron?"
}
|
### QUESTION
Show the nations that have both journalists with more than 10 years of working and journalists with less than 3 years of working.
### CONTEXT
CREATE TABLE journalist (Nationality VARCHAR, Years_working INTEGER)
### ANSWER
SELECT Nationality FROM journalist WHERE Years_working > 10 INTERSECT SELECT Nationality FROM journalist WHERE Years_working < 3
|
{
"answer": "SELECT Nationality FROM journalist WHERE Years_working > 10 INTERSECT SELECT Nationality FROM journalist WHERE Years_working < 3",
"context": "CREATE TABLE journalist (Nationality VARCHAR, Years_working INTEGER)",
"question": "Show the nations that have both journalists with more than 10 years of working and journalists with less than 3 years of working."
}
|
### QUESTION
How many years did Team Newman/Haas Racing receive a 1st place ranking?
### CONTEXT
CREATE TABLE table_name_86 (year VARCHAR, team VARCHAR, rank VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_86 WHERE team = "newman/haas racing" AND rank = "1st"
|
{
"answer": "SELECT COUNT(year) FROM table_name_86 WHERE team = \"newman/haas racing\" AND rank = \"1st\"",
"context": "CREATE TABLE table_name_86 (year VARCHAR, team VARCHAR, rank VARCHAR)",
"question": "How many years did Team Newman/Haas Racing receive a 1st place ranking?"
}
|
### QUESTION
List each language and the number of TV Channels using it.
### CONTEXT
CREATE TABLE TV_Channel (LANGUAGE VARCHAR)
### ANSWER
SELECT LANGUAGE, COUNT(*) FROM TV_Channel GROUP BY LANGUAGE
|
{
"answer": "SELECT LANGUAGE, COUNT(*) FROM TV_Channel GROUP BY LANGUAGE",
"context": "CREATE TABLE TV_Channel (LANGUAGE VARCHAR)",
"question": "List each language and the number of TV Channels using it."
}
|
### QUESTION
Which municipality has a population of 24421?
### CONTEXT
CREATE TABLE table_157826_1 (municipality VARCHAR, population VARCHAR)
### ANSWER
SELECT municipality FROM table_157826_1 WHERE population = 24421
|
{
"answer": "SELECT municipality FROM table_157826_1 WHERE population = 24421",
"context": "CREATE TABLE table_157826_1 (municipality VARCHAR, population VARCHAR)",
"question": "Which municipality has a population of 24421?"
}
|
### QUESTION
What Gershausen has a Willingshain of 243 and Reckerode of 224?
### CONTEXT
CREATE TABLE table_name_46 (gershausen VARCHAR, willingshain VARCHAR, reckerode_ VARCHAR)
### ANSWER
SELECT gershausen FROM table_name_46 WHERE willingshain = "243" AND reckerode_ * * * * = "224"
|
{
"answer": "SELECT gershausen FROM table_name_46 WHERE willingshain = \"243\" AND reckerode_ * * * * = \"224\"",
"context": "CREATE TABLE table_name_46 (gershausen VARCHAR, willingshain VARCHAR, reckerode_ VARCHAR)",
"question": "What Gershausen has a Willingshain of 243 and Reckerode of 224?"
}
|
### QUESTION
What is the highest Drawn when the lost is 7 and the points are more than 4, and the against is less than 22?
### CONTEXT
CREATE TABLE table_name_12 (drawn INTEGER, against VARCHAR, lost VARCHAR, points VARCHAR)
### ANSWER
SELECT MAX(drawn) FROM table_name_12 WHERE lost = 7 AND points > 4 AND against < 22
|
{
"answer": "SELECT MAX(drawn) FROM table_name_12 WHERE lost = 7 AND points > 4 AND against < 22",
"context": "CREATE TABLE table_name_12 (drawn INTEGER, against VARCHAR, lost VARCHAR, points VARCHAR)",
"question": "What is the highest Drawn when the lost is 7 and the points are more than 4, and the against is less than 22?"
}
|
### QUESTION
What is the rank of the airport with freight ( metric tonnes ) of 255121?
### CONTEXT
CREATE TABLE table_13836704_6 (rank VARCHAR, freight___metric_tonnes__ VARCHAR)
### ANSWER
SELECT rank FROM table_13836704_6 WHERE freight___metric_tonnes__ = 255121
|
{
"answer": "SELECT rank FROM table_13836704_6 WHERE freight___metric_tonnes__ = 255121",
"context": "CREATE TABLE table_13836704_6 (rank VARCHAR, freight___metric_tonnes__ VARCHAR)",
"question": "What is the rank of the airport with freight ( metric tonnes ) of 255121?"
}
|
### QUESTION
What's the catalog number for a December 11, 2007 record from columbia formatted in a that's from Canada?
### CONTEXT
CREATE TABLE table_name_1 (catalog VARCHAR, region VARCHAR, label VARCHAR, date VARCHAR)
### ANSWER
SELECT catalog FROM table_name_1 WHERE label = "columbia" AND date = "december 11, 2007" AND region = "canada"
|
{
"answer": "SELECT catalog FROM table_name_1 WHERE label = \"columbia\" AND date = \"december 11, 2007\" AND region = \"canada\"",
"context": "CREATE TABLE table_name_1 (catalog VARCHAR, region VARCHAR, label VARCHAR, date VARCHAR)",
"question": "What's the catalog number for a December 11, 2007 record from columbia formatted in a that's from Canada?"
}
|
### QUESTION
Dakota Mission of t, and a Deloria & Boas of tʽ, and a Ullrich of tȟ had what white hat?
### CONTEXT
CREATE TABLE table_name_98 (white_hat VARCHAR, ullrich VARCHAR, dakota_mission VARCHAR, deloria_ VARCHAR, _boas VARCHAR)
### ANSWER
SELECT white_hat FROM table_name_98 WHERE dakota_mission = "t" AND deloria_ & _boas = "tʽ" AND ullrich = "tȟ"
|
{
"answer": "SELECT white_hat FROM table_name_98 WHERE dakota_mission = \"t\" AND deloria_ & _boas = \"tʽ\" AND ullrich = \"tȟ\"",
"context": "CREATE TABLE table_name_98 (white_hat VARCHAR, ullrich VARCHAR, dakota_mission VARCHAR, deloria_ VARCHAR, _boas VARCHAR)",
"question": "Dakota Mission of t, and a Deloria & Boas of tʽ, and a Ullrich of tȟ had what white hat?"
}
|
### QUESTION
What country has a series premier of unknown and mbc action as their TV network?
### CONTEXT
CREATE TABLE table_name_27 (country VARCHAR, series_premiere VARCHAR, tv_network_s_ VARCHAR)
### ANSWER
SELECT country FROM table_name_27 WHERE series_premiere = "unknown" AND tv_network_s_ = "mbc action"
|
{
"answer": "SELECT country FROM table_name_27 WHERE series_premiere = \"unknown\" AND tv_network_s_ = \"mbc action\"",
"context": "CREATE TABLE table_name_27 (country VARCHAR, series_premiere VARCHAR, tv_network_s_ VARCHAR)",
"question": "What country has a series premier of unknown and mbc action as their TV network?"
}
|
### QUESTION
Tell me the highest Grid for Maurice Trintignant and laps less than 87
### CONTEXT
CREATE TABLE table_name_14 (grid INTEGER, driver VARCHAR, laps VARCHAR)
### ANSWER
SELECT MAX(grid) FROM table_name_14 WHERE driver = "maurice trintignant" AND laps < 87
|
{
"answer": "SELECT MAX(grid) FROM table_name_14 WHERE driver = \"maurice trintignant\" AND laps < 87",
"context": "CREATE TABLE table_name_14 (grid INTEGER, driver VARCHAR, laps VARCHAR)",
"question": "Tell me the highest Grid for Maurice Trintignant and laps less than 87"
}
|
### QUESTION
What is the record on December 11?
### CONTEXT
CREATE TABLE table_name_77 (record VARCHAR, date VARCHAR)
### ANSWER
SELECT record FROM table_name_77 WHERE date = "december 11"
|
{
"answer": "SELECT record FROM table_name_77 WHERE date = \"december 11\"",
"context": "CREATE TABLE table_name_77 (record VARCHAR, date VARCHAR)",
"question": "What is the record on December 11?"
}
|
### QUESTION
What is GDP 2012 Millions of Euro, when Population in Millions is less than 1.3, and when GDP (Nominal) Per Capita 2012 Euro is 20,700(p)?
### CONTEXT
CREATE TABLE table_name_51 (gdp_2012_millions_of_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR)
### ANSWER
SELECT gdp_2012_millions_of_euro FROM table_name_51 WHERE population_in_millions < 1.3 AND gdp__nominal__per_capita_2012_euro = "20,700(p)"
|
{
"answer": "SELECT gdp_2012_millions_of_euro FROM table_name_51 WHERE population_in_millions < 1.3 AND gdp__nominal__per_capita_2012_euro = \"20,700(p)\"",
"context": "CREATE TABLE table_name_51 (gdp_2012_millions_of_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR)",
"question": "What is GDP 2012 Millions of Euro, when Population in Millions is less than 1.3, and when GDP (Nominal) Per Capita 2012 Euro is 20,700(p)?"
}
|
### QUESTION
What game, played on October 17 in front of 49,347 fans, had the lowest score?
### CONTEXT
CREATE TABLE table_name_93 (game INTEGER, date VARCHAR, attendance VARCHAR)
### ANSWER
SELECT MIN(game) FROM table_name_93 WHERE date = "october 17" AND attendance > 49 OFFSET 347
|
{
"answer": "SELECT MIN(game) FROM table_name_93 WHERE date = \"october 17\" AND attendance > 49 OFFSET 347",
"context": "CREATE TABLE table_name_93 (game INTEGER, date VARCHAR, attendance VARCHAR)",
"question": "What game, played on October 17 in front of 49,347 fans, had the lowest score?"
}
|
### QUESTION
What is the lowest ERP W of the 67829 Facility ID?
### CONTEXT
CREATE TABLE table_name_54 (erp_w INTEGER, facility_id VARCHAR)
### ANSWER
SELECT MIN(erp_w) FROM table_name_54 WHERE facility_id = 67829
|
{
"answer": "SELECT MIN(erp_w) FROM table_name_54 WHERE facility_id = 67829",
"context": "CREATE TABLE table_name_54 (erp_w INTEGER, facility_id VARCHAR)",
"question": "What is the lowest ERP W of the 67829 Facility ID?"
}
|
### QUESTION
What is the coronie with a 0.7% nickerie?
### CONTEXT
CREATE TABLE table_name_92 (coronie VARCHAR, nickerie VARCHAR)
### ANSWER
SELECT coronie FROM table_name_92 WHERE nickerie = "0.7%"
|
{
"answer": "SELECT coronie FROM table_name_92 WHERE nickerie = \"0.7%\"",
"context": "CREATE TABLE table_name_92 (coronie VARCHAR, nickerie VARCHAR)",
"question": "What is the coronie with a 0.7% nickerie?"
}
|
### QUESTION
What type of song is larger than 8 and named 實情?
### CONTEXT
CREATE TABLE table_name_50 (kind_of_the_song VARCHAR, number VARCHAR, name_of_the_song VARCHAR)
### ANSWER
SELECT kind_of_the_song FROM table_name_50 WHERE number > 8 AND name_of_the_song = "實情"
|
{
"answer": "SELECT kind_of_the_song FROM table_name_50 WHERE number > 8 AND name_of_the_song = \"實情\"",
"context": "CREATE TABLE table_name_50 (kind_of_the_song VARCHAR, number VARCHAR, name_of_the_song VARCHAR)",
"question": "What type of song is larger than 8 and named 實情?"
}
|
### QUESTION
Whose origin of Programming offers a general genre, a network of ntv bangla and a service of cogeco cable?
### CONTEXT
CREATE TABLE table_name_12 (origin_of_programming VARCHAR, service VARCHAR, genre VARCHAR, network VARCHAR)
### ANSWER
SELECT origin_of_programming FROM table_name_12 WHERE genre = "general" AND network = "ntv bangla" AND service = "cogeco cable"
|
{
"answer": "SELECT origin_of_programming FROM table_name_12 WHERE genre = \"general\" AND network = \"ntv bangla\" AND service = \"cogeco cable\"",
"context": "CREATE TABLE table_name_12 (origin_of_programming VARCHAR, service VARCHAR, genre VARCHAR, network VARCHAR)",
"question": "Whose origin of Programming offers a general genre, a network of ntv bangla and a service of cogeco cable?"
}
|
### QUESTION
what is the circuit where the fastest lap is sam lowes and the winning rider is luca scassa?
### CONTEXT
CREATE TABLE table_29686983_1 (circuit VARCHAR, fastest_lap VARCHAR, winning_rider VARCHAR)
### ANSWER
SELECT circuit FROM table_29686983_1 WHERE fastest_lap = "Sam Lowes" AND winning_rider = "Luca Scassa"
|
{
"answer": "SELECT circuit FROM table_29686983_1 WHERE fastest_lap = \"Sam Lowes\" AND winning_rider = \"Luca Scassa\"",
"context": "CREATE TABLE table_29686983_1 (circuit VARCHAR, fastest_lap VARCHAR, winning_rider VARCHAR)",
"question": "what is the circuit where the fastest lap is sam lowes and the winning rider is luca scassa?"
}
|
### QUESTION
What was the date of the tournament held in Indonesia?
### CONTEXT
CREATE TABLE table_name_23 (date VARCHAR, country VARCHAR)
### ANSWER
SELECT date FROM table_name_23 WHERE country = "indonesia"
|
{
"answer": "SELECT date FROM table_name_23 WHERE country = \"indonesia\"",
"context": "CREATE TABLE table_name_23 (date VARCHAR, country VARCHAR)",
"question": "What was the date of the tournament held in Indonesia?"
}
|
### QUESTION
What is the lowest money ($) that has t8 as the place, with a to par greater than 19?
### CONTEXT
CREATE TABLE table_name_75 (money___ INTEGER, place VARCHAR, to_par VARCHAR)
### ANSWER
SELECT MIN(money___) AS $__ FROM table_name_75 WHERE place = "t8" AND to_par > 19
|
{
"answer": "SELECT MIN(money___) AS $__ FROM table_name_75 WHERE place = \"t8\" AND to_par > 19",
"context": "CREATE TABLE table_name_75 (money___ INTEGER, place VARCHAR, to_par VARCHAR)",
"question": "What is the lowest money ($) that has t8 as the place, with a to par greater than 19?"
}
|
### QUESTION
what is the result where the candidates is robert l. f. sikes (d) unopposed?
### CONTEXT
CREATE TABLE table_1341672_10 (result VARCHAR, candidates VARCHAR)
### ANSWER
SELECT result FROM table_1341672_10 WHERE candidates = "Robert L. F. Sikes (D) Unopposed"
|
{
"answer": "SELECT result FROM table_1341672_10 WHERE candidates = \"Robert L. F. Sikes (D) Unopposed\"",
"context": "CREATE TABLE table_1341672_10 (result VARCHAR, candidates VARCHAR)",
"question": "what is the result where the candidates is robert l. f. sikes (d) unopposed?"
}
|
### QUESTION
Which Position has a Nationality of canada, and a Player of pat janostin?
### CONTEXT
CREATE TABLE table_name_81 (position VARCHAR, nationality VARCHAR, player VARCHAR)
### ANSWER
SELECT position FROM table_name_81 WHERE nationality = "canada" AND player = "pat janostin"
|
{
"answer": "SELECT position FROM table_name_81 WHERE nationality = \"canada\" AND player = \"pat janostin\"",
"context": "CREATE TABLE table_name_81 (position VARCHAR, nationality VARCHAR, player VARCHAR)",
"question": "Which Position has a Nationality of canada, and a Player of pat janostin?"
}
|
### QUESTION
what is the highest electricity production (kw/h, billion) when the % other renewable is 0.4, % coal is 0 and % hydropower is more than 99?
### CONTEXT
CREATE TABLE table_name_19 (_billion_ VARCHAR, electricity_production__kw_h INTEGER, _percentage_hydropower VARCHAR, _percentage_other_renewable VARCHAR, _percentage_coal VARCHAR)
### ANSWER
SELECT MAX(electricity_production__kw_h), _billion_ FROM table_name_19 WHERE _percentage_other_renewable = 0.4 AND _percentage_coal = 0 AND _percentage_hydropower > 99
|
{
"answer": "SELECT MAX(electricity_production__kw_h), _billion_ FROM table_name_19 WHERE _percentage_other_renewable = 0.4 AND _percentage_coal = 0 AND _percentage_hydropower > 99",
"context": "CREATE TABLE table_name_19 (_billion_ VARCHAR, electricity_production__kw_h INTEGER, _percentage_hydropower VARCHAR, _percentage_other_renewable VARCHAR, _percentage_coal VARCHAR)",
"question": "what is the highest electricity production (kw/h, billion) when the % other renewable is 0.4, % coal is 0 and % hydropower is more than 99?"
}
|
### QUESTION
What was Hawthorn's score as the away team?
### CONTEXT
CREATE TABLE table_name_96 (away_team VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_96 WHERE away_team = "hawthorn"
|
{
"answer": "SELECT away_team AS score FROM table_name_96 WHERE away_team = \"hawthorn\"",
"context": "CREATE TABLE table_name_96 (away_team VARCHAR)",
"question": "What was Hawthorn's score as the away team?"
}
|
### QUESTION
What is the sum of all domestic passengers with 10.9% change and less than 4,022 tonnes in freight?
### CONTEXT
CREATE TABLE table_name_38 (domestic_passengers INTEGER, _percentage_change_2005_2006 VARCHAR, freight__metric_tonnes_ VARCHAR)
### ANSWER
SELECT SUM(domestic_passengers) FROM table_name_38 WHERE _percentage_change_2005_2006 = "10.9%" AND freight__metric_tonnes_ < 4 OFFSET 022
|
{
"answer": "SELECT SUM(domestic_passengers) FROM table_name_38 WHERE _percentage_change_2005_2006 = \"10.9%\" AND freight__metric_tonnes_ < 4 OFFSET 022",
"context": "CREATE TABLE table_name_38 (domestic_passengers INTEGER, _percentage_change_2005_2006 VARCHAR, freight__metric_tonnes_ VARCHAR)",
"question": "What is the sum of all domestic passengers with 10.9% change and less than 4,022 tonnes in freight?"
}
|
### QUESTION
When was Ranma ½: netsuretsu kakutouhen first release by Banpresto?
### CONTEXT
CREATE TABLE table_name_41 (initial_release_date VARCHAR, publisher VARCHAR, japanese_title VARCHAR)
### ANSWER
SELECT initial_release_date FROM table_name_41 WHERE publisher = "banpresto" AND japanese_title = "ranma ½: netsuretsu kakutouhen"
|
{
"answer": "SELECT initial_release_date FROM table_name_41 WHERE publisher = \"banpresto\" AND japanese_title = \"ranma ½: netsuretsu kakutouhen\"",
"context": "CREATE TABLE table_name_41 (initial_release_date VARCHAR, publisher VARCHAR, japanese_title VARCHAR)",
"question": "When was Ranma ½: netsuretsu kakutouhen first release by Banpresto?"
}
|
### QUESTION
What was the Candlelight Records Catalog of Candle053tin format?
### CONTEXT
CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR, catalog VARCHAR)
### ANSWER
SELECT format FROM table_name_93 WHERE label = "candlelight records" AND catalog = "candle053tin"
|
{
"answer": "SELECT format FROM table_name_93 WHERE label = \"candlelight records\" AND catalog = \"candle053tin\"",
"context": "CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR, catalog VARCHAR)",
"question": "What was the Candlelight Records Catalog of Candle053tin format?"
}
|
### QUESTION
Who won womens doubles the year magnús ingi helgason tinna helgadóttir won mixed doubles and ragna ingólfsdóttir won womens singles in 2010
### CONTEXT
CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, year VARCHAR, mixed_doubles VARCHAR, womens_singles VARCHAR)
### ANSWER
SELECT womens_doubles FROM table_14903999_1 WHERE mixed_doubles = "Magnús Ingi Helgason Tinna Helgadóttir" AND womens_singles = "Ragna Ingólfsdóttir" AND year = 2010
|
{
"answer": "SELECT womens_doubles FROM table_14903999_1 WHERE mixed_doubles = \"Magnús Ingi Helgason Tinna Helgadóttir\" AND womens_singles = \"Ragna Ingólfsdóttir\" AND year = 2010",
"context": "CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, year VARCHAR, mixed_doubles VARCHAR, womens_singles VARCHAR)",
"question": "Who won womens doubles the year magnús ingi helgason tinna helgadóttir won mixed doubles and ragna ingólfsdóttir won womens singles in 2010"
}
|
### QUESTION
Which round had a winning driver of Uwe Alzen, at the Sepang International circuit?
### CONTEXT
CREATE TABLE table_name_80 (round VARCHAR, winning_driver VARCHAR, circuit VARCHAR)
### ANSWER
SELECT round FROM table_name_80 WHERE winning_driver = "uwe alzen" AND circuit = "sepang international circuit"
|
{
"answer": "SELECT round FROM table_name_80 WHERE winning_driver = \"uwe alzen\" AND circuit = \"sepang international circuit\"",
"context": "CREATE TABLE table_name_80 (round VARCHAR, winning_driver VARCHAR, circuit VARCHAR)",
"question": "Which round had a winning driver of Uwe Alzen, at the Sepang International circuit?"
}
|
### QUESTION
Name the least recognised seats
### CONTEXT
CREATE TABLE table_19304764_2 (recognised_seats INTEGER)
### ANSWER
SELECT MIN(recognised_seats) FROM table_19304764_2
|
{
"answer": "SELECT MIN(recognised_seats) FROM table_19304764_2",
"context": "CREATE TABLE table_19304764_2 (recognised_seats INTEGER)",
"question": "Name the least recognised seats"
}
|
### 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
|
{
"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
Find the names of catalog entries with level number 8.
### CONTEXT
CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, catalog_level_number VARCHAR); CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, catalog_entry_id VARCHAR)
### ANSWER
SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.catalog_level_number = "8"
|
{
"answer": "SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.catalog_level_number = \"8\"",
"context": "CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, catalog_level_number VARCHAR); CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, catalog_entry_id VARCHAR)",
"question": "Find the names of catalog entries with level number 8."
}
|
### QUESTION
What is the color code with a temperature classification of ordinary?
### CONTEXT
CREATE TABLE table_name_67 (color_code__with_fusible_link_ VARCHAR, temperature_classification VARCHAR)
### ANSWER
SELECT color_code__with_fusible_link_ FROM table_name_67 WHERE temperature_classification = "ordinary"
|
{
"answer": "SELECT color_code__with_fusible_link_ FROM table_name_67 WHERE temperature_classification = \"ordinary\"",
"context": "CREATE TABLE table_name_67 (color_code__with_fusible_link_ VARCHAR, temperature_classification VARCHAR)",
"question": "What is the color code with a temperature classification of ordinary?"
}
|
### QUESTION
Which Event has 5th Position in the European Championships Competition?
### CONTEXT
CREATE TABLE table_name_49 (event VARCHAR, competition VARCHAR, position VARCHAR)
### ANSWER
SELECT event FROM table_name_49 WHERE competition = "european championships" AND position = "5th"
|
{
"answer": "SELECT event FROM table_name_49 WHERE competition = \"european championships\" AND position = \"5th\"",
"context": "CREATE TABLE table_name_49 (event VARCHAR, competition VARCHAR, position VARCHAR)",
"question": "Which Event has 5th Position in the European Championships Competition?"
}
|
### QUESTION
What is the Lane of the Athlete from Great Britain with a Reaction time of less than 0.218 and a Time larger than 44.74?
### CONTEXT
CREATE TABLE table_name_82 (lane INTEGER, nationality VARCHAR, reaction_time VARCHAR, time VARCHAR)
### ANSWER
SELECT SUM(lane) FROM table_name_82 WHERE reaction_time < 0.218 AND time > 44.74 AND nationality = "great britain"
|
{
"answer": "SELECT SUM(lane) FROM table_name_82 WHERE reaction_time < 0.218 AND time > 44.74 AND nationality = \"great britain\"",
"context": "CREATE TABLE table_name_82 (lane INTEGER, nationality VARCHAR, reaction_time VARCHAR, time VARCHAR)",
"question": "What is the Lane of the Athlete from Great Britain with a Reaction time of less than 0.218 and a Time larger than 44.74?"
}
|
### QUESTION
What is the result for the distance of 10f, and a winner or 2nd of Lampra?
### CONTEXT
CREATE TABLE table_name_30 (result VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR)
### ANSWER
SELECT result FROM table_name_30 WHERE distance = "10f" AND winner_or_2nd = "lampra"
|
{
"answer": "SELECT result FROM table_name_30 WHERE distance = \"10f\" AND winner_or_2nd = \"lampra\"",
"context": "CREATE TABLE table_name_30 (result VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR)",
"question": "What is the result for the distance of 10f, and a winner or 2nd of Lampra?"
}
|
### QUESTION
When were there less than 1 point with a cosworth v8 engine in jolly club switzerland?
### CONTEXT
CREATE TABLE table_name_73 (year VARCHAR, entrant VARCHAR, points VARCHAR, engine VARCHAR)
### ANSWER
SELECT year FROM table_name_73 WHERE points < 1 AND engine = "cosworth v8" AND entrant = "jolly club switzerland"
|
{
"answer": "SELECT year FROM table_name_73 WHERE points < 1 AND engine = \"cosworth v8\" AND entrant = \"jolly club switzerland\"",
"context": "CREATE TABLE table_name_73 (year VARCHAR, entrant VARCHAR, points VARCHAR, engine VARCHAR)",
"question": "When were there less than 1 point with a cosworth v8 engine in jolly club switzerland?"
}
|
### QUESTION
what is the league goals when the fa cup goals is higher than 0, the fa cup apps is 2 and the league apps is 45?
### CONTEXT
CREATE TABLE table_name_50 (league_goals VARCHAR, league_apps VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)
### ANSWER
SELECT league_goals FROM table_name_50 WHERE fa_cup_goals > 0 AND fa_cup_apps = "2" AND league_apps = "45"
|
{
"answer": "SELECT league_goals FROM table_name_50 WHERE fa_cup_goals > 0 AND fa_cup_apps = \"2\" AND league_apps = \"45\"",
"context": "CREATE TABLE table_name_50 (league_goals VARCHAR, league_apps VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)",
"question": "what is the league goals when the fa cup goals is higher than 0, the fa cup apps is 2 and the league apps is 45?"
}
|
### QUESTION
Find the name of physicians who are affiliated with both Surgery and Psychiatry departments.
### CONTEXT
CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
### ANSWER
SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Surgery' INTERSECT SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Psychiatry'
|
{
"answer": "SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Surgery' INTERSECT SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Psychiatry'",
"context": "CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)",
"question": "Find the name of physicians who are affiliated with both Surgery and Psychiatry departments."
}
|
### QUESTION
Find the players' first name and last name who won award both in 1960 and in 1961.
### CONTEXT
CREATE TABLE player (name_first VARCHAR, name_last VARCHAR); CREATE TABLE player_award (year VARCHAR)
### ANSWER
SELECT T1.name_first, T1.name_last FROM player AS T1 JOIN player_award AS T2 WHERE T2.year = 1960 INTERSECT SELECT T1.name_first, T1.name_last FROM player AS T1 JOIN player_award AS T2 WHERE T2.year = 1961
|
{
"answer": "SELECT T1.name_first, T1.name_last FROM player AS T1 JOIN player_award AS T2 WHERE T2.year = 1960 INTERSECT SELECT T1.name_first, T1.name_last FROM player AS T1 JOIN player_award AS T2 WHERE T2.year = 1961",
"context": "CREATE TABLE player (name_first VARCHAR, name_last VARCHAR); CREATE TABLE player_award (year VARCHAR)",
"question": "Find the players' first name and last name who won award both in 1960 and in 1961."
}
|
### QUESTION
Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9?
### CONTEXT
CREATE TABLE table_name_9 (cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, industrial_and_commercial_panel VARCHAR)
### ANSWER
SELECT COUNT(cultural_and_educational_panel) FROM table_name_9 WHERE labour_panel > 5 AND industrial_and_commercial_panel > 9
|
{
"answer": "SELECT COUNT(cultural_and_educational_panel) FROM table_name_9 WHERE labour_panel > 5 AND industrial_and_commercial_panel > 9",
"context": "CREATE TABLE table_name_9 (cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, industrial_and_commercial_panel VARCHAR)",
"question": "Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9?"
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.