text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
How many episodes were written by Warren Leight?
### CONTEXT
CREATE TABLE table_29154676_1 (season_no VARCHAR, written_by VARCHAR)
### ANSWER
SELECT COUNT(season_no) FROM table_29154676_1 WHERE written_by = "Warren Leight"
|
{
"answer": "SELECT COUNT(season_no) FROM table_29154676_1 WHERE written_by = \"Warren Leight\"",
"context": "CREATE TABLE table_29154676_1 (season_no VARCHAR, written_by VARCHAR)",
"question": "How many episodes were written by Warren Leight?"
}
|
### QUESTION
What is the date of enrollment of the course named "Spanish"?
### CONTEXT
CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, course_id VARCHAR); CREATE TABLE Courses (course_id VARCHAR, course_name VARCHAR)
### ANSWER
SELECT T2.date_of_enrolment FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = "Spanish"
|
{
"answer": "SELECT T2.date_of_enrolment FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = \"Spanish\"",
"context": "CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, course_id VARCHAR); CREATE TABLE Courses (course_id VARCHAR, course_name VARCHAR)",
"question": "What is the date of enrollment of the course named \"Spanish\"?"
}
|
### QUESTION
Find the names of courses taught by the tutor who has personal name "Julio".
### CONTEXT
CREATE TABLE Course_Authors_and_Tutors (author_id VARCHAR, personal_name VARCHAR); CREATE TABLE Courses (course_name VARCHAR, author_id VARCHAR)
### ANSWER
SELECT T2.course_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T1.personal_name = "Julio"
|
{
"answer": "SELECT T2.course_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T1.personal_name = \"Julio\"",
"context": "CREATE TABLE Course_Authors_and_Tutors (author_id VARCHAR, personal_name VARCHAR); CREATE TABLE Courses (course_name VARCHAR, author_id VARCHAR)",
"question": "Find the names of courses taught by the tutor who has personal name \"Julio\"."
}
|
### QUESTION
What is the result of the game that was played at Soldier Field?
### CONTEXT
CREATE TABLE table_name_90 (result VARCHAR, game_site VARCHAR)
### ANSWER
SELECT result FROM table_name_90 WHERE game_site = "soldier field"
|
{
"answer": "SELECT result FROM table_name_90 WHERE game_site = \"soldier field\"",
"context": "CREATE TABLE table_name_90 (result VARCHAR, game_site VARCHAR)",
"question": "What is the result of the game that was played at Soldier Field?"
}
|
### QUESTION
What is the home team with the ny rangers as the visitor team?
### CONTEXT
CREATE TABLE table_name_16 (home VARCHAR, visitor VARCHAR)
### ANSWER
SELECT home FROM table_name_16 WHERE visitor = "ny rangers"
|
{
"answer": "SELECT home FROM table_name_16 WHERE visitor = \"ny rangers\"",
"context": "CREATE TABLE table_name_16 (home VARCHAR, visitor VARCHAR)",
"question": "What is the home team with the ny rangers as the visitor team?"
}
|
### QUESTION
What is the date of Super G in the 2010 season?
### CONTEXT
CREATE TABLE table_name_50 (date VARCHAR, discipline VARCHAR, season VARCHAR)
### ANSWER
SELECT date FROM table_name_50 WHERE discipline = "super g" AND season = 2010
|
{
"answer": "SELECT date FROM table_name_50 WHERE discipline = \"super g\" AND season = 2010",
"context": "CREATE TABLE table_name_50 (date VARCHAR, discipline VARCHAR, season VARCHAR)",
"question": "What is the date of Super G in the 2010 season?"
}
|
### QUESTION
What is the Termination of Mission date for Marsha E. Barnes, the Ambassador Extraordinary and Plenipotentiary?
### CONTEXT
CREATE TABLE table_name_34 (termination_of_mission VARCHAR, title VARCHAR, representative VARCHAR)
### ANSWER
SELECT termination_of_mission FROM table_name_34 WHERE title = "ambassador extraordinary and plenipotentiary" AND representative = "marsha e. barnes"
|
{
"answer": "SELECT termination_of_mission FROM table_name_34 WHERE title = \"ambassador extraordinary and plenipotentiary\" AND representative = \"marsha e. barnes\"",
"context": "CREATE TABLE table_name_34 (termination_of_mission VARCHAR, title VARCHAR, representative VARCHAR)",
"question": "What is the Termination of Mission date for Marsha E. Barnes, the Ambassador Extraordinary and Plenipotentiary?"
}
|
### QUESTION
How many Extra points have Touchdowns of 1, and a Player of ross kidston, and Points smaller than 5?
### CONTEXT
CREATE TABLE table_name_92 (extra_points INTEGER, points VARCHAR, touchdowns VARCHAR, player VARCHAR)
### ANSWER
SELECT SUM(extra_points) FROM table_name_92 WHERE touchdowns = 1 AND player = "ross kidston" AND points < 5
|
{
"answer": "SELECT SUM(extra_points) FROM table_name_92 WHERE touchdowns = 1 AND player = \"ross kidston\" AND points < 5",
"context": "CREATE TABLE table_name_92 (extra_points INTEGER, points VARCHAR, touchdowns VARCHAR, player VARCHAR)",
"question": "How many Extra points have Touchdowns of 1, and a Player of ross kidston, and Points smaller than 5?"
}
|
### QUESTION
What are the statuses of the platelet counts for the conditions where the prothrombin time and partial thromboblastin time is unaffected?
### CONTEXT
CREATE TABLE table_20592988_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR)
### ANSWER
SELECT platelet_count FROM table_20592988_1 WHERE prothrombin_time = "Unaffected" AND partial_thromboplastin_time = "Unaffected"
|
{
"answer": "SELECT platelet_count FROM table_20592988_1 WHERE prothrombin_time = \"Unaffected\" AND partial_thromboplastin_time = \"Unaffected\"",
"context": "CREATE TABLE table_20592988_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR)",
"question": "What are the statuses of the platelet counts for the conditions where the prothrombin time and partial thromboblastin time is unaffected? "
}
|
### QUESTION
Who was the leader at the summit when the stage was larger than 14, the category was 1, the start was Saint-Girons, and the finish was Cauterets?
### CONTEXT
CREATE TABLE table_name_78 (leader_at_the_summit VARCHAR, finish VARCHAR, start VARCHAR, stage VARCHAR, category VARCHAR)
### ANSWER
SELECT leader_at_the_summit FROM table_name_78 WHERE stage > 14 AND category = 1 AND start = "saint-girons" AND finish = "cauterets"
|
{
"answer": "SELECT leader_at_the_summit FROM table_name_78 WHERE stage > 14 AND category = 1 AND start = \"saint-girons\" AND finish = \"cauterets\"",
"context": "CREATE TABLE table_name_78 (leader_at_the_summit VARCHAR, finish VARCHAR, start VARCHAR, stage VARCHAR, category VARCHAR)",
"question": "Who was the leader at the summit when the stage was larger than 14, the category was 1, the start was Saint-Girons, and the finish was Cauterets?"
}
|
### QUESTION
Name the home leg for uefa europa league and round of q1 with opponents of motherwell
### CONTEXT
CREATE TABLE table_name_82 (home_leg VARCHAR, opponents VARCHAR, competition VARCHAR, round VARCHAR)
### ANSWER
SELECT home_leg FROM table_name_82 WHERE competition = "uefa europa league" AND round = "q1" AND opponents = "motherwell"
|
{
"answer": "SELECT home_leg FROM table_name_82 WHERE competition = \"uefa europa league\" AND round = \"q1\" AND opponents = \"motherwell\"",
"context": "CREATE TABLE table_name_82 (home_leg VARCHAR, opponents VARCHAR, competition VARCHAR, round VARCHAR)",
"question": "Name the home leg for uefa europa league and round of q1 with opponents of motherwell"
}
|
### QUESTION
Please list the name and id of all artists that have at least 3 albums in alphabetical order.
### CONTEXT
CREATE TABLE ARTIST (Name VARCHAR, ArtistID VARCHAR); CREATE TABLE ALBUM (ArtistId VARCHAR)
### ANSWER
SELECT T2.Name, T1.ArtistId FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistID GROUP BY T1.ArtistId HAVING COUNT(*) >= 3 ORDER BY T2.Name
|
{
"answer": "SELECT T2.Name, T1.ArtistId FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistID GROUP BY T1.ArtistId HAVING COUNT(*) >= 3 ORDER BY T2.Name",
"context": "CREATE TABLE ARTIST (Name VARCHAR, ArtistID VARCHAR); CREATE TABLE ALBUM (ArtistId VARCHAR)",
"question": "Please list the name and id of all artists that have at least 3 albums in alphabetical order."
}
|
### QUESTION
What is the population density of mongmong-toto-maite?
### CONTEXT
CREATE TABLE table_2588674_1 (pop_density INTEGER, village VARCHAR)
### ANSWER
SELECT MIN(pop_density) FROM table_2588674_1 WHERE village = "Mongmong-Toto-Maite"
|
{
"answer": "SELECT MIN(pop_density) FROM table_2588674_1 WHERE village = \"Mongmong-Toto-Maite\"",
"context": "CREATE TABLE table_2588674_1 (pop_density INTEGER, village VARCHAR)",
"question": "What is the population density of mongmong-toto-maite?"
}
|
### QUESTION
Find the first names and offices of all instructors who have taught some course and the course description and the department name.
### CONTEXT
CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR); CREATE TABLE course (crs_description VARCHAR, crs_code VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR, crs_code VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VARCHAR)
### ANSWER
SELECT T2.emp_fname, T4.prof_office, T3.crs_description, T5.dept_name FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num JOIN department AS T5 ON T4.dept_code = T5.dept_code
|
{
"answer": "SELECT T2.emp_fname, T4.prof_office, T3.crs_description, T5.dept_name FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num JOIN department AS T5 ON T4.dept_code = T5.dept_code",
"context": "CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR); CREATE TABLE course (crs_description VARCHAR, crs_code VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR, crs_code VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VARCHAR)",
"question": "Find the first names and offices of all instructors who have taught some course and the course description and the department name."
}
|
### QUESTION
Which Date has Points smaller than 85 and a Game # of 74?
### CONTEXT
CREATE TABLE table_name_36 (date VARCHAR, points VARCHAR, game__number VARCHAR)
### ANSWER
SELECT date FROM table_name_36 WHERE points < 85 AND game__number = 74
|
{
"answer": "SELECT date FROM table_name_36 WHERE points < 85 AND game__number = 74",
"context": "CREATE TABLE table_name_36 (date VARCHAR, points VARCHAR, game__number VARCHAR)",
"question": "Which Date has Points smaller than 85 and a Game # of 74?"
}
|
### QUESTION
Who was the captain of the away team at Adelaide Oval?
### CONTEXT
CREATE TABLE table_name_84 (away_captain VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_captain FROM table_name_84 WHERE venue = "adelaide oval"
|
{
"answer": "SELECT away_captain FROM table_name_84 WHERE venue = \"adelaide oval\"",
"context": "CREATE TABLE table_name_84 (away_captain VARCHAR, venue VARCHAR)",
"question": "Who was the captain of the away team at Adelaide Oval?"
}
|
### QUESTION
What year was the Grand Prix with an i8 engine and a cc displacement of 1500?
### CONTEXT
CREATE TABLE table_name_25 (year VARCHAR, displacement_cc VARCHAR, type VARCHAR, engine VARCHAR)
### ANSWER
SELECT year FROM table_name_25 WHERE type = "grand prix" AND engine = "i8" AND displacement_cc = "1500"
|
{
"answer": "SELECT year FROM table_name_25 WHERE type = \"grand prix\" AND engine = \"i8\" AND displacement_cc = \"1500\"",
"context": "CREATE TABLE table_name_25 (year VARCHAR, displacement_cc VARCHAR, type VARCHAR, engine VARCHAR)",
"question": "What year was the Grand Prix with an i8 engine and a cc displacement of 1500?"
}
|
### QUESTION
How many career titles does roy emerson have?
### CONTEXT
CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, player VARCHAR)
### ANSWER
SELECT total_career_titles FROM table_23408094_14 WHERE player = "Roy Emerson"
|
{
"answer": "SELECT total_career_titles FROM table_23408094_14 WHERE player = \"Roy Emerson\"",
"context": "CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, player VARCHAR)",
"question": "How many career titles does roy emerson have?"
}
|
### QUESTION
What are the names of wrestlers and the elimination moves?
### CONTEXT
CREATE TABLE wrestler (Name VARCHAR, Wrestler_ID VARCHAR); CREATE TABLE elimination (Elimination_Move VARCHAR, Wrestler_ID VARCHAR)
### ANSWER
SELECT T2.Name, T1.Elimination_Move FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID
|
{
"answer": "SELECT T2.Name, T1.Elimination_Move FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID",
"context": "CREATE TABLE wrestler (Name VARCHAR, Wrestler_ID VARCHAR); CREATE TABLE elimination (Elimination_Move VARCHAR, Wrestler_ID VARCHAR)",
"question": "What are the names of wrestlers and the elimination moves?"
}
|
### QUESTION
What tires did BFM Enterprises run on their Offy engine and manta chassis?
### CONTEXT
CREATE TABLE table_name_15 (tires VARCHAR, team VARCHAR, engine VARCHAR, chassis VARCHAR)
### ANSWER
SELECT tires FROM table_name_15 WHERE engine = "offy" AND chassis = "manta" AND team = "bfm enterprises"
|
{
"answer": "SELECT tires FROM table_name_15 WHERE engine = \"offy\" AND chassis = \"manta\" AND team = \"bfm enterprises\"",
"context": "CREATE TABLE table_name_15 (tires VARCHAR, team VARCHAR, engine VARCHAR, chassis VARCHAR)",
"question": "What tires did BFM Enterprises run on their Offy engine and manta chassis?"
}
|
### QUESTION
What is Record, when Opponent is San Francisco Warriors?
### CONTEXT
CREATE TABLE table_name_78 (record VARCHAR, opponent VARCHAR)
### ANSWER
SELECT record FROM table_name_78 WHERE opponent = "san francisco warriors"
|
{
"answer": "SELECT record FROM table_name_78 WHERE opponent = \"san francisco warriors\"",
"context": "CREATE TABLE table_name_78 (record VARCHAR, opponent VARCHAR)",
"question": "What is Record, when Opponent is San Francisco Warriors?"
}
|
### QUESTION
What is the name of the Leftfielder when the Shortstop was bill russell, and the Second Baseman was steve sax in 1983?
### CONTEXT
CREATE TABLE table_name_25 (leftfielder VARCHAR, year VARCHAR, shortstop VARCHAR, second_baseman VARCHAR)
### ANSWER
SELECT leftfielder FROM table_name_25 WHERE shortstop = "bill russell" AND second_baseman = "steve sax" AND year = 1983
|
{
"answer": "SELECT leftfielder FROM table_name_25 WHERE shortstop = \"bill russell\" AND second_baseman = \"steve sax\" AND year = 1983",
"context": "CREATE TABLE table_name_25 (leftfielder VARCHAR, year VARCHAR, shortstop VARCHAR, second_baseman VARCHAR)",
"question": "What is the name of the Leftfielder when the Shortstop was bill russell, and the Second Baseman was steve sax in 1983?"
}
|
### QUESTION
Name the condition for partial thromboplastin time of prolonged and platelet count of unaffected with bleeding time of prolonged
### CONTEXT
CREATE TABLE table_name_41 (condition VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)
### ANSWER
SELECT condition FROM table_name_41 WHERE partial_thromboplastin_time = "prolonged" AND platelet_count = "unaffected" AND bleeding_time = "prolonged"
|
{
"answer": "SELECT condition FROM table_name_41 WHERE partial_thromboplastin_time = \"prolonged\" AND platelet_count = \"unaffected\" AND bleeding_time = \"prolonged\"",
"context": "CREATE TABLE table_name_41 (condition VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)",
"question": "Name the condition for partial thromboplastin time of prolonged and platelet count of unaffected with bleeding time of prolonged"
}
|
### QUESTION
What is the start of the Team of Andretti Green Racing with a finish higher than 3 in a year before 2007?
### CONTEXT
CREATE TABLE table_name_33 (start INTEGER, year VARCHAR, team VARCHAR, finish VARCHAR)
### ANSWER
SELECT AVG(start) FROM table_name_33 WHERE team = "andretti green racing" AND finish > 3 AND year < 2007
|
{
"answer": "SELECT AVG(start) FROM table_name_33 WHERE team = \"andretti green racing\" AND finish > 3 AND year < 2007",
"context": "CREATE TABLE table_name_33 (start INTEGER, year VARCHAR, team VARCHAR, finish VARCHAR)",
"question": "What is the start of the Team of Andretti Green Racing with a finish higher than 3 in a year before 2007?"
}
|
### QUESTION
What is the fewest amendments sponsored associated with 150 bills originally cosponsored and over 247 bills cosponsored?
### CONTEXT
CREATE TABLE table_name_52 (all_amendments_sponsored INTEGER, bills_originally_cosponsored VARCHAR, all_bills_cosponsored VARCHAR)
### ANSWER
SELECT MIN(all_amendments_sponsored) FROM table_name_52 WHERE bills_originally_cosponsored = 150 AND all_bills_cosponsored > 247
|
{
"answer": "SELECT MIN(all_amendments_sponsored) FROM table_name_52 WHERE bills_originally_cosponsored = 150 AND all_bills_cosponsored > 247",
"context": "CREATE TABLE table_name_52 (all_amendments_sponsored INTEGER, bills_originally_cosponsored VARCHAR, all_bills_cosponsored VARCHAR)",
"question": "What is the fewest amendments sponsored associated with 150 bills originally cosponsored and over 247 bills cosponsored?"
}
|
### QUESTION
What are the id and name of the stadium where the most injury accidents happened?
### CONTEXT
CREATE TABLE stadium (id VARCHAR, name VARCHAR); CREATE TABLE injury_accident (game_id VARCHAR); CREATE TABLE game (stadium_id VARCHAR, id VARCHAR)
### ANSWER
SELECT T1.id, T1.name FROM stadium AS T1 JOIN game AS T2 ON T1.id = T2.stadium_id JOIN injury_accident AS T3 ON T2.id = T3.game_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1
|
{
"answer": "SELECT T1.id, T1.name FROM stadium AS T1 JOIN game AS T2 ON T1.id = T2.stadium_id JOIN injury_accident AS T3 ON T2.id = T3.game_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1",
"context": "CREATE TABLE stadium (id VARCHAR, name VARCHAR); CREATE TABLE injury_accident (game_id VARCHAR); CREATE TABLE game (stadium_id VARCHAR, id VARCHAR)",
"question": "What are the id and name of the stadium where the most injury accidents happened?"
}
|
### QUESTION
Name the college for andrej podkonicky
### CONTEXT
CREATE TABLE table_2840500_8 (college_junior_club_team VARCHAR, player VARCHAR)
### ANSWER
SELECT college_junior_club_team FROM table_2840500_8 WHERE player = "Andrej Podkonicky"
|
{
"answer": "SELECT college_junior_club_team FROM table_2840500_8 WHERE player = \"Andrej Podkonicky\"",
"context": "CREATE TABLE table_2840500_8 (college_junior_club_team VARCHAR, player VARCHAR)",
"question": "Name the college for andrej podkonicky"
}
|
### QUESTION
In what round was the first outside linebacker picked?
### CONTEXT
CREATE TABLE table_name_72 (round INTEGER, position VARCHAR)
### ANSWER
SELECT MIN(round) FROM table_name_72 WHERE position = "outside linebacker"
|
{
"answer": "SELECT MIN(round) FROM table_name_72 WHERE position = \"outside linebacker\"",
"context": "CREATE TABLE table_name_72 (round INTEGER, position VARCHAR)",
"question": "In what round was the first outside linebacker picked?"
}
|
### QUESTION
How many outputs are there for solid state, battery operated for portable use listed in notes?
### CONTEXT
CREATE TABLE table_25276250_3 (outputs VARCHAR, notes VARCHAR)
### ANSWER
SELECT COUNT(outputs) FROM table_25276250_3 WHERE notes = "Solid state, battery operated for portable use"
|
{
"answer": "SELECT COUNT(outputs) FROM table_25276250_3 WHERE notes = \"Solid state, battery operated for portable use\"",
"context": "CREATE TABLE table_25276250_3 (outputs VARCHAR, notes VARCHAR)",
"question": "How many outputs are there for solid state, battery operated for portable use listed in notes?"
}
|
### QUESTION
What is the original air date the was written by mark st. germain and direct by jay sandrich?
### CONTEXT
CREATE TABLE table_2818164_7 (original_air_date VARCHAR, written_by VARCHAR, directed_by VARCHAR)
### ANSWER
SELECT original_air_date FROM table_2818164_7 WHERE written_by = "Mark St. Germain" AND directed_by = "Jay Sandrich"
|
{
"answer": "SELECT original_air_date FROM table_2818164_7 WHERE written_by = \"Mark St. Germain\" AND directed_by = \"Jay Sandrich\"",
"context": "CREATE TABLE table_2818164_7 (original_air_date VARCHAR, written_by VARCHAR, directed_by VARCHAR)",
"question": "What is the original air date the was written by mark st. germain and direct by jay sandrich?"
}
|
### QUESTION
Which Blagojevich (D) has a Source of zogby/wsj, and a Topinka (R) of 33.2%?
### CONTEXT
CREATE TABLE table_name_5 (blagojevich__d_ VARCHAR, source VARCHAR, topinka__r_ VARCHAR)
### ANSWER
SELECT blagojevich__d_ FROM table_name_5 WHERE source = "zogby/wsj" AND topinka__r_ = "33.2%"
|
{
"answer": "SELECT blagojevich__d_ FROM table_name_5 WHERE source = \"zogby/wsj\" AND topinka__r_ = \"33.2%\"",
"context": "CREATE TABLE table_name_5 (blagojevich__d_ VARCHAR, source VARCHAR, topinka__r_ VARCHAR)",
"question": "Which Blagojevich (D) has a Source of zogby/wsj, and a Topinka (R) of 33.2%?"
}
|
### QUESTION
Which players are from Indonesia?
### CONTEXT
CREATE TABLE country (Country_id VARCHAR, Country_name VARCHAR); CREATE TABLE match_season (Player VARCHAR, Country VARCHAR)
### ANSWER
SELECT T2.Player FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Country_name = "Indonesia"
|
{
"answer": "SELECT T2.Player FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Country_name = \"Indonesia\"",
"context": "CREATE TABLE country (Country_id VARCHAR, Country_name VARCHAR); CREATE TABLE match_season (Player VARCHAR, Country VARCHAR)",
"question": "Which players are from Indonesia?"
}
|
### 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"
|
{
"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? "
}
|
### QUESTION
how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs
### CONTEXT
CREATE TABLE table_11318462_5 (crew VARCHAR, open_1st_viii VARCHAR, u15_3rd_iv VARCHAR, u15_1st_iv VARCHAR)
### ANSWER
SELECT COUNT(crew) FROM table_11318462_5 WHERE u15_3rd_iv = "BGS" AND u15_1st_iv = "ACGS" AND open_1st_viii = "ACGS"
|
{
"answer": "SELECT COUNT(crew) FROM table_11318462_5 WHERE u15_3rd_iv = \"BGS\" AND u15_1st_iv = \"ACGS\" AND open_1st_viii = \"ACGS\"",
"context": "CREATE TABLE table_11318462_5 (crew VARCHAR, open_1st_viii VARCHAR, u15_3rd_iv VARCHAR, u15_1st_iv VARCHAR)",
"question": "how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs"
}
|
### QUESTION
What were the average partial failures when the rocket was Ariane 5?
### CONTEXT
CREATE TABLE table_name_87 (partial_failures INTEGER, rocket VARCHAR)
### ANSWER
SELECT AVG(partial_failures) FROM table_name_87 WHERE rocket = "ariane 5"
|
{
"answer": "SELECT AVG(partial_failures) FROM table_name_87 WHERE rocket = \"ariane 5\"",
"context": "CREATE TABLE table_name_87 (partial_failures INTEGER, rocket VARCHAR)",
"question": "What were the average partial failures when the rocket was Ariane 5?"
}
|
### QUESTION
Who was the artist for the album, Christmas under the reunion label with the guitar?
### CONTEXT
CREATE TABLE table_name_67 (artist VARCHAR, album VARCHAR, label VARCHAR, credit VARCHAR)
### ANSWER
SELECT artist FROM table_name_67 WHERE label = "reunion" AND credit = "guitar" AND album = "christmas"
|
{
"answer": "SELECT artist FROM table_name_67 WHERE label = \"reunion\" AND credit = \"guitar\" AND album = \"christmas\"",
"context": "CREATE TABLE table_name_67 (artist VARCHAR, album VARCHAR, label VARCHAR, credit VARCHAR)",
"question": "Who was the artist for the album, Christmas under the reunion label with the guitar?"
}
|
### QUESTION
When has Result of 2–0, and a Score of 2 – 0?
### CONTEXT
CREATE TABLE table_name_38 (date VARCHAR, result VARCHAR, score VARCHAR)
### ANSWER
SELECT date FROM table_name_38 WHERE result = "2–0" AND score = "2 – 0"
|
{
"answer": "SELECT date FROM table_name_38 WHERE result = \"2–0\" AND score = \"2 – 0\"",
"context": "CREATE TABLE table_name_38 (date VARCHAR, result VARCHAR, score VARCHAR)",
"question": "When has Result of 2–0, and a Score of 2 – 0?"
}
|
### QUESTION
What are all info of students who registered courses but not attended courses?
### CONTEXT
CREATE TABLE student_course_attendance (student_id VARCHAR); CREATE TABLE student_course_registrations (student_id VARCHAR)
### ANSWER
SELECT * FROM student_course_registrations WHERE NOT student_id IN (SELECT student_id FROM student_course_attendance)
|
{
"answer": "SELECT * FROM student_course_registrations WHERE NOT student_id IN (SELECT student_id FROM student_course_attendance)",
"context": "CREATE TABLE student_course_attendance (student_id VARCHAR); CREATE TABLE student_course_registrations (student_id VARCHAR)",
"question": "What are all info of students who registered courses but not attended courses?"
}
|
### QUESTION
Can you tell me the Barrel twist that has the Barrel lenght of 11.5 in.?
### CONTEXT
CREATE TABLE table_name_63 (barrel_twist VARCHAR, barrel_length VARCHAR)
### ANSWER
SELECT barrel_twist FROM table_name_63 WHERE barrel_length = "11.5 in."
|
{
"answer": "SELECT barrel_twist FROM table_name_63 WHERE barrel_length = \"11.5 in.\"",
"context": "CREATE TABLE table_name_63 (barrel_twist VARCHAR, barrel_length VARCHAR)",
"question": "Can you tell me the Barrel twist that has the Barrel lenght of 11.5 in.?"
}
|
### QUESTION
For the attendance of 2 january 1999 with a home team of plymouth argyle what is the tie no. ?
### CONTEXT
CREATE TABLE table_name_5 (tie_no VARCHAR, attendance VARCHAR, home_team VARCHAR)
### ANSWER
SELECT tie_no FROM table_name_5 WHERE attendance = "2 january 1999" AND home_team = "plymouth argyle"
|
{
"answer": "SELECT tie_no FROM table_name_5 WHERE attendance = \"2 january 1999\" AND home_team = \"plymouth argyle\"",
"context": "CREATE TABLE table_name_5 (tie_no VARCHAR, attendance VARCHAR, home_team VARCHAR)",
"question": "For the attendance of 2 january 1999 with a home team of plymouth argyle what is the tie no. ?"
}
|
### QUESTION
how many mens singles with mens doubles being pontus jantti lasse lindelöf
### CONTEXT
CREATE TABLE table_13857700_1 (mens_singles VARCHAR, mens_doubles VARCHAR)
### ANSWER
SELECT COUNT(mens_singles) FROM table_13857700_1 WHERE mens_doubles = "Pontus Jantti Lasse Lindelöf"
|
{
"answer": "SELECT COUNT(mens_singles) FROM table_13857700_1 WHERE mens_doubles = \"Pontus Jantti Lasse Lindelöf\"",
"context": "CREATE TABLE table_13857700_1 (mens_singles VARCHAR, mens_doubles VARCHAR)",
"question": " how many mens singles with mens doubles being pontus jantti lasse lindelöf"
}
|
### QUESTION
What is the average Episode # with a share of 9, and #35 is rank and less than 8.21 viewers?
### CONTEXT
CREATE TABLE table_name_96 (episode__number INTEGER, viewers VARCHAR, share VARCHAR, rank VARCHAR)
### ANSWER
SELECT AVG(episode__number) FROM table_name_96 WHERE share = 9 AND rank = "#35" AND viewers < 8.21
|
{
"answer": "SELECT AVG(episode__number) FROM table_name_96 WHERE share = 9 AND rank = \"#35\" AND viewers < 8.21",
"context": "CREATE TABLE table_name_96 (episode__number INTEGER, viewers VARCHAR, share VARCHAR, rank VARCHAR)",
"question": "What is the average Episode # with a share of 9, and #35 is rank and less than 8.21 viewers?"
}
|
### QUESTION
What is the description of the color for most products?
### CONTEXT
CREATE TABLE ref_colors (color_description VARCHAR, color_code VARCHAR); CREATE TABLE products (color_code VARCHAR)
### ANSWER
SELECT t2.color_description FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code GROUP BY t2.color_description ORDER BY COUNT(*) DESC LIMIT 1
|
{
"answer": "SELECT t2.color_description FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code GROUP BY t2.color_description ORDER BY COUNT(*) DESC LIMIT 1",
"context": "CREATE TABLE ref_colors (color_description VARCHAR, color_code VARCHAR); CREATE TABLE products (color_code VARCHAR)",
"question": "What is the description of the color for most products?"
}
|
### QUESTION
Who was the fight against when loss was the result at the Gladiator Challenge 87: Collision Course event?
### CONTEXT
CREATE TABLE table_name_54 (opponent VARCHAR, res VARCHAR, event VARCHAR)
### ANSWER
SELECT opponent FROM table_name_54 WHERE res = "loss" AND event = "gladiator challenge 87: collision course"
|
{
"answer": "SELECT opponent FROM table_name_54 WHERE res = \"loss\" AND event = \"gladiator challenge 87: collision course\"",
"context": "CREATE TABLE table_name_54 (opponent VARCHAR, res VARCHAR, event VARCHAR)",
"question": "Who was the fight against when loss was the result at the Gladiator Challenge 87: Collision Course event?"
}
|
### QUESTION
Find the last name of students who is either female (sex is F) and living in the city of code BAL or male (sex is M) and in age of below 20.
### CONTEXT
CREATE TABLE student (lname VARCHAR, sex VARCHAR, city_code VARCHAR, age VARCHAR)
### ANSWER
SELECT lname FROM student WHERE sex = 'F' AND city_code = 'BAL' UNION SELECT lname FROM student WHERE sex = 'M' AND age < 20
|
{
"answer": "SELECT lname FROM student WHERE sex = 'F' AND city_code = 'BAL' UNION SELECT lname FROM student WHERE sex = 'M' AND age < 20",
"context": "CREATE TABLE student (lname VARCHAR, sex VARCHAR, city_code VARCHAR, age VARCHAR)",
"question": "Find the last name of students who is either female (sex is F) and living in the city of code BAL or male (sex is M) and in age of below 20."
}
|
### QUESTION
What is the category Anuya Bhagvath was nominated for at vijay award?
### CONTEXT
CREATE TABLE table_name_39 (ceremony VARCHAR, name VARCHAR, award VARCHAR, outcome VARCHAR)
### ANSWER
SELECT ceremony FROM table_name_39 WHERE award = "vijay award" AND outcome = "nominated" AND name = "anuya bhagvath"
|
{
"answer": "SELECT ceremony FROM table_name_39 WHERE award = \"vijay award\" AND outcome = \"nominated\" AND name = \"anuya bhagvath\"",
"context": "CREATE TABLE table_name_39 (ceremony VARCHAR, name VARCHAR, award VARCHAR, outcome VARCHAR)",
"question": "What is the category Anuya Bhagvath was nominated for at vijay award?"
}
|
### QUESTION
What is the total amount of points for a position less than 7, 68 goals for, and less than 30 played?
### CONTEXT
CREATE TABLE table_name_59 (points VARCHAR, played VARCHAR, position VARCHAR, goals_for VARCHAR)
### ANSWER
SELECT COUNT(points) FROM table_name_59 WHERE position < 7 AND goals_for = 68 AND played < 30
|
{
"answer": "SELECT COUNT(points) FROM table_name_59 WHERE position < 7 AND goals_for = 68 AND played < 30",
"context": "CREATE TABLE table_name_59 (points VARCHAR, played VARCHAR, position VARCHAR, goals_for VARCHAR)",
"question": "What is the total amount of points for a position less than 7, 68 goals for, and less than 30 played?"
}
|
### QUESTION
Tell me the song with year before 2013 and music director of yuvan shankar raja and film of billa ii
### CONTEXT
CREATE TABLE table_name_23 (song VARCHAR, film VARCHAR, year VARCHAR, music_director VARCHAR)
### ANSWER
SELECT song FROM table_name_23 WHERE year < 2013 AND music_director = "yuvan shankar raja" AND film = "billa ii"
|
{
"answer": "SELECT song FROM table_name_23 WHERE year < 2013 AND music_director = \"yuvan shankar raja\" AND film = \"billa ii\"",
"context": "CREATE TABLE table_name_23 (song VARCHAR, film VARCHAR, year VARCHAR, music_director VARCHAR)",
"question": "Tell me the song with year before 2013 and music director of yuvan shankar raja and film of billa ii"
}
|
### QUESTION
What is every country with a TV network of AXN India?
### CONTEXT
CREATE TABLE table_18821196_1 (country VARCHAR, tv_network_s_ VARCHAR)
### ANSWER
SELECT country FROM table_18821196_1 WHERE tv_network_s_ = "AXN India"
|
{
"answer": "SELECT country FROM table_18821196_1 WHERE tv_network_s_ = \"AXN India\"",
"context": "CREATE TABLE table_18821196_1 (country VARCHAR, tv_network_s_ VARCHAR)",
"question": "What is every country with a TV network of AXN India?"
}
|
### QUESTION
Votes of 27,391 has which quotient?
### CONTEXT
CREATE TABLE table_name_10 (quotient VARCHAR, votes VARCHAR)
### ANSWER
SELECT quotient FROM table_name_10 WHERE votes = "27,391"
|
{
"answer": "SELECT quotient FROM table_name_10 WHERE votes = \"27,391\"",
"context": "CREATE TABLE table_name_10 (quotient VARCHAR, votes VARCHAR)",
"question": "Votes of 27,391 has which quotient?"
}
|
### QUESTION
what are the event details of the services that have the type code 'Marriage'?
### CONTEXT
CREATE TABLE EVENTS (event_details VARCHAR, Service_ID VARCHAR); CREATE TABLE Services (Service_ID VARCHAR, Service_Type_Code VARCHAR)
### ANSWER
SELECT T1.event_details FROM EVENTS AS T1 JOIN Services AS T2 ON T1.Service_ID = T2.Service_ID WHERE T2.Service_Type_Code = 'Marriage'
|
{
"answer": "SELECT T1.event_details FROM EVENTS AS T1 JOIN Services AS T2 ON T1.Service_ID = T2.Service_ID WHERE T2.Service_Type_Code = 'Marriage'",
"context": "CREATE TABLE EVENTS (event_details VARCHAR, Service_ID VARCHAR); CREATE TABLE Services (Service_ID VARCHAR, Service_Type_Code VARCHAR)",
"question": "what are the event details of the services that have the type code 'Marriage'?"
}
|
### QUESTION
What score did the home team of north melbourne get?
### CONTEXT
CREATE TABLE table_name_59 (home_team VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_59 WHERE home_team = "north melbourne"
|
{
"answer": "SELECT home_team AS score FROM table_name_59 WHERE home_team = \"north melbourne\"",
"context": "CREATE TABLE table_name_59 (home_team VARCHAR)",
"question": "What score did the home team of north melbourne get?"
}
|
### QUESTION
When Giovanni Gaetano Orsini was the elector who was the elevator?
### CONTEXT
CREATE TABLE table_name_63 (elevator VARCHAR, elector VARCHAR)
### ANSWER
SELECT elevator FROM table_name_63 WHERE elector = "giovanni gaetano orsini"
|
{
"answer": "SELECT elevator FROM table_name_63 WHERE elector = \"giovanni gaetano orsini\"",
"context": "CREATE TABLE table_name_63 (elevator VARCHAR, elector VARCHAR)",
"question": "When Giovanni Gaetano Orsini was the elector who was the elevator?"
}
|
### QUESTION
Name the genre for release-year of first charted record of 1988
### CONTEXT
CREATE TABLE table_name_98 (genre VARCHAR, release_year_of_first_charted_record VARCHAR)
### ANSWER
SELECT genre FROM table_name_98 WHERE release_year_of_first_charted_record = 1988
|
{
"answer": "SELECT genre FROM table_name_98 WHERE release_year_of_first_charted_record = 1988",
"context": "CREATE TABLE table_name_98 (genre VARCHAR, release_year_of_first_charted_record VARCHAR)",
"question": "Name the genre for release-year of first charted record of 1988"
}
|
### QUESTION
What nationality is the draft pick with w position from leninogorsk (russia-2)?
### CONTEXT
CREATE TABLE table_name_66 (nationality VARCHAR, position VARCHAR, college_junior_club_team__league_ VARCHAR)
### ANSWER
SELECT nationality FROM table_name_66 WHERE position = "w" AND college_junior_club_team__league_ = "leninogorsk (russia-2)"
|
{
"answer": "SELECT nationality FROM table_name_66 WHERE position = \"w\" AND college_junior_club_team__league_ = \"leninogorsk (russia-2)\"",
"context": "CREATE TABLE table_name_66 (nationality VARCHAR, position VARCHAR, college_junior_club_team__league_ VARCHAR)",
"question": "What nationality is the draft pick with w position from leninogorsk (russia-2)?"
}
|
### QUESTION
Name the youth classification for michael barry
### CONTEXT
CREATE TABLE table_23944514_15 (youth_classification VARCHAR, aggressive_rider VARCHAR)
### ANSWER
SELECT youth_classification FROM table_23944514_15 WHERE aggressive_rider = "Michael Barry"
|
{
"answer": "SELECT youth_classification FROM table_23944514_15 WHERE aggressive_rider = \"Michael Barry\"",
"context": "CREATE TABLE table_23944514_15 (youth_classification VARCHAR, aggressive_rider VARCHAR)",
"question": "Name the youth classification for michael barry"
}
|
### QUESTION
How many players had high points in the location/attendance FedexForum 11,498 respectively?
### CONTEXT
CREATE TABLE table_17323092_7 (high_points VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT COUNT(high_points) FROM table_17323092_7 WHERE location_attendance = "FedExForum 11,498"
|
{
"answer": "SELECT COUNT(high_points) FROM table_17323092_7 WHERE location_attendance = \"FedExForum 11,498\"",
"context": "CREATE TABLE table_17323092_7 (high_points VARCHAR, location_attendance VARCHAR)",
"question": "How many players had high points in the location/attendance FedexForum 11,498 respectively?"
}
|
### QUESTION
What is the total number of # Of Prefectural Votes, when % Of Prefectural Vote is 48.4%, and when # Of Seats Won is greater than 61?
### CONTEXT
CREATE TABLE table_name_37 (_number_of_prefectural_votes VARCHAR, _percentage_of_prefectural_vote VARCHAR, _number_of_seats_won VARCHAR)
### ANSWER
SELECT COUNT(_number_of_prefectural_votes) FROM table_name_37 WHERE _percentage_of_prefectural_vote = "48.4%" AND _number_of_seats_won > 61
|
{
"answer": "SELECT COUNT(_number_of_prefectural_votes) FROM table_name_37 WHERE _percentage_of_prefectural_vote = \"48.4%\" AND _number_of_seats_won > 61",
"context": "CREATE TABLE table_name_37 (_number_of_prefectural_votes VARCHAR, _percentage_of_prefectural_vote VARCHAR, _number_of_seats_won VARCHAR)",
"question": "What is the total number of # Of Prefectural Votes, when % Of Prefectural Vote is 48.4%, and when # Of Seats Won is greater than 61?"
}
|
### QUESTION
Where did the Bruins play Iowa State?
### CONTEXT
CREATE TABLE table_name_58 (location VARCHAR, opponent VARCHAR)
### ANSWER
SELECT location FROM table_name_58 WHERE opponent = "iowa state"
|
{
"answer": "SELECT location FROM table_name_58 WHERE opponent = \"iowa state\"",
"context": "CREATE TABLE table_name_58 (location VARCHAR, opponent VARCHAR)",
"question": "Where did the Bruins play Iowa State?"
}
|
### QUESTION
state el canal de las estrellas where mañana es para siempre is impreuna pentru totdeauna
### CONTEXT
CREATE TABLE table_18498743_1 (el_canal_de_las_estrellas VARCHAR, mañana_es_para_siempre VARCHAR)
### ANSWER
SELECT el_canal_de_las_estrellas FROM table_18498743_1 WHERE mañana_es_para_siempre = "Impreuna pentru totdeauna"
|
{
"answer": "SELECT el_canal_de_las_estrellas FROM table_18498743_1 WHERE mañana_es_para_siempre = \"Impreuna pentru totdeauna\"",
"context": "CREATE TABLE table_18498743_1 (el_canal_de_las_estrellas VARCHAR, mañana_es_para_siempre VARCHAR)",
"question": "state el canal de las estrellas where mañana es para siempre is impreuna pentru totdeauna"
}
|
### QUESTION
Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)?
### CONTEXT
CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
### ANSWER
SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = "swift current broncos (wchl)"
|
{
"answer": "SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = \"swift current broncos (wchl)\"",
"context": "CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)",
"question": "Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)?"
}
|
### QUESTION
Which Date has a Location/Attendance of verizon center 7,448?
### CONTEXT
CREATE TABLE table_name_15 (date VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT date FROM table_name_15 WHERE location_attendance = "verizon center 7,448"
|
{
"answer": "SELECT date FROM table_name_15 WHERE location_attendance = \"verizon center 7,448\"",
"context": "CREATE TABLE table_name_15 (date VARCHAR, location_attendance VARCHAR)",
"question": "Which Date has a Location/Attendance of verizon center 7,448?"
}
|
### QUESTION
What is the average FAC/LC apps with a CL G greater than 0, less than 33 PL apps, a FAC/LC G of 0, and less than 2 FA YC?
### CONTEXT
CREATE TABLE table_name_46 (fac___lc_apps INTEGER, fa_yc VARCHAR, fac___lc_g VARCHAR, cl_g VARCHAR, pl_apps VARCHAR)
### ANSWER
SELECT AVG(fac___lc_apps) FROM table_name_46 WHERE cl_g > 0 AND pl_apps < 33 AND fac___lc_g = 0 AND fa_yc < 2
|
{
"answer": "SELECT AVG(fac___lc_apps) FROM table_name_46 WHERE cl_g > 0 AND pl_apps < 33 AND fac___lc_g = 0 AND fa_yc < 2",
"context": "CREATE TABLE table_name_46 (fac___lc_apps INTEGER, fa_yc VARCHAR, fac___lc_g VARCHAR, cl_g VARCHAR, pl_apps VARCHAR)",
"question": "What is the average FAC/LC apps with a CL G greater than 0, less than 33 PL apps, a FAC/LC G of 0, and less than 2 FA YC?"
}
|
### QUESTION
Who had the fastest lap when David Coulthard had pole position and Michael Schumacher as a winning driver.
### CONTEXT
CREATE TABLE table_name_32 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)
### ANSWER
SELECT fastest_lap FROM table_name_32 WHERE pole_position = "david coulthard" AND winning_driver = "michael schumacher"
|
{
"answer": "SELECT fastest_lap FROM table_name_32 WHERE pole_position = \"david coulthard\" AND winning_driver = \"michael schumacher\"",
"context": "CREATE TABLE table_name_32 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)",
"question": "Who had the fastest lap when David Coulthard had pole position and Michael Schumacher as a winning driver."
}
|
### QUESTION
List the number of ramsan-720 hard drives?
### CONTEXT
CREATE TABLE table_27615520_1 (storage_medium VARCHAR, product_name VARCHAR)
### ANSWER
SELECT COUNT(storage_medium) FROM table_27615520_1 WHERE product_name = "RamSan-720"
|
{
"answer": "SELECT COUNT(storage_medium) FROM table_27615520_1 WHERE product_name = \"RamSan-720\"",
"context": "CREATE TABLE table_27615520_1 (storage_medium VARCHAR, product_name VARCHAR)",
"question": "List the number of ramsan-720 hard drives?"
}
|
### QUESTION
What race number had sail number AUS 98888?
### CONTEXT
CREATE TABLE table_20854943_2 (race_number VARCHAR, sail_number VARCHAR)
### ANSWER
SELECT race_number FROM table_20854943_2 WHERE sail_number = "AUS 98888"
|
{
"answer": "SELECT race_number FROM table_20854943_2 WHERE sail_number = \"AUS 98888\"",
"context": "CREATE TABLE table_20854943_2 (race_number VARCHAR, sail_number VARCHAR)",
"question": "What race number had sail number AUS 98888?"
}
|
### QUESTION
What was the little league team from Kentucky when the little league team from Indiana and Wisconsin were Brownsburg LL Brownsburg and Merrill LL Merrill?
### CONTEXT
CREATE TABLE table_18461045_1 (kentucky VARCHAR, indiana VARCHAR, wisconsin VARCHAR)
### ANSWER
SELECT kentucky FROM table_18461045_1 WHERE indiana = "Brownsburg LL Brownsburg" AND wisconsin = "Merrill LL Merrill"
|
{
"answer": "SELECT kentucky FROM table_18461045_1 WHERE indiana = \"Brownsburg LL Brownsburg\" AND wisconsin = \"Merrill LL Merrill\"",
"context": "CREATE TABLE table_18461045_1 (kentucky VARCHAR, indiana VARCHAR, wisconsin VARCHAR)",
"question": "What was the little league team from Kentucky when the little league team from Indiana and Wisconsin were Brownsburg LL Brownsburg and Merrill LL Merrill?"
}
|
### QUESTION
Name the lowest Market Value (billion $) which has Assets (billion $) larger than 276.81, and a Company of toyota, and Profits (billion $) larger than 17.21?
### CONTEXT
CREATE TABLE table_name_44 (market_value__billion_ INTEGER, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR, company VARCHAR)
### ANSWER
SELECT MIN(market_value__billion_) AS $_ FROM table_name_44 WHERE assets__billion_$_ > 276.81 AND company = "toyota" AND profits__billion_$_ > 17.21
|
{
"answer": "SELECT MIN(market_value__billion_) AS $_ FROM table_name_44 WHERE assets__billion_$_ > 276.81 AND company = \"toyota\" AND profits__billion_$_ > 17.21",
"context": "CREATE TABLE table_name_44 (market_value__billion_ INTEGER, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR, company VARCHAR)",
"question": "Name the lowest Market Value (billion $) which has Assets (billion $) larger than 276.81, and a Company of toyota, and Profits (billion $) larger than 17.21?"
}
|
### QUESTION
What is the pick number for Northwestern college?
### CONTEXT
CREATE TABLE table_10975034_2 (pick__number INTEGER, college VARCHAR)
### ANSWER
SELECT MAX(pick__number) FROM table_10975034_2 WHERE college = "Northwestern"
|
{
"answer": "SELECT MAX(pick__number) FROM table_10975034_2 WHERE college = \"Northwestern\"",
"context": "CREATE TABLE table_10975034_2 (pick__number INTEGER, college VARCHAR)",
"question": "What is the pick number for Northwestern college?"
}
|
### QUESTION
What is the sum of the poles of Team la filière, which has less than 162 points?
### CONTEXT
CREATE TABLE table_name_13 (poles INTEGER, team VARCHAR, points VARCHAR)
### ANSWER
SELECT SUM(poles) FROM table_name_13 WHERE team = "la filière" AND points < 162
|
{
"answer": "SELECT SUM(poles) FROM table_name_13 WHERE team = \"la filière\" AND points < 162",
"context": "CREATE TABLE table_name_13 (poles INTEGER, team VARCHAR, points VARCHAR)",
"question": "What is the sum of the poles of Team la filière, which has less than 162 points?"
}
|
### QUESTION
Which type of record has result/games of b.c. 16 @ edmonton 22?
### CONTEXT
CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR)
### ANSWER
SELECT type_of_record FROM table_21436373_6 WHERE result_games = "B.C. 16 @ Edmonton 22"
|
{
"answer": "SELECT type_of_record FROM table_21436373_6 WHERE result_games = \"B.C. 16 @ Edmonton 22\"",
"context": "CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR)",
"question": "Which type of record has result/games of b.c. 16 @ edmonton 22?"
}
|
### QUESTION
what is the capacity for the team šibenik?
### CONTEXT
CREATE TABLE table_name_35 (capacity INTEGER, team VARCHAR)
### ANSWER
SELECT MIN(capacity) FROM table_name_35 WHERE team = "šibenik"
|
{
"answer": "SELECT MIN(capacity) FROM table_name_35 WHERE team = \"šibenik\"",
"context": "CREATE TABLE table_name_35 (capacity INTEGER, team VARCHAR)",
"question": "what is the capacity for the team šibenik?"
}
|
### QUESTION
What is the competition on October 15, 2008?
### CONTEXT
CREATE TABLE table_name_37 (competition VARCHAR, date VARCHAR)
### ANSWER
SELECT competition FROM table_name_37 WHERE date = "october 15, 2008"
|
{
"answer": "SELECT competition FROM table_name_37 WHERE date = \"october 15, 2008\"",
"context": "CREATE TABLE table_name_37 (competition VARCHAR, date VARCHAR)",
"question": "What is the competition on October 15, 2008?"
}
|
### QUESTION
Which 1997's accompanying 1991 was a when the tournament was the australian open?
### CONTEXT
CREATE TABLE table_name_57 (tournament VARCHAR)
### ANSWER
SELECT 1997 FROM table_name_57 WHERE 1991 = "a" AND tournament = "australian open"
|
{
"answer": "SELECT 1997 FROM table_name_57 WHERE 1991 = \"a\" AND tournament = \"australian open\"",
"context": "CREATE TABLE table_name_57 (tournament VARCHAR)",
"question": "Which 1997's accompanying 1991 was a when the tournament was the australian open?"
}
|
### QUESTION
Which name has a lane smaller than 7, and a time greater than 54.32 with germany as the nationality and a rank less than 5?
### CONTEXT
CREATE TABLE table_name_8 (name VARCHAR, rank VARCHAR, nationality VARCHAR, lane VARCHAR, time VARCHAR)
### ANSWER
SELECT name FROM table_name_8 WHERE lane < 7 AND time > 54.32 AND nationality = "germany" AND rank < 5
|
{
"answer": "SELECT name FROM table_name_8 WHERE lane < 7 AND time > 54.32 AND nationality = \"germany\" AND rank < 5",
"context": "CREATE TABLE table_name_8 (name VARCHAR, rank VARCHAR, nationality VARCHAR, lane VARCHAR, time VARCHAR)",
"question": "Which name has a lane smaller than 7, and a time greater than 54.32 with germany as the nationality and a rank less than 5?"
}
|
### QUESTION
Which is the smallest Total produced with a model of FM H-15-44?
### CONTEXT
CREATE TABLE table_name_68 (total_produced INTEGER, model VARCHAR)
### ANSWER
SELECT MIN(total_produced) FROM table_name_68 WHERE model = "fm h-15-44"
|
{
"answer": "SELECT MIN(total_produced) FROM table_name_68 WHERE model = \"fm h-15-44\"",
"context": "CREATE TABLE table_name_68 (total_produced INTEGER, model VARCHAR)",
"question": "Which is the smallest Total produced with a model of FM H-15-44?"
}
|
### QUESTION
Which Pick has a Position of offensive guard, a Player of reggie mckenzie, and a Round larger than 2?
### CONTEXT
CREATE TABLE table_name_96 (pick VARCHAR, round VARCHAR, position VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(pick) FROM table_name_96 WHERE position = "offensive guard" AND player = "reggie mckenzie" AND round > 2
|
{
"answer": "SELECT COUNT(pick) FROM table_name_96 WHERE position = \"offensive guard\" AND player = \"reggie mckenzie\" AND round > 2",
"context": "CREATE TABLE table_name_96 (pick VARCHAR, round VARCHAR, position VARCHAR, player VARCHAR)",
"question": "Which Pick has a Position of offensive guard, a Player of reggie mckenzie, and a Round larger than 2?"
}
|
### QUESTION
When Margaret Ann Bayot won binibining pilipinas-international, how many winners of Miss Universe Philippines were there?
### CONTEXT
CREATE TABLE table_1825751_4 (miss_universe_philippines VARCHAR, binibining_pilipinas_international VARCHAR)
### ANSWER
SELECT COUNT(miss_universe_philippines) FROM table_1825751_4 WHERE binibining_pilipinas_international = "Margaret Ann Bayot"
|
{
"answer": "SELECT COUNT(miss_universe_philippines) FROM table_1825751_4 WHERE binibining_pilipinas_international = \"Margaret Ann Bayot\"",
"context": "CREATE TABLE table_1825751_4 (miss_universe_philippines VARCHAR, binibining_pilipinas_international VARCHAR)",
"question": "When Margaret Ann Bayot won binibining pilipinas-international, how many winners of Miss Universe Philippines were there?"
}
|
### QUESTION
What position is number 35 whose height is 6-6?
### CONTEXT
CREATE TABLE table_11734041_2 (position VARCHAR, height_in_ft VARCHAR, no_s_ VARCHAR)
### ANSWER
SELECT position FROM table_11734041_2 WHERE height_in_ft = "6-6" AND no_s_ = "35"
|
{
"answer": "SELECT position FROM table_11734041_2 WHERE height_in_ft = \"6-6\" AND no_s_ = \"35\"",
"context": "CREATE TABLE table_11734041_2 (position VARCHAR, height_in_ft VARCHAR, no_s_ VARCHAR)",
"question": "What position is number 35 whose height is 6-6?"
}
|
### QUESTION
Which report includes Bobby Unser as the Pole Position and Rick Mears as the Winning driver?
### CONTEXT
CREATE TABLE table_name_33 (report VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)
### ANSWER
SELECT report FROM table_name_33 WHERE pole_position = "bobby unser" AND winning_driver = "rick mears"
|
{
"answer": "SELECT report FROM table_name_33 WHERE pole_position = \"bobby unser\" AND winning_driver = \"rick mears\"",
"context": "CREATE TABLE table_name_33 (report VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)",
"question": "Which report includes Bobby Unser as the Pole Position and Rick Mears as the Winning driver?"
}
|
### QUESTION
Which Event resulted in a Win for Opponent, Shane Ott?
### CONTEXT
CREATE TABLE table_name_4 (event VARCHAR, res VARCHAR, opponent VARCHAR)
### ANSWER
SELECT event FROM table_name_4 WHERE res = "win" AND opponent = "shane ott"
|
{
"answer": "SELECT event FROM table_name_4 WHERE res = \"win\" AND opponent = \"shane ott\"",
"context": "CREATE TABLE table_name_4 (event VARCHAR, res VARCHAR, opponent VARCHAR)",
"question": "Which Event resulted in a Win for Opponent, Shane Ott?"
}
|
### QUESTION
What is the lowest tourism arrivals in 2011 in millions with 507 US $ per arrival in 2011 tourism receipts and less than 11,869 million of US $ in 2011 tourism receipts?
### CONTEXT
CREATE TABLE table_name_95 (tourist_arrivals__2011___millions_ INTEGER, tourism_receipts__2011___us$_per_arrival_ VARCHAR, tourism_receipts__2011___millions_of_us$_ VARCHAR)
### ANSWER
SELECT MIN(tourist_arrivals__2011___millions_) FROM table_name_95 WHERE tourism_receipts__2011___us$_per_arrival_ = 507 AND tourism_receipts__2011___millions_of_us$_ < 11 OFFSET 869
|
{
"answer": "SELECT MIN(tourist_arrivals__2011___millions_) FROM table_name_95 WHERE tourism_receipts__2011___us$_per_arrival_ = 507 AND tourism_receipts__2011___millions_of_us$_ < 11 OFFSET 869",
"context": "CREATE TABLE table_name_95 (tourist_arrivals__2011___millions_ INTEGER, tourism_receipts__2011___us$_per_arrival_ VARCHAR, tourism_receipts__2011___millions_of_us$_ VARCHAR)",
"question": "What is the lowest tourism arrivals in 2011 in millions with 507 US $ per arrival in 2011 tourism receipts and less than 11,869 million of US $ in 2011 tourism receipts?"
}
|
### QUESTION
Which 1964 has a Country of united states, and a 1969 smaller than 7.3?
### CONTEXT
CREATE TABLE table_name_85 (country VARCHAR)
### ANSWER
SELECT MIN(1964) FROM table_name_85 WHERE country = "united states" AND 1969 < 7.3
|
{
"answer": "SELECT MIN(1964) FROM table_name_85 WHERE country = \"united states\" AND 1969 < 7.3",
"context": "CREATE TABLE table_name_85 (country VARCHAR)",
"question": "Which 1964 has a Country of united states, and a 1969 smaller than 7.3?"
}
|
### QUESTION
What is the total number of positions with less than 10 points, more than 7 qualifying, ret value in Race 1, and Jonathan Grant driving?
### CONTEXT
CREATE TABLE table_name_51 (pos VARCHAR, driver VARCHAR, race_1 VARCHAR, points VARCHAR, qualifying VARCHAR)
### ANSWER
SELECT COUNT(pos) FROM table_name_51 WHERE points < 10 AND qualifying > 7 AND race_1 = "ret" AND driver = "jonathan grant"
|
{
"answer": "SELECT COUNT(pos) FROM table_name_51 WHERE points < 10 AND qualifying > 7 AND race_1 = \"ret\" AND driver = \"jonathan grant\"",
"context": "CREATE TABLE table_name_51 (pos VARCHAR, driver VARCHAR, race_1 VARCHAR, points VARCHAR, qualifying VARCHAR)",
"question": "What is the total number of positions with less than 10 points, more than 7 qualifying, ret value in Race 1, and Jonathan Grant driving?"
}
|
### QUESTION
What is the average number of points for a team that played 17 games and had more than 15 losses?
### CONTEXT
CREATE TABLE table_name_37 (points INTEGER, games VARCHAR, losses VARCHAR)
### ANSWER
SELECT AVG(points) FROM table_name_37 WHERE games = 17 AND losses > 15
|
{
"answer": "SELECT AVG(points) FROM table_name_37 WHERE games = 17 AND losses > 15",
"context": "CREATE TABLE table_name_37 (points INTEGER, games VARCHAR, losses VARCHAR)",
"question": "What is the average number of points for a team that played 17 games and had more than 15 losses?"
}
|
### QUESTION
Which candidate lost the election that 770,046 people voted in?
### CONTEXT
CREATE TABLE table_name_99 (candidate VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR)
### ANSWER
SELECT candidate FROM table_name_99 WHERE outcome_of_election = "lost" AND number_of_votes = "770,046"
|
{
"answer": "SELECT candidate FROM table_name_99 WHERE outcome_of_election = \"lost\" AND number_of_votes = \"770,046\"",
"context": "CREATE TABLE table_name_99 (candidate VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR)",
"question": "Which candidate lost the election that 770,046 people voted in?"
}
|
### QUESTION
Which Position has a Played larger than 9?
### CONTEXT
CREATE TABLE table_name_32 (position INTEGER, played INTEGER)
### ANSWER
SELECT SUM(position) FROM table_name_32 WHERE played > 9
|
{
"answer": "SELECT SUM(position) FROM table_name_32 WHERE played > 9",
"context": "CREATE TABLE table_name_32 (position INTEGER, played INTEGER)",
"question": "Which Position has a Played larger than 9?"
}
|
### QUESTION
On how many different dates was a game against Houston played?
### CONTEXT
CREATE TABLE table_19778010_5 (date VARCHAR, opponent VARCHAR)
### ANSWER
SELECT COUNT(date) FROM table_19778010_5 WHERE opponent = "Houston"
|
{
"answer": "SELECT COUNT(date) FROM table_19778010_5 WHERE opponent = \"Houston\"",
"context": "CREATE TABLE table_19778010_5 (date VARCHAR, opponent VARCHAR)",
"question": "On how many different dates was a game against Houston played?"
}
|
### QUESTION
What is Player, when To Par is "+1", when Country is "United States", and when Score is "71-70=141"?
### CONTEXT
CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, country VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_32 WHERE to_par = "+1" AND country = "united states" AND score = 71 - 70 = 141
|
{
"answer": "SELECT player FROM table_name_32 WHERE to_par = \"+1\" AND country = \"united states\" AND score = 71 - 70 = 141",
"context": "CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, country VARCHAR, score VARCHAR)",
"question": "What is Player, when To Par is \"+1\", when Country is \"United States\", and when Score is \"71-70=141\"?"
}
|
### QUESTION
What is the average amount of floors of the building that is ranked larger than 30, a year prior to 1977 and an address of 100 Van Ness Avenue?
### CONTEXT
CREATE TABLE table_name_6 (floors INTEGER, name VARCHAR, rank VARCHAR, year VARCHAR)
### ANSWER
SELECT AVG(floors) FROM table_name_6 WHERE rank > 30 AND year < 1977 AND name = "100 van ness avenue"
|
{
"answer": "SELECT AVG(floors) FROM table_name_6 WHERE rank > 30 AND year < 1977 AND name = \"100 van ness avenue\"",
"context": "CREATE TABLE table_name_6 (floors INTEGER, name VARCHAR, rank VARCHAR, year VARCHAR)",
"question": "What is the average amount of floors of the building that is ranked larger than 30, a year prior to 1977 and an address of 100 Van Ness Avenue?"
}
|
### QUESTION
What rank has a gold greater than 0, 0 as the bronze, with germany (ger) as the nation?
### CONTEXT
CREATE TABLE table_name_20 (rank VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR)
### ANSWER
SELECT rank FROM table_name_20 WHERE gold > 0 AND bronze = 0 AND nation = "germany (ger)"
|
{
"answer": "SELECT rank FROM table_name_20 WHERE gold > 0 AND bronze = 0 AND nation = \"germany (ger)\"",
"context": "CREATE TABLE table_name_20 (rank VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR)",
"question": "What rank has a gold greater than 0, 0 as the bronze, with germany (ger) as the nation?"
}
|
### QUESTION
What was the position of the player picked by the Montreal Canadiens?
### CONTEXT
CREATE TABLE table_1473672_5 (position VARCHAR, nhl_team VARCHAR)
### ANSWER
SELECT position FROM table_1473672_5 WHERE nhl_team = "Montreal Canadiens"
|
{
"answer": "SELECT position FROM table_1473672_5 WHERE nhl_team = \"Montreal Canadiens\"",
"context": "CREATE TABLE table_1473672_5 (position VARCHAR, nhl_team VARCHAR)",
"question": "What was the position of the player picked by the Montreal Canadiens?"
}
|
### QUESTION
What is the average Yards with an average of less than 4 and the long is 12 with less than 29 attempts?
### CONTEXT
CREATE TABLE table_name_53 (yards INTEGER, attempts VARCHAR, average VARCHAR, long VARCHAR)
### ANSWER
SELECT AVG(yards) FROM table_name_53 WHERE average < 4 AND long = 12 AND attempts < 29
|
{
"answer": "SELECT AVG(yards) FROM table_name_53 WHERE average < 4 AND long = 12 AND attempts < 29",
"context": "CREATE TABLE table_name_53 (yards INTEGER, attempts VARCHAR, average VARCHAR, long VARCHAR)",
"question": "What is the average Yards with an average of less than 4 and the long is 12 with less than 29 attempts?"
}
|
### QUESTION
How many Winners have Wins of 1 and a Country of fiji and a First title smaller than 2004?
### CONTEXT
CREATE TABLE table_name_2 (winners INTEGER, first_title VARCHAR, wins VARCHAR, country VARCHAR)
### ANSWER
SELECT AVG(winners) FROM table_name_2 WHERE wins = 1 AND country = "fiji" AND first_title < 2004
|
{
"answer": "SELECT AVG(winners) FROM table_name_2 WHERE wins = 1 AND country = \"fiji\" AND first_title < 2004",
"context": "CREATE TABLE table_name_2 (winners INTEGER, first_title VARCHAR, wins VARCHAR, country VARCHAR)",
"question": "How many Winners have Wins of 1 and a Country of fiji and a First title smaller than 2004?"
}
|
### QUESTION
What is the Launched which is on 3 may 2001?
### CONTEXT
CREATE TABLE table_name_31 (launched VARCHAR, date_of_commission VARCHAR)
### ANSWER
SELECT launched FROM table_name_31 WHERE date_of_commission = "3 may 2001"
|
{
"answer": "SELECT launched FROM table_name_31 WHERE date_of_commission = \"3 may 2001\"",
"context": "CREATE TABLE table_name_31 (launched VARCHAR, date_of_commission VARCHAR)",
"question": "What is the Launched which is on 3 may 2001?"
}
|
### QUESTION
What is 17th c., when Initial-Syllable Open/Semi-Open Unstressed Vowels is "o /ɵ/"?
### CONTEXT
CREATE TABLE table_name_76 (initial_syllable_open_semi_open_unstressed_vowels VARCHAR)
### ANSWER
SELECT 17 AS th_c FROM table_name_76 WHERE initial_syllable_open_semi_open_unstressed_vowels = "o /ɵ/"
|
{
"answer": "SELECT 17 AS th_c FROM table_name_76 WHERE initial_syllable_open_semi_open_unstressed_vowels = \"o /ɵ/\"",
"context": "CREATE TABLE table_name_76 (initial_syllable_open_semi_open_unstressed_vowels VARCHAR)",
"question": "What is 17th c., when Initial-Syllable Open/Semi-Open Unstressed Vowels is \"o /ɵ/\"?"
}
|
### QUESTION
What is the quarterfinal week for Austin Anderson?
### CONTEXT
CREATE TABLE table_27529608_21 (qtr_final__week_ INTEGER, name_name_of_act VARCHAR)
### ANSWER
SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE name_name_of_act = "Austin Anderson"
|
{
"answer": "SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE name_name_of_act = \"Austin Anderson\"",
"context": "CREATE TABLE table_27529608_21 (qtr_final__week_ INTEGER, name_name_of_act VARCHAR)",
"question": "What is the quarterfinal week for Austin Anderson?"
}
|
### QUESTION
What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters?
### CONTEXT
CREATE TABLE table_name_38 (stories INTEGER, height__m_ VARCHAR, location VARCHAR, year_of_completion VARCHAR)
### ANSWER
SELECT MAX(stories) FROM table_name_38 WHERE location = "recife" AND year_of_completion > 2007 AND height__m_ < 135
|
{
"answer": "SELECT MAX(stories) FROM table_name_38 WHERE location = \"recife\" AND year_of_completion > 2007 AND height__m_ < 135",
"context": "CREATE TABLE table_name_38 (stories INTEGER, height__m_ VARCHAR, location VARCHAR, year_of_completion VARCHAR)",
"question": "What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters?"
}
|
### QUESTION
Who was the opposing team at the match played at the Arden Street Oval?
### CONTEXT
CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_team FROM table_name_64 WHERE venue = "arden street oval"
|
{
"answer": "SELECT away_team FROM table_name_64 WHERE venue = \"arden street oval\"",
"context": "CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR)",
"question": "Who was the opposing team at the match played at the Arden Street Oval?"
}
|
### QUESTION
What is the highest average with less than 3 places, less than 433 total points, and a rank less than 2?
### CONTEXT
CREATE TABLE table_name_62 (average INTEGER, rank_by_average VARCHAR, place VARCHAR, total_points VARCHAR)
### ANSWER
SELECT MAX(average) FROM table_name_62 WHERE place < 3 AND total_points < 433 AND rank_by_average < 2
|
{
"answer": "SELECT MAX(average) FROM table_name_62 WHERE place < 3 AND total_points < 433 AND rank_by_average < 2",
"context": "CREATE TABLE table_name_62 (average INTEGER, rank_by_average VARCHAR, place VARCHAR, total_points VARCHAR)",
"question": "What is the highest average with less than 3 places, less than 433 total points, and a rank less than 2?"
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.