text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
What county has a school with less than 301 students and plays IHSAA class A football?
### CONTEXT
CREATE TABLE table_name_81 (county VARCHAR, ihsaa_football_class VARCHAR, size VARCHAR)
### ANSWER
SELECT county FROM table_name_81 WHERE ihsaa_football_class = "a" AND size < 301</s> | {
"answer": "SELECT county FROM table_name_81 WHERE ihsaa_football_class = \"a\" AND size < 301",
"context": "CREATE TABLE table_name_81 (county VARCHAR, ihsaa_football_class VARCHAR, size VARCHAR)",
"question": "What county has a school with less than 301 students and plays IHSAA class A football?"
} |
### QUESTION
When did the term begin that ended January 3, 1995?
### CONTEXT
CREATE TABLE table_224672_2 (term_began VARCHAR, term_ended VARCHAR)
### ANSWER
SELECT term_began FROM table_224672_2 WHERE term_ended = "January 3, 1995"</s> | {
"answer": "SELECT term_began FROM table_224672_2 WHERE term_ended = \"January 3, 1995\"",
"context": "CREATE TABLE table_224672_2 (term_began VARCHAR, term_ended VARCHAR)",
"question": "When did the term begin that ended January 3, 1995?"
} |
### QUESTION
Name the high points for l 110–112 (ot)
### CONTEXT
CREATE TABLE table_27733258_6 (high_points VARCHAR, score VARCHAR)
### ANSWER
SELECT high_points FROM table_27733258_6 WHERE score = "L 110–112 (OT)"</s> | {
"answer": "SELECT high_points FROM table_27733258_6 WHERE score = \"L 110–112 (OT)\"",
"context": "CREATE TABLE table_27733258_6 (high_points VARCHAR, score VARCHAR)",
"question": "Name the high points for l 110–112 (ot)"
} |
### QUESTION
What are the years that have a duration of 15 years and giulia poggi as the character?
### CONTEXT
CREATE TABLE table_name_33 (years VARCHAR, duration VARCHAR, character VARCHAR)
### ANSWER
SELECT years FROM table_name_33 WHERE duration = "15 years" AND character = "giulia poggi"</s> | {
"answer": "SELECT years FROM table_name_33 WHERE duration = \"15 years\" AND character = \"giulia poggi\"",
"context": "CREATE TABLE table_name_33 (years VARCHAR, duration VARCHAR, character VARCHAR)",
"question": "What are the years that have a duration of 15 years and giulia poggi as the character?"
} |
### QUESTION
What is the lowest attendance for December 14, 1958 after week 12?
### CONTEXT
CREATE TABLE table_name_76 (attendance INTEGER, date VARCHAR, week VARCHAR)
### ANSWER
SELECT MIN(attendance) FROM table_name_76 WHERE date = "december 14, 1958" AND week > 12</s> | {
"answer": "SELECT MIN(attendance) FROM table_name_76 WHERE date = \"december 14, 1958\" AND week > 12",
"context": "CREATE TABLE table_name_76 (attendance INTEGER, date VARCHAR, week VARCHAR)",
"question": "What is the lowest attendance for December 14, 1958 after week 12?"
} |
### QUESTION
How many date of successor seated is new jersey 2nd in the district?
### CONTEXT
CREATE TABLE table_225205_4 (date_successor_seated VARCHAR, district VARCHAR)
### ANSWER
SELECT COUNT(date_successor_seated) FROM table_225205_4 WHERE district = "New Jersey 2nd"</s> | {
"answer": "SELECT COUNT(date_successor_seated) FROM table_225205_4 WHERE district = \"New Jersey 2nd\"",
"context": "CREATE TABLE table_225205_4 (date_successor_seated VARCHAR, district VARCHAR)",
"question": "How many date of successor seated is new jersey 2nd in the district?"
} |
### QUESTION
What title was used in the nomination of the Spanish language film Traffic?
### CONTEXT
CREATE TABLE table_name_43 (film_title_used_in_nomination VARCHAR, language VARCHAR, original_title VARCHAR)
### ANSWER
SELECT film_title_used_in_nomination FROM table_name_43 WHERE language = "spanish" AND original_title = "traffic"</s> | {
"answer": "SELECT film_title_used_in_nomination FROM table_name_43 WHERE language = \"spanish\" AND original_title = \"traffic\"",
"context": "CREATE TABLE table_name_43 (film_title_used_in_nomination VARCHAR, language VARCHAR, original_title VARCHAR)",
"question": "What title was used in the nomination of the Spanish language film Traffic?"
} |
### QUESTION
What is the position earlier than 1907, with a cross-code debut of inaugural rl test v new zealand, and a test debut of inaugural ru test v new zealand?
### CONTEXT
CREATE TABLE table_name_92 (position VARCHAR, test_debut VARCHAR, year VARCHAR, cross_code_debut VARCHAR)
### ANSWER
SELECT position FROM table_name_92 WHERE year < 1907 AND cross_code_debut = "inaugural rl test v new zealand" AND test_debut = "inaugural ru test v new zealand"</s> | {
"answer": "SELECT position FROM table_name_92 WHERE year < 1907 AND cross_code_debut = \"inaugural rl test v new zealand\" AND test_debut = \"inaugural ru test v new zealand\"",
"context": "CREATE TABLE table_name_92 (position VARCHAR, test_debut VARCHAR, year VARCHAR, cross_code_debut VARCHAR)",
"question": "What is the position earlier than 1907, with a cross-code debut of inaugural rl test v new zealand, and a test debut of inaugural ru test v new zealand?"
} |
### QUESTION
What was the outcome in games where the score was 7-5, 2-6, [6-10]?
### CONTEXT
CREATE TABLE table_2259502_2 (outcome VARCHAR, score VARCHAR)
### ANSWER
SELECT outcome FROM table_2259502_2 WHERE score = "7-5, 2-6, [6-10]"</s> | {
"answer": "SELECT outcome FROM table_2259502_2 WHERE score = \"7-5, 2-6, [6-10]\"",
"context": "CREATE TABLE table_2259502_2 (outcome VARCHAR, score VARCHAR)",
"question": "What was the outcome in games where the score was 7-5, 2-6, [6-10]?"
} |
### QUESTION
In the US Open championship and the outcome is runner-up, what is the minimum year?
### CONTEXT
CREATE TABLE table_22597626_2 (year INTEGER, outcome VARCHAR, championship VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_22597626_2 WHERE outcome = "Runner-up" AND championship = "US Open"</s> | {
"answer": "SELECT MIN(year) FROM table_22597626_2 WHERE outcome = \"Runner-up\" AND championship = \"US Open\"",
"context": "CREATE TABLE table_22597626_2 (year INTEGER, outcome VARCHAR, championship VARCHAR)",
"question": "In the US Open championship and the outcome is runner-up, what is the minimum year?"
} |
### QUESTION
How many people attended on december 26, 1982?
### CONTEXT
CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR)
### ANSWER
SELECT attendance FROM table_name_78 WHERE date = "december 26, 1982"</s> | {
"answer": "SELECT attendance FROM table_name_78 WHERE date = \"december 26, 1982\"",
"context": "CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR)",
"question": "How many people attended on december 26, 1982?"
} |
### QUESTION
Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing?
### CONTEXT
CREATE TABLE table_27743641_2 (lmp2_winning_driver VARCHAR, lmp1_winning_team VARCHAR)
### ANSWER
SELECT lmp2_winning_driver FROM table_27743641_2 WHERE lmp1_winning_team = "No. 20 Oryx Dyson Racing"</s> | {
"answer": "SELECT lmp2_winning_driver FROM table_27743641_2 WHERE lmp1_winning_team = \"No. 20 Oryx Dyson Racing\"",
"context": "CREATE TABLE table_27743641_2 (lmp2_winning_driver VARCHAR, lmp1_winning_team VARCHAR)",
"question": "Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing?"
} |
### QUESTION
Name the comptroller for office of prohibition
### CONTEXT
CREATE TABLE table_22607062_1 (comptroller VARCHAR, ticket___office VARCHAR)
### ANSWER
SELECT comptroller FROM table_22607062_1 WHERE ticket___office = "Prohibition"</s> | {
"answer": "SELECT comptroller FROM table_22607062_1 WHERE ticket___office = \"Prohibition\"",
"context": "CREATE TABLE table_22607062_1 (comptroller VARCHAR, ticket___office VARCHAR)",
"question": "Name the comptroller for office of prohibition"
} |
### QUESTION
What is the date the high points was lamarcus aldridge (36)?
### CONTEXT
CREATE TABLE table_27734769_8 (date VARCHAR, high_points VARCHAR)
### ANSWER
SELECT date FROM table_27734769_8 WHERE high_points = "LaMarcus Aldridge (36)"</s> | {
"answer": "SELECT date FROM table_27734769_8 WHERE high_points = \"LaMarcus Aldridge (36)\"",
"context": "CREATE TABLE table_27734769_8 (date VARCHAR, high_points VARCHAR)",
"question": "What is the date the high points was lamarcus aldridge (36)?"
} |
### QUESTION
Name the date of vacancy for manuel pellegrini
### CONTEXT
CREATE TABLE table_22640051_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)
### ANSWER
SELECT date_of_vacancy FROM table_22640051_3 WHERE outgoing_manager = "Manuel Pellegrini"</s> | {
"answer": "SELECT date_of_vacancy FROM table_22640051_3 WHERE outgoing_manager = \"Manuel Pellegrini\"",
"context": "CREATE TABLE table_22640051_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)",
"question": "Name the date of vacancy for manuel pellegrini"
} |
### QUESTION
How many times was the high assists andre miller (7)?
### CONTEXT
CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR)
### ANSWER
SELECT COUNT(date) FROM table_27734769_8 WHERE high_assists = "Andre Miller (7)"</s> | {
"answer": "SELECT COUNT(date) FROM table_27734769_8 WHERE high_assists = \"Andre Miller (7)\"",
"context": "CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR)",
"question": "How many times was the high assists andre miller (7)?"
} |
### QUESTION
What is the date the high rebounds were by lamarcus aldridge (6)?
### CONTEXT
CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR)
### ANSWER
SELECT date FROM table_27734769_8 WHERE high_rebounds = "LaMarcus Aldridge (6)"</s> | {
"answer": "SELECT date FROM table_27734769_8 WHERE high_rebounds = \"LaMarcus Aldridge (6)\"",
"context": "CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR)",
"question": "What is the date the high rebounds were by lamarcus aldridge (6)?"
} |
### QUESTION
What date was the circuit, snetterton, when riki christodoulou had the fastest lap?
### CONTEXT
CREATE TABLE table_name_10 (date VARCHAR, circuit VARCHAR, fastest_lap VARCHAR)
### ANSWER
SELECT date FROM table_name_10 WHERE circuit = "snetterton" AND fastest_lap = "riki christodoulou"</s> | {
"answer": "SELECT date FROM table_name_10 WHERE circuit = \"snetterton\" AND fastest_lap = \"riki christodoulou\"",
"context": "CREATE TABLE table_name_10 (date VARCHAR, circuit VARCHAR, fastest_lap VARCHAR)",
"question": "What date was the circuit, snetterton, when riki christodoulou had the fastest lap?"
} |
### QUESTION
What is the latest year with reporters Lesley Visser and Robin Roberts?
### CONTEXT
CREATE TABLE table_22654139_3 (year INTEGER, reporters VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_22654139_3 WHERE reporters = "Lesley Visser and Robin Roberts"</s> | {
"answer": "SELECT MAX(year) FROM table_22654139_3 WHERE reporters = \"Lesley Visser and Robin Roberts\"",
"context": "CREATE TABLE table_22654139_3 (year INTEGER, reporters VARCHAR)",
"question": "What is the latest year with reporters Lesley Visser and Robin Roberts?"
} |
### QUESTION
who had the pole position at rockingham circuit with adam christodoulou having the fastest lap?
### CONTEXT
CREATE TABLE table_name_10 (pole_position VARCHAR, fastest_lap VARCHAR, circuit VARCHAR)
### ANSWER
SELECT pole_position FROM table_name_10 WHERE fastest_lap = "adam christodoulou" AND circuit = "rockingham"</s> | {
"answer": "SELECT pole_position FROM table_name_10 WHERE fastest_lap = \"adam christodoulou\" AND circuit = \"rockingham\"",
"context": "CREATE TABLE table_name_10 (pole_position VARCHAR, fastest_lap VARCHAR, circuit VARCHAR)",
"question": "who had the pole position at rockingham circuit with adam christodoulou having the fastest lap?"
} |
### QUESTION
Which player scored the most points and how many were scored on November 6?
### CONTEXT
CREATE TABLE table_27744844_5 (high_points VARCHAR, date VARCHAR)
### ANSWER
SELECT high_points FROM table_27744844_5 WHERE date = "November 6"</s> | {
"answer": "SELECT high_points FROM table_27744844_5 WHERE date = \"November 6\"",
"context": "CREATE TABLE table_27744844_5 (high_points VARCHAR, date VARCHAR)",
"question": "Which player scored the most points and how many were scored on November 6?"
} |
### QUESTION
What drawn has 416 as the points for and 533 as the points against?
### CONTEXT
CREATE TABLE table_name_49 (drawn VARCHAR, points_for VARCHAR, points_against VARCHAR)
### ANSWER
SELECT drawn FROM table_name_49 WHERE points_for = "416" AND points_against = "533"</s> | {
"answer": "SELECT drawn FROM table_name_49 WHERE points_for = \"416\" AND points_against = \"533\"",
"context": "CREATE TABLE table_name_49 (drawn VARCHAR, points_for VARCHAR, points_against VARCHAR)",
"question": "What drawn has 416 as the points for and 533 as the points against?"
} |
### QUESTION
Name the number of record for united center 18,838
### CONTEXT
CREATE TABLE table_22669044_8 (record VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT COUNT(record) FROM table_22669044_8 WHERE location_attendance = "United Center 18,838"</s> | {
"answer": "SELECT COUNT(record) FROM table_22669044_8 WHERE location_attendance = \"United Center 18,838\"",
"context": "CREATE TABLE table_22669044_8 (record VARCHAR, location_attendance VARCHAR)",
"question": "Name the number of record for united center 18,838"
} |
### QUESTION
If the track is the Wisconsin State Fair Park Speedway and the winning driver is Wally Dallenbach, what was the location?
### CONTEXT
CREATE TABLE table_22670216_1 (location VARCHAR, winning_driver VARCHAR, track VARCHAR)
### ANSWER
SELECT location FROM table_22670216_1 WHERE winning_driver = "Wally Dallenbach" AND track = "Wisconsin State Fair Park Speedway"</s> | {
"answer": "SELECT location FROM table_22670216_1 WHERE winning_driver = \"Wally Dallenbach\" AND track = \"Wisconsin State Fair Park Speedway\"",
"context": "CREATE TABLE table_22670216_1 (location VARCHAR, winning_driver VARCHAR, track VARCHAR)",
"question": "If the track is the Wisconsin State Fair Park Speedway and the winning driver is Wally Dallenbach, what was the location?"
} |
### QUESTION
Who did the high rebounds in the game in which Rodney Stuckey (16) did the high points?
### CONTEXT
CREATE TABLE table_27755603_2 (high_rebounds VARCHAR, high_points VARCHAR)
### ANSWER
SELECT high_rebounds FROM table_27755603_2 WHERE high_points = "Rodney Stuckey (16)"</s> | {
"answer": "SELECT high_rebounds FROM table_27755603_2 WHERE high_points = \"Rodney Stuckey (16)\"",
"context": "CREATE TABLE table_27755603_2 (high_rebounds VARCHAR, high_points VARCHAR)",
"question": "Who did the high rebounds in the game in which Rodney Stuckey (16) did the high points?"
} |
### QUESTION
If the pole position is Johnny Rutherford and the track is the Ontario Motor Speedway, what is the RND total number?
### CONTEXT
CREATE TABLE table_22670216_1 (rnd VARCHAR, track VARCHAR, pole_position VARCHAR)
### ANSWER
SELECT COUNT(rnd) FROM table_22670216_1 WHERE track = "Ontario Motor Speedway" AND pole_position = "Johnny Rutherford"</s> | {
"answer": "SELECT COUNT(rnd) FROM table_22670216_1 WHERE track = \"Ontario Motor Speedway\" AND pole_position = \"Johnny Rutherford\"",
"context": "CREATE TABLE table_22670216_1 (rnd VARCHAR, track VARCHAR, pole_position VARCHAR)",
"question": "If the pole position is Johnny Rutherford and the track is the Ontario Motor Speedway, what is the RND total number?"
} |
### QUESTION
What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)?
### CONTEXT
CREATE TABLE table_27755784_10 (team VARCHAR, high_assists VARCHAR, high_points VARCHAR)
### ANSWER
SELECT team FROM table_27755784_10 WHERE high_assists = "Stephen Curry (7)" AND high_points = "Monta Ellis (27)"</s> | {
"answer": "SELECT team FROM table_27755784_10 WHERE high_assists = \"Stephen Curry (7)\" AND high_points = \"Monta Ellis (27)\"",
"context": "CREATE TABLE table_27755784_10 (team VARCHAR, high_assists VARCHAR, high_points VARCHAR)",
"question": "What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)?"
} |
### QUESTION
Who won when V. A. Muthiah was the runner-up?
### CONTEXT
CREATE TABLE table_22756549_1 (winner VARCHAR, runner_up_a VARCHAR)
### ANSWER
SELECT winner FROM table_22756549_1 WHERE runner_up_a = "V. A. Muthiah"</s> | {
"answer": "SELECT winner FROM table_22756549_1 WHERE runner_up_a = \"V. A. Muthiah\"",
"context": "CREATE TABLE table_22756549_1 (winner VARCHAR, runner_up_a VARCHAR)",
"question": "Who won when V. A. Muthiah was the runner-up?"
} |
### QUESTION
What was the previous conference for the team with the Governors as their mascot that joined the Indiana Lake Shore conference?
### CONTEXT
CREATE TABLE table_name_88 (previous_conference VARCHAR, conference_joined VARCHAR, mascot VARCHAR)
### ANSWER
SELECT previous_conference FROM table_name_88 WHERE conference_joined = "indiana lake shore" AND mascot = "governors"</s> | {
"answer": "SELECT previous_conference FROM table_name_88 WHERE conference_joined = \"indiana lake shore\" AND mascot = \"governors\"",
"context": "CREATE TABLE table_name_88 (previous_conference VARCHAR, conference_joined VARCHAR, mascot VARCHAR)",
"question": "What was the previous conference for the team with the Governors as their mascot that joined the Indiana Lake Shore conference?"
} |
### QUESTION
What was the score of the game in which Danny Granger (30) did the high points?
### CONTEXT
CREATE TABLE table_27756164_2 (score VARCHAR, high_points VARCHAR)
### ANSWER
SELECT score FROM table_27756164_2 WHERE high_points = "Danny Granger (30)"</s> | {
"answer": "SELECT score FROM table_27756164_2 WHERE high_points = \"Danny Granger (30)\"",
"context": "CREATE TABLE table_27756164_2 (score VARCHAR, high_points VARCHAR)",
"question": "What was the score of the game in which Danny Granger (30) did the high points?"
} |
### QUESTION
Name the total number of round for against the netherlands
### CONTEXT
CREATE TABLE table_22825058_23 (round VARCHAR, against VARCHAR)
### ANSWER
SELECT COUNT(round) FROM table_22825058_23 WHERE against = "The Netherlands"</s> | {
"answer": "SELECT COUNT(round) FROM table_22825058_23 WHERE against = \"The Netherlands\"",
"context": "CREATE TABLE table_22825058_23 (round VARCHAR, against VARCHAR)",
"question": "Name the total number of round for against the netherlands"
} |
### QUESTION
How many gains have a long greater than 8, with avg/g of 124.9?
### CONTEXT
CREATE TABLE table_name_27 (gain INTEGER, long VARCHAR, avg_g VARCHAR)
### ANSWER
SELECT SUM(gain) FROM table_name_27 WHERE long > 8 AND avg_g = 124.9</s> | {
"answer": "SELECT SUM(gain) FROM table_name_27 WHERE long > 8 AND avg_g = 124.9",
"context": "CREATE TABLE table_name_27 (gain INTEGER, long VARCHAR, avg_g VARCHAR)",
"question": "How many gains have a long greater than 8, with avg/g of 124.9?"
} |
### QUESTION
Which Driver has a Grid smaller than 17, and Points larger than 0, and a Lapse of 87, and a Time/Retired of 1:48:11.023?
### CONTEXT
CREATE TABLE table_name_72 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR, points VARCHAR)
### ANSWER
SELECT driver FROM table_name_72 WHERE grid < 17 AND points > 0 AND laps = 87 AND time_retired = "1:48:11.023"</s> | {
"answer": "SELECT driver FROM table_name_72 WHERE grid < 17 AND points > 0 AND laps = 87 AND time_retired = \"1:48:11.023\"",
"context": "CREATE TABLE table_name_72 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR, points VARCHAR)",
"question": "Which Driver has a Grid smaller than 17, and Points larger than 0, and a Lapse of 87, and a Time/Retired of 1:48:11.023?"
} |
### QUESTION
Name the tournament venue for big sky conference
### CONTEXT
CREATE TABLE table_22849575_6 (tournament_venue__city_ VARCHAR, conference VARCHAR)
### ANSWER
SELECT tournament_venue__city_ FROM table_22849575_6 WHERE conference = "Big Sky conference"</s> | {
"answer": "SELECT tournament_venue__city_ FROM table_22849575_6 WHERE conference = \"Big Sky conference\"",
"context": "CREATE TABLE table_22849575_6 (tournament_venue__city_ VARCHAR, conference VARCHAR)",
"question": "Name the tournament venue for big sky conference"
} |
### QUESTION
Name the number of conference tournament for james madison
### CONTEXT
CREATE TABLE table_22849575_6 (conference VARCHAR, tournament_winner VARCHAR)
### ANSWER
SELECT COUNT(conference) AS Tournament FROM table_22849575_6 WHERE tournament_winner = "James Madison"</s> | {
"answer": "SELECT COUNT(conference) AS Tournament FROM table_22849575_6 WHERE tournament_winner = \"James Madison\"",
"context": "CREATE TABLE table_22849575_6 (conference VARCHAR, tournament_winner VARCHAR)",
"question": "Name the number of conference tournament for james madison"
} |
### QUESTION
Which Location has a Record of 5–2–1?
### CONTEXT
CREATE TABLE table_name_31 (location VARCHAR, record VARCHAR)
### ANSWER
SELECT location FROM table_name_31 WHERE record = "5–2–1"</s> | {
"answer": "SELECT location FROM table_name_31 WHERE record = \"5–2–1\"",
"context": "CREATE TABLE table_name_31 (location VARCHAR, record VARCHAR)",
"question": "Which Location has a Record of 5–2–1?"
} |
### QUESTION
How many times did the Centurions play the Rhein Fire?
### CONTEXT
CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR)
### ANSWER
SELECT COUNT(game_site) FROM table_27764201_2 WHERE opponent = "Rhein Fire"</s> | {
"answer": "SELECT COUNT(game_site) FROM table_27764201_2 WHERE opponent = \"Rhein Fire\"",
"context": "CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR)",
"question": "How many times did the Centurions play the Rhein Fire?"
} |
### QUESTION
Which Record has a Round larger than 2, and an Event of bellator 38?
### CONTEXT
CREATE TABLE table_name_62 (record VARCHAR, round VARCHAR, event VARCHAR)
### ANSWER
SELECT record FROM table_name_62 WHERE round > 2 AND event = "bellator 38"</s> | {
"answer": "SELECT record FROM table_name_62 WHERE round > 2 AND event = \"bellator 38\"",
"context": "CREATE TABLE table_name_62 (record VARCHAR, round VARCHAR, event VARCHAR)",
"question": "Which Record has a Round larger than 2, and an Event of bellator 38?"
} |
### QUESTION
What was the pick # of the player who has a hometown/school of Atlanta, GA?
### CONTEXT
CREATE TABLE table_name_62 (pick INTEGER, hometown_school VARCHAR)
### ANSWER
SELECT AVG(pick) FROM table_name_62 WHERE hometown_school = "atlanta, ga"</s> | {
"answer": "SELECT AVG(pick) FROM table_name_62 WHERE hometown_school = \"atlanta, ga\"",
"context": "CREATE TABLE table_name_62 (pick INTEGER, hometown_school VARCHAR)",
"question": "What was the pick # of the player who has a hometown/school of Atlanta, GA?"
} |
### QUESTION
What is Mañana es para siempre of impreuna pentru totdeauna from Monday to Friday?
### CONTEXT
CREATE TABLE table_name_34 (monday_to_friday VARCHAR, mañana_es_para_siempre VARCHAR)
### ANSWER
SELECT monday_to_friday FROM table_name_34 WHERE mañana_es_para_siempre = "impreuna pentru totdeauna"</s> | {
"answer": "SELECT monday_to_friday FROM table_name_34 WHERE mañana_es_para_siempre = \"impreuna pentru totdeauna\"",
"context": "CREATE TABLE table_name_34 (monday_to_friday VARCHAR, mañana_es_para_siempre VARCHAR)",
"question": "What is Mañana es para siempre of impreuna pentru totdeauna from Monday to Friday?"
} |
### QUESTION
If the chief judge is Glen E. Conrad, what is the region?
### CONTEXT
CREATE TABLE table_22901612_2 (region VARCHAR, chief_judge VARCHAR)
### ANSWER
SELECT region FROM table_22901612_2 WHERE chief_judge = "Glen E. Conrad"</s> | {
"answer": "SELECT region FROM table_22901612_2 WHERE chief_judge = \"Glen E. Conrad\"",
"context": "CREATE TABLE table_22901612_2 (region VARCHAR, chief_judge VARCHAR)",
"question": "If the chief judge is Glen E. Conrad, what is the region?"
} |
### QUESTION
Which 2008 club has the name Francesca Piccinini Category:Articles with hCards?
### CONTEXT
CREATE TABLE table_name_71 (name VARCHAR)
### ANSWER
SELECT 2008 AS _club FROM table_name_71 WHERE name = "francesca piccinini category:articles with hcards"</s> | {
"answer": "SELECT 2008 AS _club FROM table_name_71 WHERE name = \"francesca piccinini category:articles with hcards\"",
"context": "CREATE TABLE table_name_71 (name VARCHAR)",
"question": "Which 2008 club has the name Francesca Piccinini Category:Articles with hCards?"
} |
### QUESTION
How many catches did Clifford McWatt have?
### CONTEXT
CREATE TABLE table_27771406_1 (catches INTEGER, player VARCHAR)
### ANSWER
SELECT MIN(catches) FROM table_27771406_1 WHERE player = "Clifford McWatt"</s> | {
"answer": "SELECT MIN(catches) FROM table_27771406_1 WHERE player = \"Clifford McWatt\"",
"context": "CREATE TABLE table_27771406_1 (catches INTEGER, player VARCHAR)",
"question": "How many catches did Clifford McWatt have? "
} |
### QUESTION
What is the number of against when the wins were 8, and a Club of South Warrnambool, with less than 0 draws?
### CONTEXT
CREATE TABLE table_name_29 (against INTEGER, draws VARCHAR, wins VARCHAR, club VARCHAR)
### ANSWER
SELECT SUM(against) FROM table_name_29 WHERE wins = 8 AND club = "south warrnambool" AND draws < 0</s> | {
"answer": "SELECT SUM(against) FROM table_name_29 WHERE wins = 8 AND club = \"south warrnambool\" AND draws < 0",
"context": "CREATE TABLE table_name_29 (against INTEGER, draws VARCHAR, wins VARCHAR, club VARCHAR)",
"question": "What is the number of against when the wins were 8, and a Club of South Warrnambool, with less than 0 draws?"
} |
### QUESTION
Name the points for top tens being 24 and ownder david pearson
### CONTEXT
CREATE TABLE table_27786562_1 (points__margin_ VARCHAR, top_tens VARCHAR, owner VARCHAR)
### ANSWER
SELECT points__margin_ FROM table_27786562_1 WHERE top_tens = 24 AND owner = "David Pearson"</s> | {
"answer": "SELECT points__margin_ FROM table_27786562_1 WHERE top_tens = 24 AND owner = \"David Pearson\"",
"context": "CREATE TABLE table_27786562_1 (points__margin_ VARCHAR, top_tens VARCHAR, owner VARCHAR)",
"question": "Name the points for top tens being 24 and ownder david pearson"
} |
### QUESTION
How many lap two's did marco andretti do?
### CONTEXT
CREATE TABLE table_23018775_3 (lap_two VARCHAR, name VARCHAR)
### ANSWER
SELECT COUNT(lap_two) FROM table_23018775_3 WHERE name = "Marco Andretti"</s> | {
"answer": "SELECT COUNT(lap_two) FROM table_23018775_3 WHERE name = \"Marco Andretti\"",
"context": "CREATE TABLE table_23018775_3 (lap_two VARCHAR, name VARCHAR)",
"question": "How many lap two's did marco andretti do?"
} |
### QUESTION
How many teams does Lee Sorochan play for?
### CONTEXT
CREATE TABLE table_2781227_2 (college_junior_club_team VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(college_junior_club_team) FROM table_2781227_2 WHERE player = "Lee Sorochan"</s> | {
"answer": "SELECT COUNT(college_junior_club_team) FROM table_2781227_2 WHERE player = \"Lee Sorochan\"",
"context": "CREATE TABLE table_2781227_2 (college_junior_club_team VARCHAR, player VARCHAR)",
"question": "How many teams does Lee Sorochan play for?"
} |
### QUESTION
If the episode was written by Tim Balme, what was the original air date?
### CONTEXT
CREATE TABLE table_23114705_3 (original_air_date VARCHAR, written_by VARCHAR)
### ANSWER
SELECT original_air_date FROM table_23114705_3 WHERE written_by = "Tim Balme"</s> | {
"answer": "SELECT original_air_date FROM table_23114705_3 WHERE written_by = \"Tim Balme\"",
"context": "CREATE TABLE table_23114705_3 (original_air_date VARCHAR, written_by VARCHAR)",
"question": "If the episode was written by Tim Balme, what was the original air date?"
} |
### QUESTION
What are the characters from the movie Suppressed Duck?
### CONTEXT
CREATE TABLE table_name_80 (characters VARCHAR, title VARCHAR)
### ANSWER
SELECT characters FROM table_name_80 WHERE title = "suppressed duck"</s> | {
"answer": "SELECT characters FROM table_name_80 WHERE title = \"suppressed duck\"",
"context": "CREATE TABLE table_name_80 (characters VARCHAR, title VARCHAR)",
"question": "What are the characters from the movie Suppressed Duck?"
} |
### QUESTION
How many rounds did Pierre Bland have a pick larger than 148?
### CONTEXT
CREATE TABLE table_name_13 (round VARCHAR, pick VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(round) FROM table_name_13 WHERE pick > 148 AND player = "pierre bland"</s> | {
"answer": "SELECT COUNT(round) FROM table_name_13 WHERE pick > 148 AND player = \"pierre bland\"",
"context": "CREATE TABLE table_name_13 (round VARCHAR, pick VARCHAR, player VARCHAR)",
"question": "How many rounds did Pierre Bland have a pick larger than 148?"
} |
### QUESTION
Name the total number of director for vesničko má středisková
### CONTEXT
CREATE TABLE table_23141790_1 (director VARCHAR, original_title VARCHAR)
### ANSWER
SELECT COUNT(director) FROM table_23141790_1 WHERE original_title = "Vesničko má středisková"</s> | {
"answer": "SELECT COUNT(director) FROM table_23141790_1 WHERE original_title = \"Vesničko má středisková\"",
"context": "CREATE TABLE table_23141790_1 (director VARCHAR, original_title VARCHAR)",
"question": "Name the total number of director for vesničko má středisková"
} |
### QUESTION
Name the sex ratio lowest for population 4773138
### CONTEXT
CREATE TABLE table_231623_3 (sex_ratio INTEGER, population VARCHAR)
### ANSWER
SELECT MAX(sex_ratio) FROM table_231623_3 WHERE population = 4773138</s> | {
"answer": "SELECT MAX(sex_ratio) FROM table_231623_3 WHERE population = 4773138",
"context": "CREATE TABLE table_231623_3 (sex_ratio INTEGER, population VARCHAR)",
"question": "Name the sex ratio lowest for population 4773138"
} |
### QUESTION
How many pac-12 sports are shown for california polytechnic state university?
### CONTEXT
CREATE TABLE table_27816698_2 (pac_12_sports VARCHAR, institution VARCHAR)
### ANSWER
SELECT COUNT(pac_12_sports) FROM table_27816698_2 WHERE institution = "California Polytechnic State University"</s> | {
"answer": "SELECT COUNT(pac_12_sports) FROM table_27816698_2 WHERE institution = \"California Polytechnic State University\"",
"context": "CREATE TABLE table_27816698_2 (pac_12_sports VARCHAR, institution VARCHAR)",
"question": "How many pac-12 sports are shown for california polytechnic state university?"
} |
### QUESTION
What was the week ranking of the episode written by Thomas L. Moran and directed by Andrew Bernstein?
### CONTEXT
CREATE TABLE table_23177573_1 (rank__week_ VARCHAR, written_by VARCHAR, directed_by VARCHAR)
### ANSWER
SELECT rank__week_ FROM table_23177573_1 WHERE written_by = "Thomas L. Moran" AND directed_by = "Andrew Bernstein"</s> | {
"answer": "SELECT rank__week_ FROM table_23177573_1 WHERE written_by = \"Thomas L. Moran\" AND directed_by = \"Andrew Bernstein\"",
"context": "CREATE TABLE table_23177573_1 (rank__week_ VARCHAR, written_by VARCHAR, directed_by VARCHAR)",
"question": "What was the week ranking of the episode written by Thomas L. Moran and directed by Andrew Bernstein?"
} |
### QUESTION
Which institution was located in bakersfield, california?
### CONTEXT
CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR)
### ANSWER
SELECT institution FROM table_27816698_2 WHERE location = "Bakersfield, California"</s> | {
"answer": "SELECT institution FROM table_27816698_2 WHERE location = \"Bakersfield, California\"",
"context": "CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR)",
"question": "Which institution was located in bakersfield, california?"
} |
### QUESTION
When gaoliang 高涼 is the commandery what is the commandery capital?
### CONTEXT
CREATE TABLE table_278229_1 (commandery VARCHAR)
### ANSWER
SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Gaoliang 高涼"</s> | {
"answer": "SELECT commandery AS capital FROM table_278229_1 WHERE commandery = \"Gaoliang 高涼\"",
"context": "CREATE TABLE table_278229_1 (commandery VARCHAR)",
"question": "When gaoliang 高涼 is the commandery what is the commandery capital?"
} |
### QUESTION
What is the Notes of the Frequency with a call sign of CBUE-FM?
### CONTEXT
CREATE TABLE table_name_82 (notes VARCHAR, call_sign VARCHAR)
### ANSWER
SELECT notes FROM table_name_82 WHERE call_sign = "cbue-fm"</s> | {
"answer": "SELECT notes FROM table_name_82 WHERE call_sign = \"cbue-fm\"",
"context": "CREATE TABLE table_name_82 (notes VARCHAR, call_sign VARCHAR)",
"question": "What is the Notes of the Frequency with a call sign of CBUE-FM?"
} |
### QUESTION
what is the average dynamo when draw is more than 0, played is less than 15 and spartak is more than 1?
### CONTEXT
CREATE TABLE table_name_25 (dynamo INTEGER, spartak VARCHAR, draw VARCHAR, played VARCHAR)
### ANSWER
SELECT AVG(dynamo) FROM table_name_25 WHERE draw > 0 AND played < 15 AND spartak > 1</s> | {
"answer": "SELECT AVG(dynamo) FROM table_name_25 WHERE draw > 0 AND played < 15 AND spartak > 1",
"context": "CREATE TABLE table_name_25 (dynamo INTEGER, spartak VARCHAR, draw VARCHAR, played VARCHAR)",
"question": "what is the average dynamo when draw is more than 0, played is less than 15 and spartak is more than 1?"
} |
### QUESTION
Who were the winning riders of the championship in Euer Valley, CA and whose horse was Magic Sirocco?
### CONTEXT
CREATE TABLE table_27833186_1 (rider_names VARCHAR, location VARCHAR, horse_name VARCHAR)
### ANSWER
SELECT rider_names FROM table_27833186_1 WHERE location = "Euer Valley, CA" AND horse_name = "Magic Sirocco"</s> | {
"answer": "SELECT rider_names FROM table_27833186_1 WHERE location = \"Euer Valley, CA\" AND horse_name = \"Magic Sirocco\"",
"context": "CREATE TABLE table_27833186_1 (rider_names VARCHAR, location VARCHAR, horse_name VARCHAR)",
"question": "Who were the winning riders of the championship in Euer Valley, CA and whose horse was Magic Sirocco?"
} |
### QUESTION
How many people can attend games in the stadium of the team whose captain is Vasil Vasilev?
### CONTEXT
CREATE TABLE table_23214833_1 (capacity VARCHAR, team_captain VARCHAR)
### ANSWER
SELECT capacity FROM table_23214833_1 WHERE team_captain = "Vasil Vasilev"</s> | {
"answer": "SELECT capacity FROM table_23214833_1 WHERE team_captain = \"Vasil Vasilev\"",
"context": "CREATE TABLE table_23214833_1 (capacity VARCHAR, team_captain VARCHAR)",
"question": "How many people can attend games in the stadium of the team whose captain is Vasil Vasilev?"
} |
### QUESTION
What are the the approximate translations when the Morphological Category is 1st. plur. perfect?
### CONTEXT
CREATE TABLE table_2784232_1 (approximate_translation VARCHAR, morphological_category VARCHAR)
### ANSWER
SELECT approximate_translation FROM table_2784232_1 WHERE morphological_category = "1st. plur. perfect"</s> | {
"answer": "SELECT approximate_translation FROM table_2784232_1 WHERE morphological_category = \"1st. plur. perfect\"",
"context": "CREATE TABLE table_2784232_1 (approximate_translation VARCHAR, morphological_category VARCHAR)",
"question": "What are the the approximate translations when the Morphological Category is 1st. plur. perfect?"
} |
### QUESTION
what is the average rank when the day 1 is less than 71 and the country is romania?
### CONTEXT
CREATE TABLE table_name_62 (rank INTEGER, day_1 VARCHAR, country VARCHAR)
### ANSWER
SELECT AVG(rank) FROM table_name_62 WHERE day_1 < 71 AND country = "romania"</s> | {
"answer": "SELECT AVG(rank) FROM table_name_62 WHERE day_1 < 71 AND country = \"romania\"",
"context": "CREATE TABLE table_name_62 (rank INTEGER, day_1 VARCHAR, country VARCHAR)",
"question": "what is the average rank when the day 1 is less than 71 and the country is romania?"
} |
### QUESTION
what is the venue when the year is 2006, the competition is asian games and the event is 400 m?
### CONTEXT
CREATE TABLE table_name_20 (venue VARCHAR, event VARCHAR, year VARCHAR, competition VARCHAR)
### ANSWER
SELECT venue FROM table_name_20 WHERE year = 2006 AND competition = "asian games" AND event = "400 m"</s> | {
"answer": "SELECT venue FROM table_name_20 WHERE year = 2006 AND competition = \"asian games\" AND event = \"400 m\"",
"context": "CREATE TABLE table_name_20 (venue VARCHAR, event VARCHAR, year VARCHAR, competition VARCHAR)",
"question": "what is the venue when the year is 2006, the competition is asian games and the event is 400 m?"
} |
### QUESTION
What was the score against New Orleans?
### CONTEXT
CREATE TABLE table_23248967_5 (score VARCHAR, team VARCHAR)
### ANSWER
SELECT score FROM table_23248967_5 WHERE team = "New Orleans"</s> | {
"answer": "SELECT score FROM table_23248967_5 WHERE team = \"New Orleans\"",
"context": "CREATE TABLE table_23248967_5 (score VARCHAR, team VARCHAR)",
"question": "What was the score against New Orleans?"
} |
### QUESTION
what is the venue when the competition is asian games, the event is 4x400 m relay and the year is 2002?
### CONTEXT
CREATE TABLE table_name_93 (venue VARCHAR, year VARCHAR, competition VARCHAR, event VARCHAR)
### ANSWER
SELECT venue FROM table_name_93 WHERE competition = "asian games" AND event = "4x400 m relay" AND year = 2002</s> | {
"answer": "SELECT venue FROM table_name_93 WHERE competition = \"asian games\" AND event = \"4x400 m relay\" AND year = 2002",
"context": "CREATE TABLE table_name_93 (venue VARCHAR, year VARCHAR, competition VARCHAR, event VARCHAR)",
"question": "what is the venue when the competition is asian games, the event is 4x400 m relay and the year is 2002?"
} |
### QUESTION
During the voting order 11, when the commentator was pierre tchernia, who was the spokesperson?
### CONTEXT
CREATE TABLE table_name_7 (spokespersons VARCHAR, commentator VARCHAR, voting_order VARCHAR)
### ANSWER
SELECT spokespersons FROM table_name_7 WHERE commentator = "pierre tchernia" AND voting_order = 11</s> | {
"answer": "SELECT spokespersons FROM table_name_7 WHERE commentator = \"pierre tchernia\" AND voting_order = 11",
"context": "CREATE TABLE table_name_7 (spokespersons VARCHAR, commentator VARCHAR, voting_order VARCHAR)",
"question": "During the voting order 11, when the commentator was pierre tchernia, who was the spokesperson?"
} |
### QUESTION
What was the voting order when bunny carr was the commentator?
### CONTEXT
CREATE TABLE table_name_50 (voting_order INTEGER, commentator VARCHAR)
### ANSWER
SELECT SUM(voting_order) FROM table_name_50 WHERE commentator = "bunny carr"</s> | {
"answer": "SELECT SUM(voting_order) FROM table_name_50 WHERE commentator = \"bunny carr\"",
"context": "CREATE TABLE table_name_50 (voting_order INTEGER, commentator VARCHAR)",
"question": "What was the voting order when bunny carr was the commentator?"
} |
### QUESTION
Name the location attendance for l 93-105
### CONTEXT
CREATE TABLE table_27882867_4 (location_attendance VARCHAR, score VARCHAR)
### ANSWER
SELECT location_attendance FROM table_27882867_4 WHERE score = "L 93-105"</s> | {
"answer": "SELECT location_attendance FROM table_27882867_4 WHERE score = \"L 93-105\"",
"context": "CREATE TABLE table_27882867_4 (location_attendance VARCHAR, score VARCHAR)",
"question": "Name the location attendance for l 93-105"
} |
### QUESTION
For edition is 2011 europe/africa group iiib and surface where score is 6–4, 6–1 please specify all the surface
### CONTEXT
CREATE TABLE table_27877656_7 (surface VARCHAR, score VARCHAR, edition VARCHAR)
### ANSWER
SELECT surface FROM table_27877656_7 WHERE score = "6–4, 6–1" AND edition = "2011 Europe/Africa Group IIIB"</s> | {
"answer": "SELECT surface FROM table_27877656_7 WHERE score = \"6–4, 6–1\" AND edition = \"2011 Europe/Africa Group IIIB\"",
"context": "CREATE TABLE table_27877656_7 (surface VARCHAR, score VARCHAR, edition VARCHAR)",
"question": "For edition is 2011 europe/africa group iiib and surface where score is 6–4, 6–1 please specify all the surface"
} |
### QUESTION
For opponent is sandra kristjánsdóttir, outcome is winner and edition is 2009 europe/africa group iiib mention all the opponent team.
### CONTEXT
CREATE TABLE table_27877656_7 (opponent_team VARCHAR, opponent VARCHAR, edition VARCHAR, outcome VARCHAR)
### ANSWER
SELECT opponent_team FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND outcome = "Winner" AND opponent = "Sandra Kristjánsdóttir"</s> | {
"answer": "SELECT opponent_team FROM table_27877656_7 WHERE edition = \"2009 Europe/Africa Group IIIB\" AND outcome = \"Winner\" AND opponent = \"Sandra Kristjánsdóttir\"",
"context": "CREATE TABLE table_27877656_7 (opponent_team VARCHAR, opponent VARCHAR, edition VARCHAR, outcome VARCHAR)",
"question": "For opponent is sandra kristjánsdóttir, outcome is winner and edition is 2009 europe/africa group iiib mention all the opponent team."
} |
### QUESTION
Name the high rebounds for record 10-19
### CONTEXT
CREATE TABLE table_23274514_5 (high_rebounds VARCHAR, record VARCHAR)
### ANSWER
SELECT high_rebounds FROM table_23274514_5 WHERE record = "10-19"</s> | {
"answer": "SELECT high_rebounds FROM table_23274514_5 WHERE record = \"10-19\"",
"context": "CREATE TABLE table_23274514_5 (high_rebounds VARCHAR, record VARCHAR)",
"question": "Name the high rebounds for record 10-19"
} |
### QUESTION
For armenia as opponent team and edition is 2009 europe/africa group iiib mention all the opponent
### CONTEXT
CREATE TABLE table_27877656_7 (opponent VARCHAR, edition VARCHAR, opponent_team VARCHAR)
### ANSWER
SELECT opponent FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND opponent_team = "Armenia"</s> | {
"answer": "SELECT opponent FROM table_27877656_7 WHERE edition = \"2009 Europe/Africa Group IIIB\" AND opponent_team = \"Armenia\"",
"context": "CREATE TABLE table_27877656_7 (opponent VARCHAR, edition VARCHAR, opponent_team VARCHAR)",
"question": "For armenia as opponent team and edition is 2009 europe/africa group iiib mention all the opponent"
} |
### QUESTION
Name the number of location attendance for 36-29 record
### CONTEXT
CREATE TABLE table_27902171_8 (location_attendance VARCHAR, record VARCHAR)
### ANSWER
SELECT COUNT(location_attendance) FROM table_27902171_8 WHERE record = "36-29"</s> | {
"answer": "SELECT COUNT(location_attendance) FROM table_27902171_8 WHERE record = \"36-29\"",
"context": "CREATE TABLE table_27902171_8 (location_attendance VARCHAR, record VARCHAR)",
"question": "Name the number of location attendance for 36-29 record"
} |
### QUESTION
What's the airing date of Armed Reaction 陀槍師姐 with 20 episodes in the Modern Action genre having an official website?
### CONTEXT
CREATE TABLE table_name_50 (airing_date VARCHAR, english_title__chinese_title_ VARCHAR, genre VARCHAR, official_website VARCHAR, number_of_episodes VARCHAR)
### ANSWER
SELECT airing_date FROM table_name_50 WHERE official_website = "official website" AND number_of_episodes = 20 AND genre = "modern action" AND english_title__chinese_title_ = "armed reaction 陀槍師姐"</s> | {
"answer": "SELECT airing_date FROM table_name_50 WHERE official_website = \"official website\" AND number_of_episodes = 20 AND genre = \"modern action\" AND english_title__chinese_title_ = \"armed reaction 陀槍師姐\"",
"context": "CREATE TABLE table_name_50 (airing_date VARCHAR, english_title__chinese_title_ VARCHAR, genre VARCHAR, official_website VARCHAR, number_of_episodes VARCHAR)",
"question": "What's the airing date of Armed Reaction 陀槍師姐 with 20 episodes in the Modern Action genre having an official website?"
} |
### QUESTION
Name the team at the rose garden 20,565
### CONTEXT
CREATE TABLE table_23286158_8 (team VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT team FROM table_23286158_8 WHERE location_attendance = "Rose Garden 20,565"</s> | {
"answer": "SELECT team FROM table_23286158_8 WHERE location_attendance = \"Rose Garden 20,565\"",
"context": "CREATE TABLE table_23286158_8 (team VARCHAR, location_attendance VARCHAR)",
"question": "Name the team at the rose garden 20,565"
} |
### QUESTION
What's the official website of Burning Flame 烈火雄心 with 22 episodes?
### CONTEXT
CREATE TABLE table_name_33 (official_website VARCHAR, number_of_episodes VARCHAR, english_title__chinese_title_ VARCHAR)
### ANSWER
SELECT official_website FROM table_name_33 WHERE number_of_episodes > 22 AND english_title__chinese_title_ = "burning flame 烈火雄心"</s> | {
"answer": "SELECT official_website FROM table_name_33 WHERE number_of_episodes > 22 AND english_title__chinese_title_ = \"burning flame 烈火雄心\"",
"context": "CREATE TABLE table_name_33 (official_website VARCHAR, number_of_episodes VARCHAR, english_title__chinese_title_ VARCHAR)",
"question": "What's the official website of Burning Flame 烈火雄心 with 22 episodes?"
} |
### QUESTION
Name the callsign for davao mindanao region
### CONTEXT
CREATE TABLE table_27914076_1 (callsign VARCHAR, coverage VARCHAR)
### ANSWER
SELECT callsign FROM table_27914076_1 WHERE coverage = "Davao Mindanao Region"</s> | {
"answer": "SELECT callsign FROM table_27914076_1 WHERE coverage = \"Davao Mindanao Region\"",
"context": "CREATE TABLE table_27914076_1 (callsign VARCHAR, coverage VARCHAR)",
"question": "Name the callsign for davao mindanao region"
} |
### QUESTION
Name the least number for production code for 3abc21
### CONTEXT
CREATE TABLE table_23289934_1 (no_in_series INTEGER, production_code VARCHAR)
### ANSWER
SELECT MIN(no_in_series) FROM table_23289934_1 WHERE production_code = "3ABC21"</s> | {
"answer": "SELECT MIN(no_in_series) FROM table_23289934_1 WHERE production_code = \"3ABC21\"",
"context": "CREATE TABLE table_23289934_1 (no_in_series INTEGER, production_code VARCHAR)",
"question": "Name the least number for production code for 3abc21"
} |
### QUESTION
Which Body Length/mm has a Lead Pitch/mm smaller than 0.5?
### CONTEXT
CREATE TABLE table_name_9 (body_length_mm INTEGER, lead_pitch_mm INTEGER)
### ANSWER
SELECT AVG(body_length_mm) FROM table_name_9 WHERE lead_pitch_mm < 0.5</s> | {
"answer": "SELECT AVG(body_length_mm) FROM table_name_9 WHERE lead_pitch_mm < 0.5",
"context": "CREATE TABLE table_name_9 (body_length_mm INTEGER, lead_pitch_mm INTEGER)",
"question": "Which Body Length/mm has a Lead Pitch/mm smaller than 0.5?"
} |
### QUESTION
Name the number of coverage for 106.7 energy fm
### CONTEXT
CREATE TABLE table_27914076_1 (coverage VARCHAR, branding VARCHAR)
### ANSWER
SELECT COUNT(coverage) FROM table_27914076_1 WHERE branding = "106.7 Energy FM"</s> | {
"answer": "SELECT COUNT(coverage) FROM table_27914076_1 WHERE branding = \"106.7 Energy FM\"",
"context": "CREATE TABLE table_27914076_1 (coverage VARCHAR, branding VARCHAR)",
"question": "Name the number of coverage for 106.7 energy fm"
} |
### QUESTION
How many games did they have a record of 39-12-6?
### CONTEXT
CREATE TABLE table_23308178_8 (game VARCHAR, record VARCHAR)
### ANSWER
SELECT COUNT(game) FROM table_23308178_8 WHERE record = "39-12-6"</s> | {
"answer": "SELECT COUNT(game) FROM table_23308178_8 WHERE record = \"39-12-6\"",
"context": "CREATE TABLE table_23308178_8 (game VARCHAR, record VARCHAR)",
"question": "How many games did they have a record of 39-12-6?"
} |
### QUESTION
What percentage of browsers were using Firefox or other Mozilla browsers during the period in which 1.93% were using Chrome?
### CONTEXT
CREATE TABLE table_name_12 (firefox_ VARCHAR, _other_mozilla VARCHAR, chrome VARCHAR)
### ANSWER
SELECT firefox_, _other_mozilla FROM table_name_12 WHERE chrome = "1.93%"</s> | {
"answer": "SELECT firefox_, _other_mozilla FROM table_name_12 WHERE chrome = \"1.93%\"",
"context": "CREATE TABLE table_name_12 (firefox_ VARCHAR, _other_mozilla VARCHAR, chrome VARCHAR)",
"question": "What percentage of browsers were using Firefox or other Mozilla browsers during the period in which 1.93% were using Chrome?"
} |
### 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"</s> | {
"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
What was the title of the episode that aired February 9, 1979?
### CONTEXT
CREATE TABLE table_2343740_1 (title VARCHAR, original_air_date VARCHAR)
### ANSWER
SELECT title FROM table_2343740_1 WHERE original_air_date = "February 9, 1979"</s> | {
"answer": "SELECT title FROM table_2343740_1 WHERE original_air_date = \"February 9, 1979\"",
"context": "CREATE TABLE table_2343740_1 (title VARCHAR, original_air_date VARCHAR)",
"question": "What was the title of the episode that aired February 9, 1979?"
} |
### QUESTION
Who directed the episode written by Jason Yoshimura?
### CONTEXT
CREATE TABLE table_2345558_1 (director VARCHAR, writer_s_ VARCHAR)
### ANSWER
SELECT director FROM table_2345558_1 WHERE writer_s_ = "Jason Yoshimura"</s> | {
"answer": "SELECT director FROM table_2345558_1 WHERE writer_s_ = \"Jason Yoshimura\"",
"context": "CREATE TABLE table_2345558_1 (director VARCHAR, writer_s_ VARCHAR)",
"question": "Who directed the episode written by Jason Yoshimura?"
} |
### QUESTION
When roy richardson 476cc aermacchi is the rider what is the time for saturday august 9th?
### CONTEXT
CREATE TABLE table_23465864_3 (sat_29_aug VARCHAR, rider VARCHAR)
### ANSWER
SELECT sat_29_aug FROM table_23465864_3 WHERE rider = "Roy Richardson 476cc Aermacchi"</s> | {
"answer": "SELECT sat_29_aug FROM table_23465864_3 WHERE rider = \"Roy Richardson 476cc Aermacchi\"",
"context": "CREATE TABLE table_23465864_3 (sat_29_aug VARCHAR, rider VARCHAR)",
"question": "When roy richardson 476cc aermacchi is the rider what is the time for saturday august 9th?"
} |
### QUESTION
Which league cup apps has FA as the cup apps of 5?
### CONTEXT
CREATE TABLE table_name_83 (league_cup_apps VARCHAR, fa_cup_apps VARCHAR)
### ANSWER
SELECT league_cup_apps FROM table_name_83 WHERE fa_cup_apps = "5"</s> | {
"answer": "SELECT league_cup_apps FROM table_name_83 WHERE fa_cup_apps = \"5\"",
"context": "CREATE TABLE table_name_83 (league_cup_apps VARCHAR, fa_cup_apps VARCHAR)",
"question": "Which league cup apps has FA as the cup apps of 5?"
} |
### QUESTION
What Social Democratic has a Democratic and Social Centre of 10.0% 22 seats?
### CONTEXT
CREATE TABLE table_name_33 (social_democratic VARCHAR, democratic_and_social_centre VARCHAR)
### ANSWER
SELECT social_democratic FROM table_name_33 WHERE democratic_and_social_centre = "10.0% 22 seats"</s> | {
"answer": "SELECT social_democratic FROM table_name_33 WHERE democratic_and_social_centre = \"10.0% 22 seats\"",
"context": "CREATE TABLE table_name_33 (social_democratic VARCHAR, democratic_and_social_centre VARCHAR)",
"question": "What Social Democratic has a Democratic and Social Centre of 10.0% 22 seats?"
} |
### QUESTION
What Social Democratic has the Democratic and Social Centre of 4.4% 4 seats?
### CONTEXT
CREATE TABLE table_name_86 (social_democratic VARCHAR, democratic_and_social_centre VARCHAR)
### ANSWER
SELECT social_democratic FROM table_name_86 WHERE democratic_and_social_centre = "4.4% 4 seats"</s> | {
"answer": "SELECT social_democratic FROM table_name_86 WHERE democratic_and_social_centre = \"4.4% 4 seats\"",
"context": "CREATE TABLE table_name_86 (social_democratic VARCHAR, democratic_and_social_centre VARCHAR)",
"question": "What Social Democratic has the Democratic and Social Centre of 4.4% 4 seats?"
} |
### QUESTION
How many teams were at the 2007 details tournament where there a top goalscorer was not awarded?
### CONTEXT
CREATE TABLE table_name_66 (number_of_teams VARCHAR, top_goalscorer_s_ VARCHAR, year VARCHAR)
### ANSWER
SELECT number_of_teams FROM table_name_66 WHERE top_goalscorer_s_ = "not awarded" AND year = "2007 details"</s> | {
"answer": "SELECT number_of_teams FROM table_name_66 WHERE top_goalscorer_s_ = \"not awarded\" AND year = \"2007 details\"",
"context": "CREATE TABLE table_name_66 (number_of_teams VARCHAR, top_goalscorer_s_ VARCHAR, year VARCHAR)",
"question": "How many teams were at the 2007 details tournament where there a top goalscorer was not awarded?"
} |
### QUESTION
What section were they in when there were tier 2 in 1996?
### CONTEXT
CREATE TABLE table_name_30 (section VARCHAR, level VARCHAR, season VARCHAR)
### ANSWER
SELECT section FROM table_name_30 WHERE level = "tier 2" AND season = 1996</s> | {
"answer": "SELECT section FROM table_name_30 WHERE level = \"tier 2\" AND season = 1996",
"context": "CREATE TABLE table_name_30 (section VARCHAR, level VARCHAR, season VARCHAR)",
"question": "What section were they in when there were tier 2 in 1996?"
} |
### QUESTION
What was the film title that emma thompson was the actress nominated for best supporting actress?
### CONTEXT
CREATE TABLE table_name_81 (film_title_used_in_nomination VARCHAR, actor_actress VARCHAR, category VARCHAR)
### ANSWER
SELECT film_title_used_in_nomination FROM table_name_81 WHERE actor_actress = "emma thompson" AND category = "best supporting actress"</s> | {
"answer": "SELECT film_title_used_in_nomination FROM table_name_81 WHERE actor_actress = \"emma thompson\" AND category = \"best supporting actress\"",
"context": "CREATE TABLE table_name_81 (film_title_used_in_nomination VARCHAR, actor_actress VARCHAR, category VARCHAR)",
"question": "What was the film title that emma thompson was the actress nominated for best supporting actress?"
} |
### QUESTION
Name the b winning car for #88 team mitsubishi 88 mitsubishi starion
### CONTEXT
CREATE TABLE table_27965906_2 (b_winning_car VARCHAR, a_winning_car VARCHAR)
### ANSWER
SELECT b_winning_car FROM table_27965906_2 WHERE a_winning_car = "#88 Team Mitsubishi 88 Mitsubishi Starion"</s> | {
"answer": "SELECT b_winning_car FROM table_27965906_2 WHERE a_winning_car = \"#88 Team Mitsubishi 88 Mitsubishi Starion\"",
"context": "CREATE TABLE table_27965906_2 (b_winning_car VARCHAR, a_winning_car VARCHAR)",
"question": "Name the b winning car for #88 team mitsubishi 88 mitsubishi starion"
} |
### QUESTION
What category was al pacino nominated for in the film, glengarry glen ross?
### CONTEXT
CREATE TABLE table_name_51 (category VARCHAR, actor_actress VARCHAR, film_title_used_in_nomination VARCHAR)
### ANSWER
SELECT category FROM table_name_51 WHERE actor_actress = "al pacino" AND film_title_used_in_nomination = "glengarry glen ross"</s> | {
"answer": "SELECT category FROM table_name_51 WHERE actor_actress = \"al pacino\" AND film_title_used_in_nomination = \"glengarry glen ross\"",
"context": "CREATE TABLE table_name_51 (category VARCHAR, actor_actress VARCHAR, film_title_used_in_nomination VARCHAR)",
"question": "What category was al pacino nominated for in the film, glengarry glen ross?"
} |
### QUESTION
what is the earliest year when the result is won and the role/episode is fox mulder?
### CONTEXT
CREATE TABLE table_name_21 (year INTEGER, result VARCHAR, role_episode VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_name_21 WHERE result = "won" AND role_episode = "fox mulder"</s> | {
"answer": "SELECT MIN(year) FROM table_name_21 WHERE result = \"won\" AND role_episode = \"fox mulder\"",
"context": "CREATE TABLE table_name_21 (year INTEGER, result VARCHAR, role_episode VARCHAR)",
"question": "what is the earliest year when the result is won and the role/episode is fox mulder?"
} |
### QUESTION
Who is the executive director of the Lemery, Batangas extension?
### CONTEXT
CREATE TABLE table_name_84 (executive_director VARCHAR, type VARCHAR, location VARCHAR)
### ANSWER
SELECT executive_director FROM table_name_84 WHERE type = "extension" AND location = "lemery, batangas"</s> | {
"answer": "SELECT executive_director FROM table_name_84 WHERE type = \"extension\" AND location = \"lemery, batangas\"",
"context": "CREATE TABLE table_name_84 (executive_director VARCHAR, type VARCHAR, location VARCHAR)",
"question": "Who is the executive director of the Lemery, Batangas extension?"
} |
### QUESTION
What is the number of gold for the country ranked 19?
### CONTEXT
CREATE TABLE table_name_19 (gold INTEGER, rank VARCHAR)
### ANSWER
SELECT SUM(gold) FROM table_name_19 WHERE rank = "19"</s> | {
"answer": "SELECT SUM(gold) FROM table_name_19 WHERE rank = \"19\"",
"context": "CREATE TABLE table_name_19 (gold INTEGER, rank VARCHAR)",
"question": "What is the number of gold for the country ranked 19?"
} |
### QUESTION
What is the number of electorates (2009) for the Indore district, when reserved for (SC / ST /None) is none, and constituency number is 208?
### CONTEXT
CREATE TABLE table_name_21 (number_of_electorates__2009_ INTEGER, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)
### ANSWER
SELECT SUM(number_of_electorates__2009_) FROM table_name_21 WHERE district = "indore" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "208"</s> | {
"answer": "SELECT SUM(number_of_electorates__2009_) FROM table_name_21 WHERE district = \"indore\" AND reserved_for___sc___st__none_ = \"none\" AND constituency_number = \"208\"",
"context": "CREATE TABLE table_name_21 (number_of_electorates__2009_ INTEGER, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)",
"question": "What is the number of electorates (2009) for the Indore district, when reserved for (SC / ST /None) is none, and constituency number is 208?"
} |
### QUESTION
how many match points did gran parma lost
### CONTEXT
CREATE TABLE table_27987767_2 (match_points VARCHAR, losers VARCHAR)
### ANSWER
SELECT match_points FROM table_27987767_2 WHERE losers = "Gran Parma"</s> | {
"answer": "SELECT match_points FROM table_27987767_2 WHERE losers = \"Gran Parma\"",
"context": "CREATE TABLE table_27987767_2 (match_points VARCHAR, losers VARCHAR)",
"question": "how many match points did gran parma lost"
} |
### QUESTION
When brive is the proceed to quarter final how many were eliminated from competition?
### CONTEXT
CREATE TABLE table_27987767_3 (eliminated_from_competition VARCHAR, proceed_to_quarter_final VARCHAR)
### ANSWER
SELECT COUNT(eliminated_from_competition) FROM table_27987767_3 WHERE proceed_to_quarter_final = "Brive"</s> | {
"answer": "SELECT COUNT(eliminated_from_competition) FROM table_27987767_3 WHERE proceed_to_quarter_final = \"Brive\"",
"context": "CREATE TABLE table_27987767_3 (eliminated_from_competition VARCHAR, proceed_to_quarter_final VARCHAR)",
"question": "When brive is the proceed to quarter final how many were eliminated from competition? "
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.